Required. The branch to compare from.
The date and time to compare from. The required format is YYYY-MM-DD HH:MM:SS
Required. The branch to compare to.
The date and time to compare to. The required format is YYYY-MM-DD HH:MM:SS
Language

News entries

Commit: 828a39da68a9169ef1d9f9ff02a1c66b1bcbe884Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Changedde

Neue --diff-Option für guix challenge

Der Befehl guix challenge, mit dem Binärdateien von unterschiedlichen Substitut-Servern oder lokale Erstellungen miteinander verglichen werden können, hat eine neue Befehlszeilenoption --diff bekommen. Bei --diff=simple (der Voreinstellung) lädt guix challenge automatisch Binärdateien herunter und listet sich unterscheidende Dateien auf; wird --diff=diffoscope angegeben, werden sie an diffoscope geschickt, was deren Vergleich erleichtert. Führen Sie info "(guix.de) Aufruf von guix challenge" aus, um nähere Informationen zu erhalten.

en

New --diff option for guix challenge

The guix challenge command, which compares binaries provided by different substitute servers as well as those built locally, has a new --diff option. With --diff=simple (the default), guix challenge automatically downloads binaries and reports the list of differing files; --diff=diffoscope instructs it to pass them to diffoscope, which simplifies the comparison process. Run info "(guix) Invoking guix challenge", for more info.

Commit: a98712785e0b042a290420fd74e5a4a5da4fc68fTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neuer Befehl guix git authenticate

Mit dem neuen Befehl guix git authenticate können Sie ein Git-Repository authentifizieren. Dazu werden alle Commit-Signaturen verifiziert und geprüft, dass jede von einer autorisierten Quelle kommt, genau wie es guix pull nun tut.

Dieser Befehl hilft in erster Linie den Entwicklern von Kanälen. Mit ihm kann vor einem Push sichergestellt werden, dass der Kanal nur Commits enthält, die mit autorisierten Schlüsseln signiert worden sind. Aber der Befehl kann auch helfen, wann immer Sie Git verwenden und ermöglichen wollen, dass Nutzer von Ihrem Repository geladenen Code authentifizieren können.

Führen Sie info "(guix) Invoking guix git authenticate" aus, um mehr Informationen zu erhalten, und lesen Sie https://guix.gnu.org/blog/2020/securing-updates/ für die Details dieser Mechanismen.

en

New guix git authenticate command

The new guix git authenticate command authenticates a Git repository by verifying commit signatures and ensuring they all come from authorized parties, exactly like guix pull now does.

This command is primarily useful to developers of channels. It allows them to ensure, before pushing, that the channel only contains commits signed with authorized keys. But this command is also useful anytime you use Git and want to allow people to authenticate code fetched from your repository.

Run info "(guix) Invoking guix git authenticate" for more info, and see https://guix.gnu.org/blog/2020/securing-updates/ for details on these mechanisms.

es

Nueva orden guix git authenticate

La nueva orden guix git authenticate comprueba la validez de un repositorio git verificando las firmas de las revisiones y comprobando que todas las firmas están autorizadas, exactamente igual que guix pull.

Esta orden es principalmente útil para desarrolladoras de canales. Permite asegurar, antes de subir nada al repositorio remoto, que el canal contiene únicamente revisiones firmadas por claves autorizadas. No obstante esta orden es útil siempre que use git y quiera que otras personas puedan verificar el código obtenido de su repositorio.

Ejecute info "(guix.es) Invocación de guix git authenticate" para obtener más información y vea detalles sobre estos mecanismos en https://guix.gnu.org/blog/2020/securing-updates/.

fr

Nouvelle commande guix git authenticate

La nouvelle commande guix git authenticate authentifie un dépôt Git en vérifiant les signatures sur les changements (commits) et en s'assurant qu'elles sont autorisées, exactement comme guix pull le fait désormais.

Cette commande est avant tout utile aux personnes développant un canal. Elle leur permet de s'assurer, avant de pousser des changements, que le canal ne contient que des changements signés par des clefs autorisées. Mais cette commande peut aussi s'avérer utile dès que tu veux utiliser Git et permettre aux autres d'authentifier le code récupéré depuis ton dépôt.

Lance info "(guix.fr) Invoking guix git authenticate" pour plus d'informations. Voir https://guix.gnu.org/blog/2020/securing-updates/ pour en savoir plus sur ces mécanismes.

Commit: f458cfbcc54ed87b1a87dd9e150ea276f17eab74Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neue Paketumwandlungsoption --without-tests

Mit der neuen Paketumwandlungsoption --without-tests wird Guix angewiesen, den Testkatalog des angegebenen Pakets zu überspringen. Im folgenden Beispiel wird guile-gcrypt mit einer Variante von automake erstellt, die wiederum ohne Durchlauf ihres (viel Zeit in Anspruch nehmenden) Testkatalogs erstellt wird:

guix build guile-gcrypt --without-tests=automake

Der hauptsächliche Nutzen liegt in der Beschleunigung von Entwicklungszyklen oder im Umgehen unzuverlässiger Testkataloge. Allerdings kann das Überspringen dazu führen, dass echte Probleme verborgen bleiben. Setzen Sie es mit Bedacht ein. Führen Sie info "(guix.de) Paketumwandlungsoptionen" aus, um mehr Informationen zu erhalten.

en

New --without-tests transformation option

The new --without-tests package transformation option instructs Guix to skip the test suite of a given package. In the example below, guile-gcrypt is built using a variant of automake itself built without running its (lengthy) test suite:

guix build guile-gcrypt --without-tests=automake

This is primarily useful as a way to speed up development cycles, or to work around flaky test suites---skipping tests can hide real issues, so use with care. Run info "(guix) Package Transformation Options" for more info.

es

Nueva opción de transformación --without-tests

La nueva opción de transformación de paquetes --without-tests indica a Guix que omita la batería de pruebas del paquete proporcionado. En el siguiente ejemplo guile-gcrypt se construye usando una variación de automake, la cual se ha construido sin ejecutar su (larga) batería de pruebas:

guix build guile-gcrypt --without-tests=automake

Esto es principalmente útil como una forma de acelerar ciclos de desarrollo o de omitir temporalmente baterías de pruebas problemáticas---omitir las pruebas puede ocultar problemas reales, por lo que debe usarse con precaución. Ejecute info "(guix.es) Opciones de transformación de paquetes" para obtener más información.

fr

Nouvelle option de transformation --without-tests

La nouvelle option de transformation de paquets --without-tests demande à Guix de sauter la suite de tests d'un paquet. Dans l'exemple ci-dessous, guile-gcrypt est construit en utilisant une variante de automake construite sans lancer sa suite de tests :

guix build guile-gcrypt --without-tests=automake

Cette option est surtout intéressante pour raccourcir le cycle de développement ou pour contourner une suite de tests qui n'est pas fiable — sauter les tests peut cacher des vrais problèmes, à utiliser avec précaution donc. Voir info "(guix.fr) Options de transformation de paquets" pour plus de détails.

Commit: e1e6491226347d9fb93ff484d78cef98848a510aTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Guix-Kochbuch jetzt als Info-Dokument verfügbar

Das neue Guix-Kochbuch wird nun von guix pull geladen und steht dann im Info-Format zur Verfügung. Darin sollen Anleitungen und detaillierte Beispiele gezeigt werden, die eine breite Spanne an Anwendungsfällen abdecken. Um darauf zuzugreifen, geben Sie dies ein:

info guix-cookbook.de

Das Kochbuch steht derzeit auf Deutsch und Englisch zur Verfügung. Sie können auch online darauf zugreifen.

Ihre Beiträge werden gerne gesehen. Bitte kontaktieren Sie die Entwickler, um Ihre Rezepte mit uns zu teilen!

en

Guix Cookbook now available as Info

The new Guix Cookbook is now fetched by guix pull and thus readily available in the Info format. It aims to provide tutorials and detailed examples covering a variety of use cases. You can access it by typing:

info guix-cookbook

The Cookbook is currently available in English and German. You can also find it on-line.

Your contributions are welcome: get in touch with the developers to share your recipes!

Commit: abd7a474615353149a44f4504f0b4b248dcc0716Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neue Paketumwandlungsoption --with-c-toolchain

Die neue Paketumwandlungsoption --with-c-toolchain bietet Entwicklern die Möglichkeit, leicht ihre Lieblingspakete mit der selbstgewählten Toolchain für C/C++ anstelle der vorgegebenen neu zu erstellen.

Zum Beispiel werden mit folgendem Befehl die Pakete fftw und fftwf sowie alle davon abhängigen Pakete bis einschließlich octave-cli mit Version 10 der GCC erstellt (vorgegeben wäre zurzeit, GCC 7.5 zu benutzen):

guix build octave-cli \
  --with-c-toolchain=fftw=gcc-toolchain@10 \
  --with-c-toolchain=fftwf=gcc-toolchain@10

Führen Sie für mehr Informationen info "(guix.de) Paketumwandlungsoptionen" aus.

en

New --with-c-toolchain package transformation option

The new --with-c-toolchain package transformation options provides an easy way for developers to rebuild their favorite packages with the C/C++ tool chain of their choice instead of the default one.

For example, the following command rebuilds the fftw and fftwf packages as well as every package that depends on them, up to and including octave-cli, using GCC version 10 (currently GCC 7.5 is used by default):

guix build octave-cli \
  --with-c-toolchain=fftw=gcc-toolchain@10 \
  --with-c-toolchain=fftwf=gcc-toolchain@10

Run info "(guix) Package Transformation Options" for more info.

es

Nueva opción de transformación --with-c-toolchain

La nueva opción de transformación de paquetes --with-c-toolchain proporciona a las desarrolladoras una manera fácil de reconstruir sus paquetes favoritos con la cadena de herramientas de compilación de C/C++ que elijan en vez de la predeterminada.

Por ejemplo, la siguiente orden reconstruye los paquetes fftw y fftwf así como todos los paquetes que dependen de ellos hasta octave-cli, usando la versión 10 de GCC (el compilador predeterminado en estos momentos es GCC 7.5):

guix build octave-cli \
  --with-c-toolchain=fftw=gcc-toolchain@10 \
  --with-c-toolchain=fftwf=gcc-toolchain@10

Ejecute info "(guix.es) Opciones de transformación de paquetes" para obtener más información.

fr

Nouvelle option de transformation --with-c-toolchain

La nouvelle option de transformation de paquets --with-c-toolchain permet aux développeur·euses de recompiler leurs paquets préférés avec la chaîne d'outils C/C++ de leur choix à la place de celle par défaut.

Par exemple, la commande ci-dessous recompile fftw, fftwf et tous les paquets qui en dépendent, jusqu'à octave-cli inclus, avec GCC 10 (actuellement c'est GCC 7.5 qui est utilisé par défaut):

guix build octave-cli \
  --with-c-toolchain=fftw=gcc-toolchain@10 \
  --with-c-toolchain=fftwf=gcc-toolchain@10

Voir info "(guix.fr) Options de transformation de paquets" pour plus de détails.

Commit: a9a2fdaabcc78e7a54d9a6bcfa4ee3de308e9a90Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Logical Volume Manager (LVM) wird jetzt auf Guix System unterstützt

Auf Guix System erlaubt Ihnen die neue Variable lvm-device-mapping, „zugeordnete Geräte“ (Mapped Devices) für LVM, den Linux Logical Volume Manager, zu deklarieren. Zum Beispiel können logische Datenträger von LVM namens „alpha“ und „beta“ aus der Datenträgergruppe (Volume Group) „vg0“ wie folgt deklariert werden:

(mapped-device
  (source "vg0")
  (target (list "vg0-alpha" "vg0-beta"))
  (type lvm-device-mapping))

Siehe info "(guix.de) Zugeordnete Geräte" für nähere Informationen.

en

Logical Volume Manager (LVM) now supported on Guix System

On Guix System, the new lvm-device-mapping variable allows you to declare ``mapped devices'' for LVM, the Linux Logical Volume Manager. For example, LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:

(mapped-device
  (source "vg0")
  (target (list "vg0-alpha" "vg0-beta"))
  (type lvm-device-mapping))

See info "(guix) Mapped Devices" for more information.

es

El sistema Guix ahora implementa también volúmenes lógicos LVM

En el sistema Guix, la nueva variable lvm-device-mapping le permite declarar «dispositivos traducidos» para LVM, el gestor de volúmenes lógicos de Linux. A continuación se muestra un ejemplo con la declaración de los volúmenes lógicos «alfa» y «beta» del grupo de volúmenes «vg0»:

(mapped-device
  (source "vg0")
  (target (list "vg0-alfa" "vg0-beta"))
  (type lvm-device-mapping))

Véase info "(guix.es) Dispositivos traducidos" para obtener más información.

Commit: a33eac038a811603c8b9ed106ae405a5f80a0e9dTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

GNU-C-Bibliothek aktualisiert

Die GNU-C-Bibliothek (glibc) wurde auf Version 2.31 aktualisiert. Um zuvor installierte Programme, die an glibc 2.29 gebunden worden sind, weiter benutzen zu können, müssen Sie Locale-Daten für Version 2.29 zusätzlich zu den Locale-Daten für 2.31 installieren:

guix install glibc-locales glibc-locales-2.29

Auf Guix System genügt es, das locale-libcs-Feld Ihrer operating-system-Form anzupassen. Führen Sie info "(guix.de) Locales" aus, um weitere Informationen dazu zu erhalten.

en

GNU C Library upgraded

The GNU C Library (glibc) has been upgraded to version 2.31. To run previously-installed programs linked against glibc 2.29, you need to install locale data for version 2.29 in addition to locale data for 2.31:

guix install glibc-locales glibc-locales-2.29

On Guix System, you can adjust the locale-libcs field of your operating-system form. Run info "(guix) Locales", for more info.

es

Actualización de la biblioteca C de GNU

Se ha actualizado la biblioteca de C de GNU (glibc) a la versión 2.31. Para ejecutar programas instalados previamente que se encuentren enlazados con glibc 2.29, es necesario que instale los datos de localización de la versión 2.29 junto a los datos de localización de la versión 2.31:

guix install glibc-locales glibc-locales-2.29

En el sistema Guix, puede ajustar el campo locale-libcs de su declaración operating-system. Ejecute info "(guix.es) Localizaciones" para obtener más información.

fr

Mise à jour de la bibliothèque C de GNU

La bibliothèque C de GNU (glibc) a été mise à jour en version 2.31. Pour pouvoir lancer tes programmes déjà installés et liés à glibc 2.29, tu dois installer les données pour la version 2.29 en plus des données de régionalisation pour la version 2.31:

guix install glibc-locales glibc-locales-2.29

Sur le système Guix, tu peux ajuster le champ locale-libcs de ta forme operating-system. Lance info "(guix.fr) Régionalisation" pour plus de détails.

nl

GNU C-bibliotheek bijgewerkt

De GNU C-bibliotheek (glibc) werd bijgewerkt naar versie 2.31. Om gebruik te maken van reeds geïnstalleerde programma's die aan glibc 2.29 gebonden zijn, moet u de regionale informatie van versie 2.29 naast die van versie 2.31 installeren:

guix install glibc-locales glibc-locales-2.29

Op Guix System kunt u het locale-libcs-veld van uw operating-system-vorm aanpassen. Voer info "(guix) Locales" uit voor verdere uitleg.

Commit: 6456232164890dbf5aa20394ee24637feb4b7b9eTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

guix pack -RR führt neuen Ausführungstreiber ein

Mit dem Befehl guix pack -RR können Sie einen Tarball mit verschieblichen Binärdateien erzeugen (englisch „Relocatable Binaries“). Bisher wurden diese entweder in „unprivilegierten Benutzernamensräumen“ ohne Berechtigungen ausgeführt, oder in PRoot, wenn keine unprivilegierten Benutzernamensräume unterstützt wurden. Allerdings fällt bei der Ausführung mit PRoot bei manchen Anwendungen deutlich mehr Rechenaufwand an.

Um dem entgegenzuwirken, stellt guix pack -RR nun eine dritte Option zur Verfügung, die sich eine Erweiterung des GNU-Laufzeit-Binders („Run-Time Linker“, ld.so) und Fakechroot zu Nutze macht. Dadurch entsteht fast kein Mehraufwand. Sie können sich die schnellste Option aussuchen, wenn Sie eine verschiebliche Binärdatei ausführen, zum Beispiel so:

GUIX_EXECUTION_ENGINE=performance
export GUIX_EXECUTION_ENGINE

Führen Sie info "(guix.de) Aufruf von guix pack" aus, wenn Sie mehr wissen wollen.

en

guix pack -RR introduces a new execution engine

The guix pack -RR command allows you to create a tarball containing relocatable binaries. Until now, those would rely either on Linux ``unprivileged user namespaces'' or on PRoot, when unprivileged user namespaces are not supported. However, PRoot introduces significant overhead for some workloads.

To address that, guix pack -RR introduces a third option based on an extension to the GNU run-time linker (ld.so) and on Fakechroot, which incurs very little overhead. You can select the fastest option when executing a relocatable binary like this:

GUIX_EXECUTION_ENGINE=performance
export GUIX_EXECUTION_ENGINE

Run info "(guix) Invoking guix pack" for more information.

es

guix pack -RR introduce un nuevo motor de ejecución

La orden guix pack -RR le permite crear un archivador tar que contiene binarios reposicionables. Hasta ahora dichos binarios dependían o bien de los ``espacios de nombres de usuarias sin privilegios'' de Linux o en PRoot, cuando estos no estaban implementados. No obstante, PRoot introduce una sobrecarga significativa en algunos escenarios de trabajo.

Para estos casos guix pack -RR introduce una tercera opción basada en una extensión al enlazador de tiempo de ejecución de GNU (ld.so) y en Fakechroot, lo que conlleva muy poca sobrecarga. Puede seleccionar la opción más rápida cuando ejecute un binario reposicionable de esta manera:

GUIX_EXECUTION_ENGINE=performance
export GUIX_EXECUTION_ENGINE

Ejecute info "(guix.es) Invocación de guix pack" para obtener más información.

Commit: 8819551c8d2a12cd4e84e09b51e434d05a012c9dTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Paketumwandlungen betreffen jetzt auch implizite Eingaben

Paketumwandlungsoptionen wie --with-branch, --with-input und so weiter betreffen nun auch implizite Eingaben — zuvor haben sie sich nur auf die expliziten Eingaben eines Pakets ausgewirkt. Dadurch kann jetzt zum Beispiel die Python-Abhängigkeit eines Pakets, welches python-build-system benutzt, ersetzt werden:

guix install --with-input=python=python2 python-itsdangerous

Ein weiteres Beispiel ist, mit einer anderen Version der GNU-C-Bibliothek zu veredeln (glibc ist eine implizite Eingabe fast aller Pakete und steckt „ganz tief“ im Abhängigkeitsgraphen):

guix build --with-graft=glibc=glibc@2.31 hello

Führen Sie für mehr Informationen info "(guix.de) Paketumwandlungsoptionen" aus.

en

Package transformations now apply to implicit inputs

Package transformation options such as --with-branch, --with-input, and so on now apply to implicit inputs---previously only a package's explicit inputs would be affected. This allows for things such as replacing the Python dependency of a package that uses python-build-system:

guix install --with-input=python=python2 python-itsdangerous

Another example is grafting a different version of the GNU C Library (glibc is an implicit input of almost all the packages and is ``deep down'' in the dependency graph):

guix build --with-graft=glibc=glibc@2.31 hello

Run info "(guix) Package Transformation Options" for more info.

es

Las transformaciones de paquetes ahora afectan también a las dependencias implícitas

Las opciones de transformación de paquetes como --with-branch, --with-input, etcétera, ahora también influyen en las entradas implícitas---antes únicamente las entradas explícitas del paquete se veían afectadas. Esto permite, por ejemplo, sustituir la dependencia en python de un paquete que use python-build-system:

guix install --with-input=python=python2 python-itsdangerous

Otro ejemplo podría ser el injerto de una versión diferente de la biblioteca de C de GNU (glibc es una entrada implícita de casi todos los paquetes y ``muy abajo'' en el grafo de dependencias):

guix build --with-graft=glibc=glibc@2.31 hello

Ejecute info "(guix.es) Opciones de transformación de paquetes" para obtener más información.

fr

Les transformations de paquets s'appliquent aux dépendances implicites

Les options de transformation de paquets telles que --with-branch et --with-input s'appliquent désormais aux dépendances implicites — jusque là seules les dépendances explicites des paquets étaient prises en compte. Cela permet certaines choses telles que remplacer la dépendance sur Python d'un paquet utilisant python-build-system:

guix install --with-input=python=python2 python-itsdangerous

Un autre exemple est la possibilité de greffer une version différente de la bibliothèque C GNU (la glibc est une dépendance implicite de tous les paquets et se trouve « tout en bas » du graphe de dépendance) :

guix build --with-graft=glibc=glibc@2.31 hello

Voir info "(guix.fr) Options de transformation de paquets" pour plus de détails.

Commit: 8e1907a72430aa989125b053573ef0897c480697Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Paketumwandlungsoptionen werden nun in Profilen gesichert

Wenn Sie ein Paket in ein Profil installieren, werden nun Paketumwandlungsoptionen wie --with-input im Profil gespeichert. Sobald Sie später guix upgrade ausführen, werden dieselben Umwandlungen automatisch auf die aktualisierten Pakete angewandt.

Führen Sie für mehr Informationen info "(guix.de) Paketumwandlungsoptionen" aus.

en

Package transformation options now recorded in profiles

When installing packages in a profile, package transformation options such as --with-input are now recorded in the profile. When you eventually run guix upgrade, those transformations will be automatically applied to the upgraded packages.

Run info "(guix) Package Transformation Options" for more info.

es

Las opciones de transformación de paquetes ahora se quedan registradas en el perfil

Si durante la instalación de paquetes en un perfil se utilizaron opciones de transformación de paquetes, como por ejemplo --with-input, éstas se registran en el perfil. Cuando vuelva a ejecutar guix upgrade, dichas transformaciones se aplicarán automáticamente a los paquetes actualizados.

Ejecute info "(guix.es) Opciones de transformación de paquetes" para obtener más información.

fr

Options de transformation sauvegardées dans les profils

Lorsqu'on installe des paquets dans un profil, les options de transformation telles que --with-input sont désormais enregistrées dans le profil. Quand on le met plus tard à jour avec guix upgrade, ces transformations sont automatiquement appliquées aux nouveaux paquets.

Voir info "(guix.fr) Options de transformation de paquets" pour plus de détails.

Commit: e38d90d497e19e00263fa28961c688a433154386Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neue Paketumwandlungsoption --with-patch

Die neue Paketumwandlungsoption --with-patch wendet Patches auf die angegebenen Pakete an, bevor sie erstellt werden. Das folgende Beispiel lässt die GNU Core Utilities mit einer gepatchten C-Bibliothek (glibc) erstellen:

guix build coreutils --with-patch=glibc=./glibc-frob.patch

Führen Sie für mehr Informationen info "(guix.de) Paketumwandlungsoptionen" aus.

en

New --with-patch package transformation option

The new --with-patch package transformation option applies patches to the specified packages before building them. The example below builds the GNU Core Utilities against a patched C library (glibc):

guix build coreutils --with-patch=glibc=./glibc-frob.patch

Run info "(guix) Package Transformation Options" for more info.

fr

Nouvelle option de transformation --with-patch

La nouvelle option de transformation de paquets --with-patch applique des modifications (patches) aux paquets spécifiés avant de les compiler. L'exemple suivant compile les utilitaires de base GNU avec une bibliothèque C (glibc) modifiée :

guix build coreutils --with-patch=glibc=./glibc-frob.patch

Voir info "(guix.fr) Options de transformation de paquets" pour plus de détails.

Commit: 6aeda81602555fbeac0c0a209e74f5262093b513Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neue Paketumwandlungsoption --with-debug-info

Die neue Paketumwandlungsoption --with-debug-info lässt eine Variante eines Pakets erstellen, die auch Informationen zur Fehlersuche enthält. Damit wird die Anwendung veredelt, wo Sie Fehler nachvollziehen möchten. Somit muss nur das Paket, für das Sie die Informationen brauchen, neu kompiliert werden. Das ist hilfreich bei Paketen, die noch nicht über eine debug-Ausgabe verfügen.

Zum Beispiel würden Sie so Informationen zur Fehlersuche für die glib-Bibliothek bekommen, um sie inspizieren zu können, wenn Sie Fehler in Inkscape nachvollziehen möchten:

guix build --with-debug-info=glib inkscape

Führen Sie für mehr Informationen info "(guix.de) Paketumwandlungsoptionen" aus.

en

New --with-debug-info package transformation option

The new --with-debug-info option builds a variant of a package that includes debug info and grafts it onto the application you want to debug. Thus, only the package for which you want debug info needs to be recompiled. This is useful for packages that do not already have a debug output.

For example, here is how you would obtain debug info for the glib library so you can inspect it while debugging Inkscape:

guix build --with-debug-info=glib inkscape

Run info "(guix) Package Transformation Options" for more info.

es

Nueva opción de transformación --with-debug-info

La nueva opción --with-debug-info construye una variante del paquete que incluye la información de depuración y la injerta en la aplicación que desee depurar. Por tanto, únicamente el paquete del que desee información de depuración debe construirse de nuevo. Es útil para paquetes que no tienen ya una salida debug.

El siguiente ejemplo muestra como obtener información de depuración para la biblioteca glib de modo que pueda inspeccionarla mientras depura Inkscape:

guix build --with-debug-info=glib inkscape

Ejecute info "(guix.es) Opciones de transformación de paquetes" para obtener más información.

fr

Nouvelle option de transformation --with-debug-info

La nouvelle option de transformation de paquets --with-debug-info compile une variante d'un paquet avec les informations de déboguage et la greffe sur l'application que l'on veut déboguer. Ainsi seul le paquet pour lequel on demande des informations de déboguage a besoin d'être recompilé. C'est utile pour les paquets n'ayant pas déjà un résultat debug.

Voici par exemple comment obtenir des informations de déboguage pour la bibliothèque glib de manière à pouvoir l'inspecter quand on débuggue Inkscape :

guix build --with-debug-info=glib inkscape

Voir info "(guix.fr) Options de transformation de paquets" pour plus de détails.

Commit: e3e1a7ba08af2d58c47264c543617e499c239444Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

guix pull unterstützt nun SSH-authentifizierte Repositorys

Der Befehl guix pull unterstützt nun über SSH authentifizierte Repositorys als Argument von --url und in selbstgeschriebenen Kanaldefinitionen. Zur Authentisierung muss ein ssh-agent laufen.

en

guix pull now supports SSH authenticated repositories

The guix pull command now supports SSH authenticated repositories as argument of --url and in custom channels definitions. The authentication requires that an ssh-agent is running.

fr

guix pull prend maintenant en charge l'authentification en SSH pour les dépôts.

La commande guix pull prend maintenant en charge l'authentification SSH pour les dépôts dans l'argument --url et dans le définitions de canaux personnalisés. L'authentification nécessite qu'un ssh-agent soit lancé.

nl

guix pull ondersteunt nu SSH-geauthenticeerde repository's.

Het guix pull-commando ondersteunt nu SSH-geauthenticeerde opslag als argument na --url en bij het schrijven van eigen kanaaldefinities. Hiervoor moet een ssh-agent gestart zijn.

Commit: 2ca7af43fe17d9acf082dce85d137a27a8ac4887Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Bootstrapping jetzt mit noch kleinerem Seed

Der Paketgraph auf x86_64 und i686 hat jetzt eine noch kleinere Menge an binären Seeds als Wurzel. Das heißt, die ursprüngliche Menge an Binärdateien, aus denen heraus Pakete erstellt werden, machen nun ungefähr 60 MiB aus, ein Viertel der früheren Größe. Führen Sie info "(guix.de) Bootstrapping" aus, um mehr zu erfahren, oder schauen Sie sich den Vortrag auf https://fosdem.org/2020/schedule/event/gnumes/ an.

en

Further reduced binary seed bootstrap

The package graph on x86_64 and i686 is now rooted in a further reduced set of binary seeds. The initial set of binaries from which packages are built now weighs in at approximately 60 MiB, a quarter of what it used to be. Run info "(guix) Bootstrapping" to learn more, or watch the talk at https://fosdem.org/2020/schedule/event/gnumes/.

Commit: b6bee63bed4f013064c0d902e7c8b83ed7514adeTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Das guile-Paket bezeichnet jetzt Version 3.0

Das guile-Paket wurde auf Version 3.0 (statt 2.2) aktualisiert. Die Pakete, deren Namen mit guile3.0- beginnen, wurden umbenannt, so dass sie nun den unveränderten Namen tragen, während ihre Varianten mit guile2.2- hinzugefügt wurden. Des Weiteren werden jetzt alle Ableitungen mit Guile 3.0 erstellt und die Systemdienste laufen auch auf 3.0.

en

guile package now refers to version 3.0

The guile package has been upgraded to version 3.0 (instead of 2.2). The guile3.0- packages have been renamed to their original name, and guile2.2- variants of these packages have been defined. Additionally, derivations are now all built with Guile 3.0, and system services also run on 3.0.

Commit: 3b6e4e5fd05e72b8a32ff1a2d5e21464260e21e6Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Liste der Substitutschlüssel auf Guix System ist jetzt deklarativ

Die Liste von autorisierten Substitutschlüsseln, die in /etc/guix/acl steht, wird auf Guix System nach Vorgabe jetzt auf rein deklarative Weise erstellt, je nach Inhalt des authorized-keys-Feldes der Konfiguration des guix-service-type. Das hat zur Folge, dass manuelle Änderungen an /etc/guix/acl von jetzt an nach jedem Rekonfigurieren oder Neustarten verworfen werden (in diesem Fall wird eine Sicherheitskopie namens /etc/guix/acl.bak angelegt).

Wir empfehlen, dass Sie Ihre Betriebssystemkonfiguration aktualisieren, damit dort alle autorisierten Substitutschlüssel ausdrücklich aufgeführt werden. Siehe info "(guix.de) Basisdienste" für mehr Informationen zur guix-configuration und authorized-keys.

Alternativ können Sie das authorize-key?-Feld der guix-configuration auf #f setzen, um zum alten Verhalten zurückzugehen.

en

List of substitute keys is now declarative on Guix System

The list of authorized substitute keys, available in /etc/guix/acl, is now built by default in a purely declarative fashion on Guix System based on the authorized-keys field of the configuration of guix-service-type. This means that manual changes to /etc/guix/acl are now discarded upon reconfiguration or reboot (a backup is made as /etc/guix/acl.bak in that case).

We recommend updating your operating system configuration to explicitly list all the authorized substitute keys. See info "(guix) Base Services", for more info about guix-configuration and authorized-keys.

Alternatively, you can set the authorize-key? field of guix-configuration to #f to restore previous behavior.

es

Claves para sustituciones del sistema Guix en formato declarativo

El listado de claves autorizadas para la obtención de sustituciones, disponible en /etc/guix/acl, ahora se genera de manera predeterminada en el sistema Guix de forma completamente declarativa en base al campo authorized-keys del la configuración para el servicio guix-service-type. Esto significa que los cambios que se hayan realizado de manera manual en /etc/guix/acl se descartan tras una reconfiguración del sistema o tras un reinicio (se realiza una copia de seguridad en la ruta /etc/guix/acl.bak en este caso).

Le recomendamos que actualice su configuración del sistema operativo para que enumere explícitamente todas las claves que desea autorizar para la obtención de sustituciones. Véase info "(guix.es) Servicios base", para obtener más información sobre guix-configuration y authorized-keys.

También puede proporcionar el valor #f en el campo authorize-key? de guix-configuration para volver al comportamiento que se obtenía con versiones previas.

fr

Liste des clefs de substituts désormais déclarative sur Guix System

La liste des clefs de substituts autorisées, stockée dans /guix/guix/acl, est dorénavant construite par défaut de manière déclarative sur Guix System, en se basant sur le champs authorized-keys de la configuration de guix-service-type. Cela signifie que les modifications apportées manuellement à /etc/guix/acl seront désormais perdues lors d'une reconfiguration ou d'un redémarrage (dans ce cas une sauvegarde est faite dans /etc/guix/acl.bak).

Nous recommandons de mettre à jour sa configuration de système d'exploitation pour y lister explicitement les clefs autorisées. Lancez info "(guix.fr) Services de base" pour plus d'informations sur guix-configuration et authorized-keys.

Il est également possible de mettre le champs authorize-key? de guix-configuration à #f pour restaurer le comportement qui prévalait jusqu'à maintenant.

Commit: c924e541390f9595d819edc33c19d979917c15ecTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

guix repl kann Guile-Skripte ausführen

Der Befehl guix repl kann jetzt zur Ausführung von Guile-Skripten verwendet werden. Im Vergleich zum Befehl guile garantiert guix repl, dass alle Guix-Module und alle seine Abhängigkeiten im Suchpfad verfügbar sind. Skripte werden wie folgt ausgeführt:

guix repl -- my-script,scm --option1 --option2 --option2=option-arg arg1 arg2

Weitere Informationen erhalten Sie mit info "(guix.de) Aufruf von guix repl".

en

guix repl adds support for running Guile scripts

The guix repl command can now be used to run Guile scripts. Compared to just launching the guile command, guix repl guarantees that all the Guix modules and all its dependencies are available in the search path. Scripts are run like this:

guix repl -- my-script,scm --option1 --option2=option-arg arg1 arg2

Run info "(guix) Invoking guix repl" for more information.

es

guix repl puede ejecutar guiones de Guile

La orden guix repl ahora se puede usar para ejecutar guiones de Guile. En comparación con únicamente la ejecución de la orden guile, guix repl garantiza que todos los módulos de Guix y sus dependencias están disponibles en la ruta de búsqueda. Los guiones se ejecutan de este modo:

guix repl -- mi-guion.scm --opcion1 --opcion2=param-op2 param1 param2

Ejecute info "(guix.es) Invocación de guix repl" para obtener más información.

fr

guix repl permet d'exécuter des scripts en langage Guile

La commande guix repl peut maintenant être utilisée pour exécuter des scripts en langage Guile. Par rapport au simple lancement de la commande guile, guix repl garantit que tous les modules Guix et toutes ses dépendances sont disponibles dans le chemin de recherche. Les scripts sont exécutés comme ceci :

guix repl -- my-script,scm --option1 --option2=option-arg arg1 arg2

Exécutez info "(guix.fr) Invoquer guix repl" pour plus d'informations.

Commit: 88a96c568c47c97d05d883ada5afbc4e1200b10fTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neue Option --path für guix graph

Der Befehl guix graph verfügt über eine neue Befehlszeilenoption --path, die ihn den kürzesten Pfad zwischen zwei Paketen, Ableitungen oder Store-Objekten ausgeben lässt. Zum Beispiel zeigt folgender Befehl den kürzesten Pfad vom Paket libreoffice zu libunistring:

guix graph --path libreoffice libunistring

Führen Sie info "(guix.de) Aufruf von guix graph" aus, um mehr zu erfahren.

en

New --path option for guix graph

The guix graph command has a new --path option that instructs it to display the shortest path between two packages, derivations, or store items. For example, the command below displays the shortest path from the libreoffice package to libunistring:

guix graph --path libreoffice libunistring

Run info "(guix) Invoking guix graph" for more information.

es

Nueva opción --path para guix graph

La orden guix graph tiene una nueva opción --path que le indica que debe mostrar la ruta más corta entre dos paquetes, derivaciones o elementos del almacén. Por ejemplo, la siguiente orden muestra la ruta más corta desde el paquete libreoffice hasta libunistring:

guix graph --path libreoffice libunistring

Ejecute info "(guix.es) Invocación de guix graph" para obtener más información.

Commit: 313f492657f1d0863c641fa5ee7f5b7028e27c94Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Neue Option --image-type für guix system disk-image.

Anstelle der Befehlszeilenoption --file-system-type für guix system disk-image gibt es nun die neue Option --image-type. In der Vorgabeeinstellung raw werden rohe Disk-Images erzeugt, aber es können auch die Abbildtypen hurd-qcow2, hurd-raw, uncompressed-iso9660 und iso9660 ausgewählt werden.

Mit der Option --list-image-types werden alle verfügbaren Abbildtypen aufgelistet.

en

New --image-type option for guix system disk-image.

The --file-system-type option for guix system disk-image command has been replaced by the new --image-type option. By default, raw disk images are produced, but hurd-qcow2, hurd-raw, uncompressed-iso9660 and iso9660 image types are also available.

The --list-image-types option lists all the available image types.

es

Nueva opción --image-type para guix system disk-image.

La opción --file-system-type de guix system disk-image se ha sustituido por la nueva opción --image-type. De manera predeterminada se producen imágenes en formato crudo (raw) pero también están disponibles los tipos de imagen hurd-qcow2, hurd-raw, uncompressed-iso9660 y iso9660.

La opción --list-image-types muestra una lista con todos los tipos de imagen disponibles.

fr

Nouvelle option --image-type pour guix system disk-image.

L'option --file-system-type pour la commande guix system disk-image a été remplacée par la nouvelle option --image-type. Par défaut, l'option raw, produisant des images disque brutes est sélectionnée. Les options hurd-qcow2, hurd-raw, uncompressed-iso9660 et iso9660 sont également disponibles.

La nouvelle option --list-image-types énumère les types d'image disponibles.

Commit: 8234fe653e61d0090138cbd4c48d877568355439Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Guix läuft jetzt auf Guile 3.0

Die Guix-Version, die Sie gerade gepullt haben, läuft auf Version 3.0 von GNU Guile (und nicht mehr auf Version 2.2). Guile 3.0 verbessert die Rechenleistung, indem native Maschinenbefehle „just in time“ erzeugt werden (JIT-Kompilierung). Der Wechsel sollte für Sie völlig transparent sein und Guix verhält sich gleich. Siehe https://gnu.org/software/guile für weitere Informationen zu Guile 3.0.

en

Guix now runs on Guile 3.0

The Guix revision you just pulled runs on version 3.0 of GNU Guile (previously it would run on version 2.2). Guile 3.0 improves performance through the use of just-in-time (JIT) native code generation. The switch should be entirely transparent to you. See https://gnu.org/software/guile for more information on Guile 3.0.

fr

Guix tourne maintenant sous Guile 3.0

La révision de Guix que tu viens de récupérer tourne sous la version 3.0 de GNU Guile (Guix tournait avant sous la version 2.2). Guile 3.0 améliore la performance en générant du code natif à la volée (JIT). Le changement devrait être totalement transparent pour toi. Voir https://gnu.org/software/guile pour plus d'information sur Guile 3.0.

nl

Guix draait nu op Guile 3.0

De Guix die u net heeft gepulld gebruikt versie 3.0 van GNU Guile (voorheen was dat versie 2.2). Guile 3.0 draait dezelfde programma's doorgaans sneller door ze ‘just-in-time’ (JIT) te vertalen naar machine-instructies. De omschakeling zou voor u volledig naadloos moeten zijn. Lees https://gnu.org/software/guile voor meer informatie over Guile 3.0.

Commit: 43badf261f4688c8a7a7a9004a4bff8acb205835Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

guix pull authentifiziert Kanäle

Die Befehle guix pull und guix time-machine prüfen nun die Authentizität des heruntergeladenen Quellcodes, außer wenn die neue Befehlszeilenoption --disable-authentication angegeben wurde. Das bedeutet, Guix stellt sicher, dass jeder empfangene Commit durch einen autorisierten Entwickler kryptografisch signiert wurde. Das schützt Sie vor Versuchen, das Guix-Repository zu manipulieren oder bösartigen Code an die Nutzer auszuliefern.

Diese Funktionalität ist auf den guix-Kanal beschränkt, sie wird jedoch bald auch Autoren dritter Kanäle zur Verfügung stehen.

en

guix pull authenticates channels

The guix pull and guix time-machine commands now authenticate the source code that they pull, unless the new --disable-authentication option is passed. What this means is that Guix ensures that each commit received is cryptographically signed by an authorized developer. This protects you from attempts to tamper with the Guix repository and from attempts to ship malicious code to users.

This feature is currently limited to the guix channel but will soon be available to third-party channel authors.

es

guix pull verifica los canales

Las ordenes guix pull y guix time-machine ahora verifican el código fuente que obtienen, a menos que se proporcione la opción --disable-authentication. Lo que esto significa es que Guix se asegura de que cada revisión que recibe está firmada criptográficamente por una desarrolladora autorizada. Esto le protege de intentos de modificación del repositorio de Guix y de entregas de código con malas intenciones sobre las usuarias.

Esta característica está limitada actualmente al canal guix pero pronto estará disponible para autoras de canales independientes.

fr

guix pull authentifie les canaux

Les commandes guix pull et guix time-machine authentifient dorénavant le code source qu'elles obtiennent, à moins que la nouvelle option --disable-authentication soit utilisée. Cela signifie que Guix s'assure que chaque soumission (commit) récupéré dispose d'une signature cryptographique par un·e développeur·euse autorisé·e. Cela te protège de tentatives de modifications du dépôt Guix et de tentatives de livrer du code malintentionné.

Cette fonctionnalité n'est actuellement disponible que pour le canal guix mais le sera bientôt pour les canaux tiers.

Commit: b460ba7992a0b4af2ddb5927dcf062784539ef7bTag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Unterstützung für Systemstart von einem Btrfs-Unterlaufwerk hinzugefügt

Für die Erzeugung einer GRUB-Konfigurationsdatei aus einer Betriebssystemdeklaration kann jetzt ein Btrfs-Unterlaufwerk („Subvolume“) für die Partition mit /gnu/store angegeben werden. Führen Sie info "(guix) Btrfs file system" aus, wenn Sie mehr Informationen und Beispiele sehen möchten.

en

Add support to boot from a Btrfs subvolume

The generation of the GRUB configuration file produced from an operating system declaration now takes into account the use of a Btrfs subvolume for the partition holding /gnu/store. Run the command info "(guix) Btrfs file system" for more information and examples.

es

Implementado el arranque desde un subvolumen de Btrfs

El fichero de configuración de GRUB producido por la declaración de sistema operativo ahora tiene en cuenta el uso de subvolúmenes de Btrfs en la partición que contiene /gnu/store. Ejecute la orden info "(guix.es) Sistema de ficheros Btrfs" para obtener más información y ejemplos.

fr

Ajout du support pour démarrer depuis un sous-volume Btrfs

La génération du fichier de configuration de GRUB produite à partir de la déclaration d'un operating-system tient maintenant compte de l'utilisation d'un sous-volume Btrfs pour la partition contenant /gnu/store. Exécutez la commande info"(guix) Btrfs file system" pour des exemples et plus d'information.

nl

Nieuwe ondersteuning voor het opstarten vanaf een Btrfs-subvolume

Het opmaken van het GRUB-configuratiebestand op basis van een operating-system-declaratie houdt nu rekening met het gebruik van een Btrfs-subvolume voor de partitie die /gnu/store bevat. Voer info "(guix) Btrfs file system" uit voor meer informatie en voorbeelden.

Commit: 0468455e7d279c89ea3ad1b51935efb2b785ec47Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Rottlog-Dienst ist nun Teil der %base-services

Eine Instanz des rottlog-service-type für Log-Rotation wurde zu den %base-services hinzugefügt. Wenn der Systemdienst bereits in Ihrer Konfiguration für Guix System ausdrücklich genannt wurde, sollten Sie ihn jetzt daraus entfernen. Siehe den Abschnitt „Log-Rotation“ im Handbuch für weitere Informationen.

en

Rottlog service added to %base-services

An instance of rottlog-service-type, the system service responsible for log rotation, has been added to %base-services. If your operating system configuration for Guix System is explicitly adding rottlog-service-type to the services, you should now remove it. See the ``Log Rotation'' section of the manual for more information.

Commit: 79f9dee3c4c0e6d21066f142116a537207ae7ba4Tag: #<uninterned-symbol null 7fd5d3d590a0>

LanguageTitleBody
Newde

Substitutserver können jetzt im lokalen Netz erkannt werden

Mit dem guix-daemon können jetzt lokal laufende Substitutserver erkannt werden, wenn die Befehlszeilenoption --discover übergeben wurde. Nur solche Substitutserver werden gefunden, die mit der Befehlszeilenoption --advertise gestartet wurden. Die Ermittlung im Netzwerk verfügbarer Substitutserver baut auf den Protokollen mDNS und DNS-SD auf. Derzeit wird dazu die Bibliothek Guile-Avahi benutzt.

en

Local substitute servers discovery is now supported

The guix-daemon can now discover local substitute servers when the --discover option is passed. Only the substitute servers started with the --advertise option will be discovered. The network discovery is based on mDNS and DNS-SD protocols, using Guile-Avahi library for now.

es

Los servidores de sustituciones se pueden descubrir localmente

El daemon guix-daemon ahora puede descubrir servidores de sustituciones locales cuando se le proporciona la opción --discover. Únicamente se descubrirán los servidores de sustituciones que se hayan arrancado con la opción --advertise. La búsqueda en la red se basa en los protocolos mDNS y DNS-SD, actualmente mediante el uso de la biblioteca Guile-Avahi.

fr

La découverte des serveurs de substituts locaux est désormais supportée

Le guix-daemon peut désormais découvrir les serveurs de substituts locaux lorsque l'option --discover est passée. Seuls les serveurs de substituts démarrés avec l'option --advertise seront découverts. La découverte réseau utilise les protocoles mDNS et DNS-SD, pour l'instant grâce à la librairie Guile-Avahi.

New packages

NameVersion
rust-wayland-scanner0.23.6More information
emacs-company-reftex0.1.0More information
rust-alloc-stdlib0.2.1More information
python-pyqtwebengine5.14.0More information
akku1.0.1More information
r-tmvnsim1.0-2More information
bshapr0.9More information
font-iosevka-curly4.0.3More information
kbdd0.7.1More information
pitivi0.999.0-2020.09.2More information
go-github-com-ddevault-go-libvterm0.0.0-0.b7d861dMore information
sbcl-trivial-indent1.0.0-0.2d01694More information
libaudec0.2.4More information
guile2.2-charting0.2.0More information
rust-tendril0.4.1More information
libyaml+static0.2.5More information
rust-serde-bytes0.10.5More information
python-pytidylib0.3.2More information
rust-bindgen0.50.1More information
ecl-function-cache1.0.3More information
r-fds1.8More information
cl-progress-bar0.0.0-1.9374170More information
ruby-protobuf3.10.3More information
vlang0.1.29More information
rust-clicolors-control1.0.1More information
ocaml-mmap1.1.0More information
rust-pangocairo-sys0.10.1More information
mssilk1.1.1More information
rust-proptest0.7.2More information
python2-clikit0.6.2More information
okular20.12.0More information
f2fs-tools-static1.14.0More information
libktorrent2.1.1More information
rust-data-encoding2.3.1More information
tascam-gtk0.4-0.17b8575More information
cl-freetype21.1-0.96058daMore information
tarlz0.17More information
cl-xmlspam0.0.0-1.ea06abcMore information
folly2020.10.05.00More information
sbcl-vom0.1.4-1.1aeafebMore information
ghc-special-values0.1.0.0More information
ecl-type-i0.1-2.d34440aMore information
rust-dtoa0.4.4More information
rust-tower-test0.3.0More information
rust-predicates-core1.0.0More information
ganeti-instance-guix0.6More information
rust-ena0.13.1More information
ecl-cl-cffi-gtk0.11.2-2.e9a46dfMore information
rust-x11-clipboard0.4.0More information
java-pep-adapter2.0.5More information
python-trytond-company5.6.0More information
rust-cssparser-macros0.6.0More information
rust-timebomb0.1.2More information
rust-arrayref0.3.6More information
rust-fern0.6.0More information
sbcl-custom-hash-table0.3-1.f269831More information
rust-filetime0.2.8More information
rust-pom3.2.0More information
perl-data-float0.013More information
rust-string-cache0.7.5More information
go-github-com-olekukonko-tablewriter0.0.4More information
rust-unindent0.1.6More information
java-junitparams1.1.1More information
r-karyoploter1.16.0More information
go-github-com-danwakefield-fnmatch0.0.0-0.cbb64acMore information
rust-if-chain1.0.0More information
rust-libsqlite3-sys0.15.0More information
guile3.0-opengl0.1.0More information
mtpaint3.49.33More information
ecl-trivial-types0.0.1More information
android-libcutils7.1.2_r36More information
ocaml4.07-ppx-variants-conv0.11.1More information
cl-salza22.0.9More information
r-perm1.0-0.0More information
go-github-com-nwidger-jsoncolor0.3.0More information
python-immutables0.14More information
r-m3c1.12.0More information
cl-html-entities0.02-1.4af0180More information
sbcl-form-fiddle1.1.0-0.e0c2359More information
cl-hu.dwim.defclass-star2015-07-09More information
libtcod1.15.1More information
dune-subgrid-openmpi2.7.0-git-2103a363More information
rust-ansi-term0.9.0More information
libvnc0.9.13More information
r-transphylo1.4.4More information
r-asd2.2More information
miniasm0.3More information
swh-plugins0.4.17More information
emacs-boxquote2.1-0.7e47e0eMore information
rust-osmesa-sys0.1.2More information
rust-libc-print0.1.13More information
rust-fancy-regex0.3.5More information
rust-owning-ref0.4.1More information
rust-url2.2.0More information
python-grandalf0.7More information
v4l2loopback-linux-module0.12.5More information
rust-dav1d-sys0.3.2More information
rust-petgraph0.4.13More information
icu4c-build-root66.1More information
novena-eeprom2.3More information
sbcl-envy0.1-1.956321bMore information
fldigi4.1.16More information
libappindicator12.10.0More information
opencolorio1.1.1More information
rust-lopdf0.25.0More information
gnome-chess3.37.3More information
rust-siphasher0.2.3More information
libexpected1.0.0More information
rust-objc0.2.7More information
rust-trust-dns-https0.3.4More information
xournalpp1.0.20More information
r-dae3.1-32More information
emacs-modalka0.1.5More information
esbuild0.8.27More information
python-pypng0.0.20More information
rust-cookie0.14.2More information
rust-hmac0.8.1More information
sbcl-lquery3.2.1-1.8048111More information
python-keyrings.alt3.4.0More information
liblogging1.0.6More information
rust-inotify0.6.1More information
rust-diff0.1.12More information
emacs-jq-mode0.5.0More information
emacs-embark0.6-0.dc20b4eMore information
cl-gsll0.0.0-1.1a8ada2More information
emacs-org-drill-table0.1-0.096387dMore information
ecl-generic-cl0.7.1-1.8e5a814More information
emacs-libgit20200515-1.0ef8b13More information
unicorn1.0.2-rc4More information
cl-documentation-utils1.2.0-0.98630ddMore information
cl-sycamore0.0.20120604More information
emacs-psc-ide0.1.0-1.7fc2b84More information
rust-png0.14.1More information
emacs-uml-mode0.0.4-1.4c37ac1More information
python-django-picklefield3.0.1More information
tiny-bignum0-0.1d7a1f9More information
emacs-qml-mode0.4More information
rust-criterion-plot0.3.1More information
java-picocli4.3.2More information
rust-unicode-normalization0.1.11More information
python-py3dns3.2.1More information
go-gotest-tools-internal-source2.3.0More information
mscgen0.20More information
r-shadowtext0.0.7More information
rust-capnpc0.10.2More information
python-scour038.1More information
python-json50.8.5More information
r-gprofiler20.2.0More information
rust-cairo-rs0.9.1More information
castor0.8.16More information
rust-zstd0.5.3+zstd.1.4.5More information
chicken-test1.1More information
rust-libpijul0.12.2More information
ocaml4.07-ppx-fields-conv0.11.0More information
rust-num-derive0.2.5More information
kmailtransport20.04.1More information
rust-lalrpop-util0.17.2More information
ruby-rspec-given3.8.0More information
sbcl-deploy1.0.0-1.59fd497More information
rust-atk-sys0.9.1More information
rust-automod1.0.0More information
font-iosevka-curly-slab4.0.3More information
ecl-http-body0.1.0-1.dd01dc4More information
rust-afl0.5.2More information
libiberty7.5.0More information
r-pcatools2.2.0More information
ecl-ningle0.3.0-1.50bd4f0More information
rust-test-assembler0.1.5More information
python2-importlib-metadata1.5.0More information
khelpcenter20.04.1More information
go-github-com-muesli-reflow-padding0.1.0More information
rust-bumpalo3.2.1More information
go-github-com-jbenet-go-context0.0.1-1.d14ea06More information
guile3.0-simple-zmq0.0.0-5.f8b7d81More information
rust-bitstream-io0.8.5More information
ecl-zpb-ttf1.0.3More information
rust-rand-core0.2.2More information
rust-trust-dns-rustls0.19.5More information
cl-project0.3.1-1.1511070More information
python-pysaml25.0.0More information
ocaml4.07-ppx-hash0.11.1More information
r-mlecens0.1-4More information
sbcl-cl-mustache0.12.1More information
perl-lingua-en-sentence0.31More information
pstoedit3.75More information
antlr44.1More information
go-golang-zx2c4-com-wireguard0.0.20200320More information
guile-webutils0.1-0.8541904More information
python-nbsphinx0.7.1More information
rust-ring0.14.6More information
ghc-pwstore-fast2.4.4More information
python-progressbar23.51.3More information
r-crochet2.3.0More information
cl-flexichain1.5.1More information
rust-object0.17.0More information
rust-crypto-mac0.8.0More information
r-km-ci0.5-2More information
ruby-asciidoctor-pdf1.5.3-1.d257440More information
sbcl-cl-base320.1-1.8cdee06More information
rust-term0.6.1More information
ocaml4.07-gsl1.24.0More information
rust-onig6.1.1More information
rust-nalgebra0.19.0More information
rust-ntest-timeout0.3.3More information
bidiv1.5More information
ecl-clunit20.2.4-1.5e28343More information
python-aws-sam-translator1.30.1More information
tao1.0-beta-10May2006More information
java-asm-util8.0.1More information
ecl-cl-z851.0-1.85b3951More information
exa0.9.0More information
cl-opticl0.0.0-0.e868441More information
python-django-auth-ldap2.2.0More information
ecl-lisp-namespace0.1-1.28107caMore information
emacs-racer1.2More information
rust-clang-sys0.26.4More information
jfsutils-static1.1.15More information
rust-rustc-ap-rustc-ast654.0.0More information
r-adapenetclass1.2More information
libquicktime1.2.4More information
ghc-cryptonite-conduit0.2.2More information
rust-libz-sys1.1.1More information
cl-qbase640.3.0More information
python-gorilla0.3.0More information
rust-ipnetwork0.17.0More information
perl-mail-sendmail0.80More information
python-txsni0.1.9-0.5014c14More information
cl-regex1-1.fbc9a9fMore information
ecl-parachute1.1.1-0.ca04dd8More information
lsp-plugins1.1.26More information
guile-laesare1.0.0More information
rust-pangocairo0.8.0More information
gpsd3.21More information
fsarchiver0.8.5More information
emacs-xclip1.10More information
go-github-com-pkg-diff0.0.1-1.5319263More information
rust-new-debug-unreachable1.0.3More information
hdt-cpp1.3.3More information
python-imap-tools0.29.0More information
erofs-utils1.2More information
libfreenect0.6.1More information
freedink-data1.08.20190120More information
rust-unicode-xid0.0.4More information
cl-olc1.0-0.517e27fMore information
rust-base640.12.3More information
python-wurlitzer2.0.1More information
python2-text-unidecode1.3More information
rust-rand-core0.4.2More information
ruby-sys-filesystem1.3.4More information
emacs-gn-mode0.4.1More information
rust-normalize-line-endings0.2.2More information
rust-num-rational0.3.0More information
ruby-benchmark-ips2.8.2More information
rust-approx0.3.2More information
rust-vswhom-sys0.1.0More information
python-nbval0.9.6More information
rust-net20.2.33More information
rust-hyper-old-types0.11.0More information
rust-crates-index0.13.1More information
r-qgam1.3.2More information
rust-spin0.5.2More information
rust-hex-literal-impl0.1.2More information
rust-aster0.41.0More information
sbcl-mt199371.1More information
r-snowballc0.7.0More information
rust-uuid0.7.4More information
rust-tokio-mock-task0.1.1More information
guile3.0-shepherd0.8.1More information
parlatype2.1More information
guile3.0-cairo1.11.1More information
cl-ppcre-unicode2.1.1More information
rust-strsim0.8.0More information
rust-rpassword4.0.5More information
font-iosevka-term4.0.3More information
aws-c-common0.4.63More information
egl-wayland1.1.5More information
rust-unchecked-index0.2.2More information
rust-foreign-types-shared0.2.0More information
rust-glib0.8.2More information
ghc-yesod-static1.6.0.1More information
python-safety1.9.0More information
rust-piston2d-gfx-graphics0.66.0More information
font-ipa-mj-mincho006.01More information
rust-quasi0.32.0More information
opensbi-qemu-sifive-u0.8More information
emacs-persist0.4More information
omnitux1.2.1More information
7kaa2.15.4p1More information
emacs-slime-volleyball1.1.7More information
rust-objc-exception0.1.2More information
g-golf0.1.0-839.ef83010More information
go-github-com-spf13-cast1.3.1More information
go-golang.org-x-sync-errgroup0.0.0-0.cd5d95aMore information
rust-sha2-asm0.5.4More information
font-opendyslexic0.91.12More information
rust-tokio-util0.3.1More information
r-projpred2.0.2More information
ocaml4.07-ppx-optional0.11.0More information
libolm3.2.1More information
r-reordercluster1.0More information
f2fs-fsck-static1.14.0More information
python-conda-package-handling1.6.0More information
cl-clml0.0.0-0.95505b5More information
svt-av10.8.6More information
rust-sval-derive0.5.2More information
rust-discard1.0.4More information
pamixer1.4More information
go-github-com-masterminds-goutils1.1.0More information
sbcl-cl-abnf0.0.0-1.ba1fbb1More information
rust-rdrand0.4.0More information
python-unpaddedbase641.1.0More information
python2-validators0.14.2More information
fiano-utk5.0.0More information
rust-pin-project-internal1.0.2More information
exfatprogs1.0.4More information
libime1.0.2More information
rust-hyper0.13.7More information
remake4.3-1.5More information
rust-serde-big-array0.2.0More information
rust-base640.13.0More information
cxxopts2.2.1More information
fullswof-2d1.09.01More information
r-mboost2.9-3More information
rust-synstructure-test-traits0.1.0More information
rust-proptest0.8.7More information
guile2.2-cairo1.11.1More information
gpredict2.2.1More information
gnome-music3.34.5More information
cl-cont0.3.8-1.fc1fa7eMore information
wireguard-tools1.0.20200827More information
ecl-parse-number1.7More information
r-rpf1.0.5More information
python-sphinx-autobuild0.7.1More information
rust-fuchsia-zircon-sys0.3.3More information
python-trytond-stock5.6.1More information
python2-pep5170.8.2More information
python-gphoto22.2.1More information
rust-make-cmd0.1.0More information
rust-synstructure0.12.3More information
emacs-ytdl1.3.5More information
emacs-company-ebdb1.1More information
guile3.0-syntax-highlight0.1More information
cl-do-urlencode0.0.0-1.1998464More information
apply-refact0.6.0.0More information
hledger-web1.14.1More information
rust-c2-chacha0.2.2More information
universal-ctags5.9.20201018.0More information
hsetroot1.0.5More information
ecl-cl-pdf0-1.752e337More information
sbcl-fset1.3.2-1.6d2f9deMore information
libqalculate3.8.0More information
rust-wincolor1.0.3More information
r-mstate0.2.12More information
rust-threadpool1.7.1More information
python-libsass0.20.1More information
r-catalyst1.14.0More information
remid-lv20.3More information
rust-criterion-plot0.4.3More information
guvcview2.0.6More information
rust-mime0.3.16More information
sbcl-cl-freetype21.1-0.96058daMore information
fcitx55.0.3More information
rust-mint0.5.4More information
ecl-make-hash1.0.2-1.ae0909cMore information
emacs-ac-geiser0.1-0.93818c9More information
r-tea1.1More information
sbcl-opticl0.0.0-0.e868441More information
go-github-com-kevinburke-ssh-config1.0More information
rust-fragile0.3.0More information
r-rselenium1.7.7More information
cwltool3.0.20201121085451More information
paperview0.0.1-1.9f8538eMore information
ecl-cl-vectors0.1.5More information
emacs-glsl-mode2.4-0.b071120More information
sleef3.5.1More information
rust-glutin-emscripten-sys0.1.0More information
rust-afl0.8.0More information
texlive-symbol51265More information
guile2.2-lib0.2.6.1More information
readosm1.1.0aMore information
rust-static-assertions1.1.0More information
dbus-cxx0.12.0More information
rust-rustversion0.1.4More information
ecl-array-operations0.0.0-0.75cbc3bMore information
rust-async-trait0.1.40More information
font-openmoji12.4.0More information
ruby-wwtd1.4.1More information
python-frozendict1.2More information
emacs-typit0.2.1-1.231cb7dMore information
java-surefire-logger-api3.0.0-M4More information
rust-lazy-static1.3.0More information
sbcl-geco2.1.1More information
rust-serde-derive0.9.15More information
rust-is-executable0.1.2More information
rust-gettext-rs0.5.0More information
cl-osicat0.7.0-1.de0c18aMore information
akonadi-mime20.04.1More information
python-bagit1.7.0More information
rust-reqwest0.10.10More information
rust-sha20.8.2More information
cl-abnf0.0.0-1.ba1fbb1More information
emacs-toc-org1.1.0More information
ocaml4.07-ppx-optcomp0.11.0More information
rust-csv-core0.1.10More information
cl-blackbird0.5.2-1.d361f81More information
emacs-scpaste0.6.5More information
r-spacyr1.2.1More information
ecl-glyphs0.0.0-1.1ff5714More information
cgoban1.9.14More information
python-terminaltables3.1.0More information
aws-c-event-stream0.1.6More information
rust-aho-corasick0.7.13More information
ecl-cl-base643.3.4-1.577683bMore information
python-beautifultable1.0.0More information
r-partykit1.2-10More information
rust-rand0.6.5More information
rust-fallible-iterator0.2.0More information
rust-afl0.4.3More information
firefox-decrypt0.7.0More information
python-pyfavicon0.1.1More information
rust-is-macro0.1.8More information
rust-console-log0.1.2More information
rust-syn1.0.53More information
cl-rdkafka1.0.2More information
ecl-salza22.0.9More information
rust-wasm-bindgen-test-macro0.3.19More information
rust-cexpr0.3.6More information
rust-aho-corasick0.6.10More information
ecl-map-set0.0.0-1.7b4b545More information
powerstat0.02.22More information
rust-hostname0.3.1More information
rust-bindgen0.53.3More information
rust-pico-sys0.0.1More information
rust-grep-pcre20.1.4More information
rust-tokio-io0.1.13More information
rust-output-vt1000.1.2More information
python-userspacefs2.0.2More information
cjson1.7.14More information
slimevolley2.4.2More information
rust-pin-project0.4.22More information
rust-num-cpus1.13.0More information
python-versioneer0.19More information
ecl-fare-quasiquote1.0.1-1.640d39aMore information
rust-walkdir1.0.7More information
rust-tabwriter1.2.1More information
texlive-units51265More information
rust-core-text13.3.2More information
sbcl-stumpwm-kbd-layouts0.0.1-2.920f8fcMore information
ecl-sycamore0.0.20120604More information
ghc-pipes4.3.13More information
rust-mio-anonymous-pipes0.1.0More information
ecl-supertrace0.1.0-1.66d22c3More information
libsocketcan0.0.11More information
ktorrent5.1.2More information
python-pifpaf2.5.0More information
ghc-persistent-test2.0.3.1More information
python-pyfiglet0.8.post1More information
ocaml4.07-earley2.0.0More information
rspamd2.6More information
python-transient0.12More information
rust-seahash3.0.7More information
go-github-com-jackpal-go-nat-pmp1.0.2More information
rust-tokio-net0.2.0-alpha.4More information
ghc-psqueue1.1.0.1More information
rust-x860.33.0More information
go-github-com-masterminds-sprig3.1.0More information
ghc-pretty-simple2.2.0.1More information
mediastreamer22.16.1More information
rust-futures-test0.3.5More information
go-github-com-pmezard-go-difflib1.0.0More information
rust-encoding-index-tradchinese1.20141219.5More information
rust-quick-error1.2.3More information
r-motifdb1.32.0More information
rust-glib-sys0.9.1More information
emacs-frames-only-mode1.0.0More information
rust-ntest-test-cases0.3.4More information
python-block-tracing1.0.1More information
r-pasilla1.14.0More information
rust-criterion0.3.3More information
rust-goblin0.1.3More information
rust-cloudabi0.0.3More information
rust-rayon1.3.1More information
libkleo20.04.1More information
ecl-repl-utilities0.0.0-1.e0de9c9More information
rust-mysqlclient-sys0.2.4More information
rust-glib-macros0.10.1More information
rust-line0.1.15More information
rust-indexmap1.6.1More information
rust-block-padding0.1.4More information
ghc-sourcemap0.1.6More information
go-golang-org-x-image0.0.0-1.58c2397More information
ebusd3.4More information
r-v83.4.0More information
hurd0.9-1.91a5167More information
ocaml4.07-ppx-base0.11.0More information
lttng-ust2.11.0More information
sbcl-hu.dwim.common2015-07-09More information
rust-encoding-index-simpchinese1.20141219.5More information
ocaml4.07-ezjsonm1.1.0More information
ghc-text-manipulate0.2.0.1More information
python-boto2.49.0More information
rust-http-req0.5.4More information
gmic2.9.2More information
sbcl-cl-lex1.1.3-1.f2dbbe2More information
kdegraphics-mobipocket20.12.0More information
rust-rand-xoshiro0.1.0More information
r-awsmethods1.1-1More information
rust-redox-syscall0.1.57More information
rust-brotli-decompressor2.3.1More information
python-gitlab1.15.0More information
rust-approx0.1.1More information
rust-parity-wasm0.41.0More information
python-pairtools0.3.0More information
rust-tinyvec0.3.4More information
rust-lab0.4.4More information
akonadi20.04.1More information
rust-strsim0.6.0More information
fbset2.1More information
sbcl-rove0.9.6More information
rust-napi-sys0.4.7More information
ghc-generic-random1.2.0.0More information
rust-thread-local1.0.1More information
lua-tablepool0.01More information
rust-sema0.1.4More information
choqok1.7.0More information
rust-serde-macros0.4.4More information
fogpad1.0.0More information
r-altmeta3.2More information
rust-pest-derive2.1.0More information
libtirpc-hurd1.2.5More information
rust-hashbrown0.8.0More information
sbcl-clunit20.2.4-1.5e28343More information
rust-winapi-x86-64-pc-windows-gnu0.4.0More information
python-aenum2.2.4More information
rust-adler321.1.0More information
ruby-varint0.1.1More information
go-github-com-zalando-go-keyring0.1.0More information
python-jsondiff1.2.0More information
ztoolkit0.1.1More information
python-importmagic0.1.7More information
gnote3.38.0More information
rust-onig5.0.0More information
emacs-sly-stepper0.0.0-1.cd7fd00More information
qtwebengine5.14.2More information
multimon-ng1.1.9More information
python-anytree2.8.0More information
ghc-bencode0.6.1.1More information
sbcl-qbase640.3.0More information
rust-phf-generator0.7.24More information
cogutil2.0.3-1.b07b41bMore information
rust-generic-array0.14.2More information
virtaal0.7.1More information
cl-antik-base0.0.0-1.e4711a6More information
maven-archiver3.5.0More information
rust-unix-socket0.5.0More information
pedansee0.0.3More information
python-pytest-filter-subpackage0.1.1More information
dune-functions-openmpi2.7.0More information
rust-proc-macro-error-attr1.0.4More information
rust-bytecount0.5.1More information
sbcl-cl-coroutine0.1-1.de098f8More information
rust-rpassword2.1.0More information
emacs-solidity0.1.10-0.d166a86More information
rust-tokio-named-pipes0.1.0More information
python-txacme0.9.2More information
rust-rle-decode-fast1.0.1More information
cl-3bz0.0.0-0.d611908More information
python-cmd21.0.2More information
sbcl-caveman2.4.0-1.faa5f7eMore information
texlive-logreq51265More information
rust-publicsuffix1.5.4More information
java-plexus-digest1.2More information
rust-termcolor1.1.0More information
rust-native-tls0.2.6More information
rust-envmnt0.6.0More information
python-colour0.1.5More information
rust-ascii1.0.0More information
git-cal0.9.1More information
ecl-eager-future20.0.0-1.54df8efMore information
mailcap2.1.49More information
rust-ref-cast-impl1.0.2More information
sbcl-misc-extensions3.3-1.101c051More information
libticables21.3.5More information
libticalcs21.1.9More information
rust-quickcheck0.6.2More information
python-iniconfig1.1.1More information
qrcodegen-cpp1.6.0More information
sbcl-com.gigamonkeys.binary-data0.0.0-0.22e9089More information
guile-avahi0.4.0-1.6d43cafMore information
svd2rust0.17.0More information
rust-same-file0.1.3More information
rust-escargot0.5.0More information
rust-glutin-gles2-sys0.1.3More information
link-grammar5.7.0More information
cl-calispel0.1-1.e9f2f9cMore information
linux-libre-mips64el-fuloong2e5.10.4More information
python-uvicorn0.11.8More information
rust-percent-encoding1.0.1More information
rust-peg0.5.7More information
rust-pq-sys0.4.6More information
rust-glutin0.21.2More information
granite5.5.0More information
rust-trybuild1.0.23More information
python-authheaders0.13.0More information
libthai0.1.28More information
tuir1.29.0More information
go-github-com-twmb-murmur31.1.3More information
rust-rustc-ap-rustc-index654.0.0More information
ocaml-version3.0.0More information
go-github-com-microcosm-cc-bluemonday1.0.3More information
fd8.1.1More information
rust-trust-dns-proto0.7.4More information
sbcl-livesupport0.0.0-1.71e6e41More information
emacs-jenkinsfile-mode0.0.1-1.00d259fMore information
rust-num-complex0.1.43More information
rust-futures-channel0.3.8More information
ruby-css-parser1.7.1More information
rust-yaml-rust0.3.5More information
emacs-explain-pause-mode0.1-0.2356c8cMore information
rust-khronos-api3.1.0More information
rust-quickcheck-macros0.9.1More information
libredwg0.11.1More information
guile3.0-present0.3.0More information
rust-rusqlite0.23.1More information
tllist1.0.4More information
ecl-marshal1.3.0-1.eff1b15More information
hitch1.7.0More information
rust-spin0.4.10More information
ttaenc3.4.1More information
cl-simple-neural-network3.1More information
go-github-com-go-md2man2.0.0More information
cl-gtype0.1-2.2442e32More information
r-gitcreds0.1.1More information
xwrits2.26More information
rust-syslog4.0.1More information
ghc-wizards1.0.3More information
ode0.16.2More information
guile2.2-bytestructures1.0.9More information
python-trytond-stock-lot5.6.0More information
rust-mio0.7.6More information
curseofwar1.3.0More information
rust-signal-hook-registry1.2.0More information
kblog20.04.1More information
r-entropy1.2.1More information
go-github-com-gorilla-css1.0.0More information
python-text-unidecode1.3More information
rust-serde-stacker0.1.4More information
python-jeepney0.4.3More information
rust-aes0.4.0More information
rust-clippy0.0.302More information
cl-mito0.1-1.d3b9e37More information
gnome-photos3.34.2More information
grip4.5.2-1.27a4d6dMore information
bsd-games2.17.0More information
python-pykeepass3.2.1More information
ocaml4.09-dune-configurator2.7.1More information
rust-stream-cipher0.4.1More information
r-ideoviz1.26.0More information
xsecurelock1.6.0More information
ksmtp20.04.1More information
mednafen1.26.1More information
rust-git20.13.15More information
emacs-beancount2.2.3More information
rust-sct0.6.0More information
sbcl-cl-mysql0.1-1.ab56c27More information
rust-num-rational0.1.42More information
sbcl-gtype0.1-2.2442e32More information
python-dkimpy1.0.5More information
ghc-cassava0.5.2.0More information
bjumblr1.4.2More information
emacs-elf-mode0.1.0More information
python-django-haystack2.8.1More information
kidentitymanagement20.04.1More information
gnu-arch1.3.5More information
ruby-tomparse0.4.2More information
r-boruta7.0.0More information
emacs-modus-operandi-theme1.0.2More information
ocaml4.07-uri2.2.0More information
python-json-logger0.1.11More information
lua-cqueues20171014More information
python-onnx1.8.0More information
ecl-livesupport0.0.0-1.71e6e41More information
clapack3.2.1More information
rust-pango0.8.0More information
font-sarasa-gothic0.12.7More information
rust-rustc-ap-rustc-target654.0.0More information
rust-plugin0.2.6More information
sylpheed3.7.0More information
go-github-com-puerkitobio-goquery1.5.1More information
rust-resolv-conf0.6.3More information
osinfo-db-tools1.8.0More information
rust-base640.9.3More information
rust-expat-sys2.1.6More information
ecl-agutil0.0.1-1.df188d7More information
sbcl-documentation-utils-extensions0.0.0-1.f67f8a0More information
rust-aead0.3.2More information
ghcid0.8.7More information
sbcl-symbol-munger0.0.1-1.97598d4More information
gtx0.2.2More information
rust-futures-core0.3.8More information
python-croniter0.3.34More information
rust-mimalloc0.1.20More information
rust-sanakirja0.10.3More information
dee1.2.7More information
r-kmer1.1.2More information
rust-flame0.2.2More information
rust-version-sync0.8.1More information
emacs-org-generate1.0.0More information
go-github-com-gorilla-csrf1.7.0More information
rust-tokio-io-pool0.1.6More information
rust-sleef-sys0.1.2More information
emacs-helm-selector0.5More information
guile-lzlib0.0.2More information
rust-fake-simd0.1.2More information
rust-static-map-macro0.2.1More information
rust-spmc0.3.0More information
guile2.2-xapian0.1.0More information
ecl-trivial-package-local-nicknames0.2More information
guile3.0-guix1.2.0-8.7624ebbMore information
emacs-literate-calc-mode0.1-1.a50e897More information
go-github-com-bep-golibsass0.7.0More information
rust-alga-derive0.9.2More information
sbcl-cl-rdkafka1.0.2More information
cl-rove0.9.6More information
rust-tracing0.1.22More information
go-github-com-shurcool-sanitized-anchor-name1.0.0More information
queen-it1.0More information
mtxclient0.3.1More information
emacs-elm-mode0.21.0More information
tokei10.1.1More information
python-pure-protobuf2.0.1More information
libgda5.2.10More information
java-antlr4-runtime4.8More information
rust-futures-join-macro-preview0.3.0-alpha.19More information
sbcl-mmap1.0.0-0.ba2e98cMore information
rust-parking-lot-core0.5.0More information
python-bonsai1.2.0More information
ruby-treetop1.6.10More information
rust-semver0.11.0More information
cl-kebab0.1-1.e7f7764More information
cl-clunit20.2.4-1.5e28343More information
cl-ana0.0.0-1.fa7cee4More information
rust-rand-core0.3.1More information
rust-base640.11.0More information
guile2.2-gdbm-ffi20120209.fa1d5b6More information
netdde2.6.32.65-1.4a1016fMore information
rust-bitflags0.5.0More information
rust-webpki0.19.1More information
rust-xattr0.2.2More information
rust-raw-window-handle0.3.3More information
python-pytest-asyncio0.10.0More information
rust-libc0.2.81More information
rust-sequoia-rfc28220.9.0More information
ecl-flexichain1.5.1More information
libilbc2.0.2More information
rust-rustls0.17.0More information
midori9.0More information
rust-slog2.5.2More information
rust-pretty-env-logger0.4.0More information
ecl-exponential-backoff0-1.8d9e844More information
beancount2.2.3More information
python-django-classy-tags2.0.0More information
muchsync6More information
python-django-url-filter0.3.15More information
r-etrunct0.1More information
rust-core-foundation-sys0.6.2More information
python2-random21.0.1More information
guile2.2-gi0.3.0More information
rust-version-sync0.6.0More information
python2-parallel1.6.4.4More information
rust-toml0.2.1More information
eglexternalplatform1.1More information
rust-freetype-rs0.23.0More information
rust-tokio-rustls0.10.3More information
rust-webpki0.18.1More information
rust-md50.3.8More information
rust-defmac0.2.1More information
tup0.7.9More information
rust-procedural-masquerade0.1.7More information
chaiscript6.1.0More information
agi-bio0-1.b5c6f3dMore information
ecl-geco2.1.1More information
setzer0.3.8More information
rust-shlex0.1.1More information
guile2.2-mcron1.2.0More information
passwordsafe3.99.2More information
r-forecast8.13More information
cl-dbi0.9.4-1.31c4686More information
rust-core-foundation0.9.1More information
rust-serde-codegen-internals0.14.2More information
r-fhtest1.5More information
foo-yc201.3.0More information
ghc-hjsmin0.2.0.4More information
rust-dirs-sys-next0.1.1More information
rust-criterion-cycles-per-byte0.1.2More information
rust-rawpointer0.1.0More information
rust-content-inspector0.2.4More information
rust-gio-sys0.9.1More information
guile3.0-rsvg2.18.1-0.05c6a2fMore information
ecl-quantile-estimator0.0.1More information
rust-predicates-core0.9.0More information
uriparser0.9.4-1.25dddb1More information
rust-spsc-buffer0.1.1More information
rust-blas-sys0.7.1More information
pwclient1.3.0More information
pre-commit2.8.1More information
guile-shapefile0.1.2More information
rust-android-glue0.2.3More information
sbcl-trivial-shell0.2.0-1.e02ec19More information
guile3.0-email0.2.2More information
rust-cloudabi0.1.0More information
ecl-bordeaux-fft1.0.1-0.4a1f560More information
emacs-org-roam1.2.2More information
libinih52More information
rust-gettext-sys0.19.9More information
gnome-js-common0.1.2More information
r-erm1.0-1More information
python-django-logging-json1.15More information
rust-aom-sys0.1.4More information
tinyalsa1.1.1More information
python-btrees4.7.2More information
rust-hashbrown0.1.8More information
r-cdm7.5-15More information
sbcl-contextl1.0.0-1.5d18a71More information
mdk1.3.0More information
rust-rusty-fork0.3.0More information
ecl-symbol-munger0.0.1-1.97598d4More information
gupnp1.2.4More information
rust-lab0.7.2More information
ruby-forking-test-runner1.6.0More information
xplanet1.3.1More information
perl-test2-suite0.000072More information
cantata2.4.2More information
bcachefs-tools-static0.1-2.db931a4More information
anubis4.2.90More information
rust-unicode-segmentation1.6.0More information
emacs-ob-sclang20201222More information
thin-provisioning-tools0.8.5More information
go-github-com-spf13-cobra1.0.0More information
font-iosevka-term-slab4.0.3More information
ghc-cborg-json0.2.2.0More information
grokmirror2.0.5More information
python-pytest-benchmark3.2.3More information
ruby-spectroscope0.1.0More information
r-d3network0.5.2.1More information
rawdog2.23More information
ocaml4.07-typerep0.11.0More information
python-asyncssh2.3.0More information
konversation1.7.7More information
ecl-trivia0.0.0-2.37698b4More information
unifdef2.12More information
node-env-variable0.0.4More information
rust-idna0.1.5More information
v0.1.29More information
ecl-vom0.1.4-1.1aeafebMore information
rust-quote0.3.15More information
rust-yaml-rust0.4.4More information
ecl-zs31.3.3More information
guile2.2-reader0.6.3More information
dbus-test-runner19.04.0More information
rust-proc-macro-crate0.1.5More information
rust-cairo-sys-rs0.9.2More information
rust-win-crypto-ng0.2.1More information
foot1.5.4More information
go-github-com-xanzy-ssh-agent0.2.1More information
emacs-highlight-indent-guides0.8.5-0.c2c9de4More information
sbcl-flexichain1.5.1More information
rust-arrayvec0.4.12More information
rust-clang-sys0.11.1More information
python-pysnptools0.4.11More information
ecl-circular-streams0.1.0-1.e770badMore information
rust-locale-config0.3.0More information
rust-bencher0.1.5More information
rust-subtle1.0.0More information
rust-gtk0.8.1More information
ecl-specialized-function0.0.0-2.dee56d2More information
python-mamba0.11.2More information
rust-matrixmultiply0.2.3More information
rust-crossbeam-epoch0.7.2More information
rust-once-cell1.5.2More information
ktnef20.04.1More information
perl-digest-crc0.22More information
maven-artifact-transfer0.12.0More information
sbcl-cl-vectors0.1.5More information
makepasswd0.5.4-1.3545d57More information
rust-keccak0.1.0More information
rust-flate21.0.14More information
rust-hex-literal0.1.4More information
cl-green-threads0.3-1.fff5ebeMore information
perl-class-mix0.006More information
python-dropbox11.0.0More information
rust-peg-runtime0.6.2More information
r-ash1.0-15More information
rust-fs20.2.5More information
go-github-com-fsnotify-fsnotify1.4.9More information
grocsvs0.2.6.1-1.ecd956aMore information
ocaml4.07-sexplib0.11.0More information
rust-ucd-util0.1.7More information
guile2.2-gcrypt0.3.0More information
rust-proc-macro-error-attr0.4.12More information
emacs-vcsh0.4.4More information
python-eliot1.12.0More information
rust-float-cmp0.3.0More information
praat6.1.30More information
rust-darling-macro0.10.2More information
java-surefire-junit43.0.0-M4More information
rust-nix0.17.0More information
rust-pango0.9.1More information
rust-stb-truetype0.3.1More information
cl-deploy1.0.0-1.59fd497More information
pocketsphinx5prealphaMore information
ghc-websockets0.12.6.1More information
cl-utm-ups1.0-0.780f1d8More information
geary3.34.1More information
rust-cssparser-macros0.3.6More information
node-oop0.0.0-1.f9d87cdMore information
rust-tokio-executor0.1.7More information
ghc-csv0.1.2More information
rust-foreign-types-macros0.1.1More information
python-aiofiles0.5.0More information
r-adapsamp1.1.1More information
rust-pin-utils0.1.0More information
python2-ipython-cluster-helper0.6.4More information
guile3.0-chickadee0.6.0More information
r-bluster1.0.0More information
emacs-elegant-agenda-mode0.1.0-1.c72f42eMore information
rust-gfx0.18.2More information
hdf5-blosc1.0.0More information
kuserfeedback1.0.0More information
rust-phf-codegen0.8.0More information
r-binman0.1.2More information
perl-compress-bzip22.28More information
ecl-lquery3.2.1-1.8048111More information
xf86-video-dummy0.3.8More information
lua5.2-cqueues20171014More information
rust-gl-generator0.10.0More information
rust-vte0.3.3More information
guile2.2-guix1.2.0-8.7624ebbMore information
python-rq-scheduler0.10.0More information
cl-custom-hash-table0.3-1.f269831More information
libgnt2.14.0More information
ecl-quri0.1.0-2.b53231cMore information
dune-localfunctions-openmpi2.7.0More information
guile2.2-simple-zmq0.0.0-5.f8b7d81More information
python-jose3.2.0More information
rust-num0.3.0More information
esound0.2.41More information
r-stanheaders2.21.0-6More information
python-mastodon-py1.5.1More information
rust-h20.1.26More information
rust-insta0.8.1More information
node-color-name1.1.3More information
emacs-ivy-clipmenu0.0.1-1.d2071f2More information
rust-globset0.4.5More information
libgovirt0.3.6More information
python-hpack3.0.0More information
ghc-language-javascript0.7.0.0More information
node-mersenne0.0.4More information
rust-git20.9.1More information
rust-rpassword5.0.0More information
rust-bzip2-sys0.1.9+1.0.8More information
ecl-optima1.0-1.373b245More information
pass-tomb1.2More information
softhsm2.6.1More information
vo-aacenc0.1.3More information
rust-tokio-codec0.1.1More information
python-imageio2.8.0More information
rust-const-random-macro0.1.8More information
gnome-arcade0.218.2More information
rust-core-video-sys0.1.3More information
ecl-type-r0.0.0-1.83c89e3More information
lodepng20200215-1.48e5364More information
rust-miniz-sys0.1.12More information
hackrf2018.01.1-0.43e6f99More information
python-jsonplus0.8.0More information
rust-colored1.9.3More information
ruby-rubocop-performance1.7.1More information
pypy37.3.1More information
go-github-com-willf-bloom2.0.3More information
rust-syn0.13.11More information
ruby-slim4.1.0More information
rust-derive-new0.5.8More information
aspell-dict-sl0.50-0More information
fiano-fmap5.0.0More information
opencore-amr0.1.5More information
rust-napi0.5.1More information
node-statsd-parser0.0.4More information
xnotify0.7.3More information
rust-webpki-roots0.16.0More information
tesseract-engine20200615-2411More information
rust-wasm-bindgen-futures0.4.19More information
rust-tokio-rustls0.14.1More information
rust-cocoa0.18.5More information
rust-syslog3.3.0More information
chicken-agrep1.7More information
r-archivist2.3.4More information
python2-openpyxl2.6.4More information
rust-inotify0.7.1More information
rtl-43320.02More information
python-pytest-trio0.6.0More information
gnome-shell-extension-topicons-redux6More information
rust-tiff0.2.2More information
ocaml4.07-ppx-sexp-message0.11.0More information
rust-gfa0.6.2More information
sbcl-zpb-ttf1.0.3More information
atomicparsley20200701.154658.b0d6223More information
rust-stream-cipher0.3.0More information
rust-dlib0.4.1More information
rust-rayon0.8.2More information
rust-tokio-openssl0.3.0More information
korganizer20.04.1More information
cl-enchant0.0.0-1.6af162aMore information
python-autoflake1.3.1More information
liburing0.7More information
guile3.0-picture-language0.0.1-2.bf4600bMore information
rust-untrusted0.7.1More information
ghc-generic-random1.3.0.1More information
cl-fset1.3.2-1.6d2f9deMore information
rust-hostname0.1.5More information
python-pamela1.0.0More information
ruby-cucumber-create-meta1.0.0More information
xfe1.43.2More information
emacs-dired-git-info0.3.1-0.91d57e3More information
ruby-octokit4.18.0More information
r-iml0.10.0More information
rust-gzip-header0.3.0More information
vim-asyncrun2.7.5More information
ecl-hunchentoot1.2.38More information
gupnp-av0.12.11More information
rust-hashbrown0.5.0More information
ghc-protolude0.2.3More information
rust-byte-tools0.3.1More information
rust-derive-error-chain0.10.1More information
ruby-fakefs1.2.2More information
rust-rustc-serialize0.3.24More information
xarchiver0.5.4.16More information
libgadu1.12.2More information
emacs-promise1.1More information
ecl-maidenhead1.0-0.b756d23More information
r-grouped0.6-0More information
rust-tracing-attributes0.1.11More information
rust-md-50.9.0More information
rust-gettext-rs0.4.4More information
ecl-static-dispatch0.3More information
ocaml-lwt-react1.1.3More information
sbcl-skippy1.3.12-0.e456210More information
xdg-desktop-portal-gtk1.7.1More information
krfb20.04.1More information
rust-remove-dir-all0.5.3More information
rust-dirs-next1.0.2More information
flowee2020.04.1More information
libopenmpt0.5.4More information
rust-mio0.6.21More information
rust-block-buffer0.7.3More information
rust-iovec0.1.4More information
guile2.2-commonmark0.1.2More information
rust-measureme0.7.1More information
rapid-photo-downloader0.9.18More information
rust-tinytemplate1.1.0More information
emacs-auth-source-xoauth21.0More information
rust-servo-freetype-sys4.0.5More information
cl-napa-fft30.0.1-0.f2d9614More information
shelltestrunner1.9More information
guile2.2-sqlite30.1.2More information
ispell3.4.00More information
emacs-tramp2.5.0More information
cl-symbol-munger0.0.1-1.97598d4More information
kget20.04.1More information
greybird-gtk-theme3.22.12More information
rust-bytemuck-derive1.0.0More information
rust-aes-gcm0.6.0More information
cl-collectors0.1-1.13acef2More information
rust-tokio0.1.22More information
python-moto1.3.16.dev134More information
emacs-chronometrist0.5.6More information
rust-locale-config0.2.3More information
rust-racer-interner0.1.0More information
cl-xmls3.0.2-1.18546f0More information
rust-core-foundation0.6.4More information
python-apiron5.1.0More information
go-github-com-twpayne-go-shell0.3.0More information
guile2.2-email0.2.2More information
rust-minisign0.5.20More information
latex2html2020.2More information
ecl-com.gigamonkeys.binary-data0.0.0-0.22e9089More information
chatty0.1.17More information
rust-futures-util0.3.8More information
bats1.2.0More information
rust-hex-literal-impl0.2.1More information
r-adapr2.0.0More information
rust-serde-bytes0.11.5More information
java-surefire-common-java53.0.0-M4More information
rust-fallible-streaming-iterator0.1.9More information
sbcl-dbi0.9.4-1.31c4686More information
libebur1281.2.4More information
ghc-assoc1.0.1More information
perl-alien-sdl1.446More information
rust-phf0.8.0More information
python-signedjson1.1.1More information
ocaml4.07-core-kernel0.11.1More information
ecl-documentation-utils-extensions0.0.0-1.f67f8a0More information
xmltoman0.4More information
cl-mustache0.12.1More information
hunspell-dict-de20161207More information
rust-unicode-bidi0.3.4More information
perl-locale-maketext-lexicon1.00More information
rust-crossbeam-deque0.7.3More information
r-coverageview1.28.0More information
rust-thread-id2.0.0More information
ocaml4.07-gen0.5.2More information
rust-modifier0.1.0More information
r-ltm1.1-1More information
rust-object0.12.0More information
megacmd1.1.0More information
python-flufl-testing0.8More information
gash-utils0.1.0More information
rust-futures-preview0.3.0-alpha.17More information
libmediaart1.9.4More information
python-myhdl0.11More information
ecl-mt199371.1More information
queen-fr1.0More information
meanwhile1.1.1More information
rust-proc-macro20.3.8More information
cl-uffi2.1.2More information
rust-linkify0.4.0More information
sbcl-salza22.0.9More information
ocaml4.07-ppx-pipebang0.11.0More information
go-gopkg-in-warnings0.1.2More information
warsow-qfusion2.5-1.c4de15dMore information
fulcrum1.1.1More information
libavif0.8.4More information
go-github-com-google-go-cmp-cmp0.5.2More information
ruby-standard0.4.7More information
tng1.8.2More information
python2-gamera3.4.4More information
python-hypercorn0.10.2More information
python-d2to10.2.12.post1More information
corsix-th0.64More information
cl-inflector0.2-1.f1ab169More information
rust-sha20.9.2More information
go-github-com-alcortesm-tgz0.0.1-1.9c5fe88More information
python-tenacity6.1.0More information
emacs-persp-mode2.9.8More information
rust-tokio-trace-core0.2.0More information
sbcl-osicat0.7.0-1.de0c18aMore information
rust-crossterm-winapi0.4.0More information
r-brio1.1.0More information
mypaint2.0.1More information
python-gcovr4.2More information
go-golang-org-x-sync0.0.0-1.6e8e738More information
ghc-torrent10000.1.1More information
rust-error-chain0.11.0More information
rust-vecmath1.0.0More information
sbcl-defpackage-plus1.0-0.5492e27More information
feedbackd0.0.0+git20200527More information
ecl-sxql0.1.0-1.5aa8b73More information
ecl-cl-async-future0.4.4.1-1.ee36c22More information
python-docusign-esign3.1.0More information
python-purl1.5More information
python-ntlm-auth1.4.0More information
rust-sval0.5.2More information
rust-semver-parser0.9.0More information
go-github-com-pbnjay-memory0.0.0-1.974d429More information
rust-piston-window0.105.0More information
r-scuttle1.0.3More information
lcdf-typetools2.108More information
rust-structopt-derive0.4.5More information
rust-compiler-builtins0.1.26More information
emacs-unkillable-scratch1.0.0-0.b24c2a7More information
rust-napi-build0.2.1More information
rust-bzip20.4.1More information
ecl-regex1-1.fbc9a9fMore information
rust-num-traits0.2.12More information
rust-tokio-macros0.3.2More information
ecl-olc1.0-0.517e27fMore information
rust-core-foundation-sys0.7.2More information
rust-humantime1.3.0More information
python-citeproc-py0.5.1More information
dump10904.0More information
mercury20.06.1More information
librttopo1.1.0More information
ecl-calispel0.1-1.e9f2f9cMore information
python-pep5170.8.2More information
r-rstanarm2.21.1More information
python-forbiddenfruit0.1.3More information
rust-wasm-bindgen-test-macro0.2.50More information
rust-memchr1.0.2More information
get-iplayer3.26More information
rust-gdk-pixbuf0.7.0More information
rust-scoped-threadpool0.1.9More information
r-exactranktests0.8-31More information
rust-rustc-hash1.0.1More information
ghc-say0.1.0.1More information
python-validators0.14.2More information
ecl-lambda-fiddle1.0.0-1.d16bba5More information
reprotest0.7.15More information
python-bottleneck1.3.2More information
rust-strsim0.9.3More information
sbcl-cl-randist0.4.2More information
rust-try-from0.3.2More information
r-msmstests1.28.0More information
python-identify1.4.25More information
python-cfn-lint0.41.0More information
rust-scopeguard0.3.3More information
rust-wayland-server0.21.13More information
rust-png0.12.0More information
lua5.1-lgi0.9.2More information
ecl-skippy1.3.12-0.e456210More information
cl-array-utils1.1.1-0.f90eb90More information
rust-proptest-derive0.1.2More information
ecl-clump0.0.0-1.1ea4dbaMore information
python-pytest-forked1.1.3More information
emacs-imenu-list0.8More information
rust-fsevent-sys2.0.1More information
rtl8812au-aircrack-ng-linux-module5.6.4.2-3.62cb003More information
cl-contextl1.0.0-1.5d18a71More information
krdc20.04.1More information
emacs-svg-tag-mode0.1-1.87489d2More information
python-xlsxwriter1.3.7More information
sdl2-csB1-1.1a35564More information
rust-want0.2.0More information
emacs-habitica1.0-1.c45c602More information
rust-recycler0.1.4More information
rust-rpassword3.0.2More information
rust-digest0.6.2More information
python-cfgv3.1.0More information
r-boa1.1.8-2More information
rust-mach-o-sys0.1.1More information
libdc13942.2.6More information
rust-getopts0.2.21More information
ecl-zstd1.0-1.d144582More information
rust-hyper-tls0.3.2More information
rust-sct0.3.0More information
aws-sdk-cpp1.8.102More information
ruby-ptools1.3.5More information
straw-viewer0.1.2More information
rust-sysctl0.1.4More information
rust-crossbeam-deque0.6.3More information
cl-function-cache1.0.3More information
emacs-ddskk16.3More information
rust-tokio-sync0.1.6More information
rust-quickcheck0.4.1More information
python-blessed1.17.8More information
go-github-com-twpayne-go-vfs1.5.0More information
python-diceware0.9.6More information
dune-pdelab-openmpi2.7.0-git-476fe437More information
sbcl-zpng1.2.2More information
sbcl-cl-emb0.4.3-1.fd86521More information
libde2651.0.8More information
python-hstspreload2020.10.20More information
ruby-ruby-parser3.14.2More information
rust-ctor0.1.15More information
gnome-multi-writer3.35.90More information
r-deconstructsigs1.8.0More information
rust-nalgebra0.18.1More information
rust-ring0.13.5More information
rust-diffs0.3.0More information
rust-console-error-panic-hook0.1.6More information
python-django-mailman31.3.4More information
rust-winapi-util0.1.5More information
rust-clang-sys0.23.0More information
kpeoplevcard0.1More information
bcc0.15.0More information
python-sanic20.9.1More information
ghc-repline0.3.0.0More information
tsukundere0.2.0More information
sbcl-stumpwm-cpu0.0.1-2.920f8fcMore information
rust-rustc-ap-serialize654.0.0More information
rust-smithay-client-toolkit0.4.6More information
mspdebug0.25More information
rust-glob0.2.11More information
wev1.0.0More information
rust-ppv-lite860.2.8More information
rust-gif0.10.3More information
sbcl-antik-base0.0.0-1.e4711a6More information
rust-dogged0.2.0More information
offlate0.5More information
rust-rand-jitter0.1.4More information
rust-rctree0.3.3More information
ruby-pry-byebug3.9.0More information
sbcl-cl-autowrap1.0-1.ae846d6More information
rust-downcast-rs1.2.0More information
python-aws-xray-sdk2.6.0More information
rust-byteorder0.5.3More information
antlr44.8More information
mutest0.0.0More information
java-sonatype-aether-util1.7More information
go-github-com-chris-ramon-douceur0.2.0More information
eboard1.1.3More information
opensmtpd-filter-dkimsign0.2.arch2More information
rust-dialoguer0.6.2More information
librocket1.3.0.0More information
gnome-boxes3.36.6More information
rust-ntest0.3.3More information
inspekt3d0-0.703f52cMore information
ocaml4.07-ppx-typerep-conv0.11.1More information
rust-trust-dns-resolver0.11.1More information
python-pypandoc1.5More information
rust-lock-api0.4.1More information
emacs-browse-kill-ring2.0.0-0.1ef72ccMore information
libnl-python23.5.0More information
rust-ci-info0.3.1More information
rust-r2d20.8.9More information
rust-console0.11.3More information
rust-foreign-types0.5.0More information
rust-tokio-tls0.2.1More information
python-authres1.2.0More information
python-pytools2020.4More information
phodav2.5More information
guile2.2-picture-language0.0.1-2.bf4600bMore information
rust-tar0.4.26More information
r-gpfit1.0-8More information
go-github-com-muesli-reflow-wordwrap0.1.0More information
emacs-airline-themes1.8More information
dosage2.17More information
cl-plump2.0.0-1.34f890fMore information
rust-md5-asm0.4.3More information
guile2.2-squee0-1.7dcd22bMore information
cl-dissect1.0.0-1.cffd384More information
rust-deflate0.7.20More information
maven-aether-provider3.0More information
guile3.0-pfds0.3More information
soci4.0.1More information
ruby-mustache1.1.1More information
ruby-cucumber-messages12.2.0More information
r-mlr30.9.0More information
rust-libflate1.0.2More information
rust-gdk0.13.2More information
rust-byte-unit4.0.9More information
maven-enforcer-api3.0.0-M3More information
go-github-com-klauspost-cpuid1.2.3More information
rust-num-rational0.2.3More information
rust-parity-tokio-ipc0.4.0More information
ghc-transformers0.5.6.2More information
rust-ucd-parse0.1.3More information
rust-resize0.3.1More information
rust-regex-syntax0.3.9More information
rust-stdweb-internal-macros0.2.9More information
rust-x11-dl2.18.5More information
cl-lambda-fiddle1.0.0-1.d16bba5More information
rust-jpeg-decoder0.1.18More information
rust-gio0.9.1More information
perl-digest-md41.9More information
kmail20.04.1More information
rust-simba0.1.5More information
ecl-cl-mustache0.12.1More information
python-http-ece1.1.0More information
rust-webpki-roots0.20.0More information
r-isocodes2020.12.04More information
cl-clx-xembed0.1-1.a5c4b84More information
rust-pin-project1.0.2More information
ecl-fast-io1.0.0-2.603f490More information
rust-bit-vec0.4.4More information
chicken-iset2.2More information
ghc-yesod-test1.6.9More information
python-jsonpickle1.4.1More information
rust-rustversion1.0.2More information
guile2.2-sjson0.2.1More information
rust-peeking-take-while0.1.2More information
gtranslator3.36.0More information
ruby-fast-gettext2.0.3More information
sbcl-external-program0.0.6-1.5888b8fMore information
python2-fuzzywuzzy0.18.0More information
rust-tokio-rustls0.13.1More information
rust-log0.4.11More information
ecl-gtype0.1-2.2442e32More information
rust-intervaltree0.2.4More information
dune-uggrid2.7.0More information
r-icens1.62.0More information
r-rlinsolve0.3.1More information
python-asgiref3.2.10More information
rust-custom-derive0.1.7More information
rust-foreign-types-macros0.2.0More information
rust-brotli3.3.0More information
libratbag0.14More information
rust-darling0.10.2More information
emacs-haskell-snippets0.1.0-0.07b0f46More information
guile-zstd0.1.1More information
sbcl-clump0.0.0-1.1ea4dbaMore information
rust-ordermap0.3.5More information
cramfs-tools2.1More information
rust-winreg0.6.2More information
python-dateparser0.7.6More information
rust-pnacl-build-helper1.4.11More information
yoyo-migrations7.2.0More information
rust-ndk-macro0.2.0More information
libkdepim20.04.1More information
r-bsgenome-hsapiens-ncbi-grch381.3.1000More information
drm-tools1.1.33More information
go-github-com-google-renameio0.1.0More information
go-github-com-imdario-mergo0.3.10More information
emacs-dhall-mode0.1.3-1.484bcf8More information
rust-ed255191.0.3More information
guile-prometheus0-5.35dc26cMore information
rust-proptest0.3.4More information
emacs-org-superstar1.4.0More information
rust-ghash0.3.0More information
rust-tokio-mockstream1.1.0More information
r-survminer0.4.8More information
r-aws-s30.3.21More information
guile-ac-d-bus1.0.0-beta.0More information
ecl-cl-autowrap1.0-1.ae846d6More information
libxmlplusplus2.40.1More information
ecl-cl-reexport0.1-1.312f366More information
cl-cluffer0.0.0-1.4aad29cMore information
r-matrixgenerics1.2.0More information
r-argon20.2-0More information
lua-resty-core0.1.18More information
rust-semver-parser0.7.0More information
sbcl-postmodern1.19-1.74469b2More information
cl-spatial-trees0-1.81fdad0More information
python-tortoise-orm0.16.7More information
rust-rustc-ap-arena654.0.0More information
sbcl-png-read0.3.1-1.ec29f38More information
python-persistent4.6.4More information
purple-mattermost1.2-0.158ce20More information
rust-cargo-metadata0.6.4More information
ucd12.0.0More information
sbcl-clsql6.7.0More information
ecl-defpackage-plus1.0-0.5492e27More information
cogserver0-2.ec5f3b9More information
texlive-hyphen-pali51265More information
emacs-djvu1.1.1More information
ecl-cl-qrencode0.1.2More information
rust-serde-yaml0.8.11More information
gnome-online-miners3.34.0More information
ecl-xsubseq0.0.1-1.5ce430bMore information
go-github-com-hjson-hjson-go3.1.0More information
ecl-trivial-backtrace0.0.0-1.ca81c01More information
python2-pyatspi2.34.0More information
sbcl-constantfold0.1-1.0ff1d97More information
rust-bstr0.2.12More information
lure1.1More information
r-yardstick0.0.7More information
rust-wayland-commons0.23.6More information
ecl-local-time1.0.6-1.6279270More information
rust-wayland-sys0.23.6More information
mergerfs-tools0.0-2.480296eMore information
rust-libloading0.6.3More information
python-pyopengl3.1.5More information
rust-wayland-protocols0.23.6More information
libstemmer2.0.0More information
augustus1.4.1aMore information
xlsxio0.2.29More information
kdepim-apps-libs20.04.1More information
emacs-standard-dirs2.0.0More information
guile2.2-gnutls3.6.12More information
srt1.4.2More information
rust-rust-hawktracer-sys0.4.2More information
go-github-com-fogleman-gg1.3.0More information
rust-crossbeam-utils0.6.6More information
ecl-mmap1.0.0-0.ba2e98cMore information
ocaml4.07-lacaml11.0.5More information
perl-config-grammar1.13More information
ghc-scalpel0.6.0More information
python-speg0.3More information
nng1.3.2More information
axel2.17.10More information
python-ciso86012.1.3More information
rust-byteorder1.3.4More information
ecl-parse-js0.0.0-1.fbadc6029More information
emacs-plantuml-mode1.4.1More information
guile3.0-ics0.2.0More information
go-github-go-git5.1.0More information
ecl-jonathan0.1.0-1.1f448b4More information
chicken-datatype1.6More information
rust-url1.7.2More information
lua-resty-shell0.03More information
python-flake8-pyi20.5.0More information
sbcl-command-line-arguments2.0.0-1.fbac862More information
rust-rustc-rayon0.3.0More information
rust-pkg-config0.3.17More information
r-ggpmisc0.3.7More information
rust-libssh2-sys0.2.19More information
dune-subgrid2.7.0-git-2103a363More information
ecl-hu.dwim.defclass-star2015-07-09More information
autofs5.1.6More information
r-spatstat-utils1.17-0More information
rust-aes-soft0.4.0More information
r-parallelly1.21.0More information
rust-glutin-glx-sys0.1.5More information
zxing-cpp1.0.8More information
ecl-slime-swank2.26More information
sbcl-mito0.1-1.d3b9e37More information
rust-gio0.8.1More information
rust-mio-extras2.0.6More information
maven-filtering3.1.1More information
java-surefire-extensions-api3.0.0-M4More information
stb-sprintf1.09More information
rust-futures-channel-preview0.3.0-alpha.19More information
guile2.2-redis1.3.0More information
pegtl2.8.3More information
rust-scroll0.9.2More information
gmni0-0.d8f0870More information
rust-pocket-resources0.3.2More information
msopenh2641.2.1More information
ecl-float-features1.0.0More information
sbcl-asdf-finalizers0.0.0-1.7f537f6More information
rust-freetype-sys0.9.0More information
emacs-gcmh0.2.1More information
go-github-com-go-sql-driver-mysql1.5.0More information
sbcl-quantile-estimator0.0.1More information
emacs-typing1.1.4-0.a2ef25dMore information
sbcl-zstd1.0-1.d144582More information
qalculate-gtk3.8.0More information
rust-memsec0.6.0More information
python-pywatchman1.4.1More information
mjpegtools2.1.0More information
unicode-emoji12.0More information
python-aiosqlite0.12.0More information
rust-rust-base580.0.4More information
flyer-composer-cli1.0rc2More information
rust-uuid0.5.1More information
ecl-dbus20190408-1.24b452dMore information
r-inum1.0-1More information
rust-loom0.1.1More information
sbcl-eager-future20.0.0-1.54df8efMore information
rust-tokio-buf0.1.1More information
rust-ufmt-write0.1.0More information
phockup1.5.9More information
rust-predicates0.9.1More information
ecl-trivial-benchmark2.0.0-1.42d7673More information
cl-base320.1-1.8cdee06More information
rust-linked-hash-map0.4.2More information
texlive-microtype51265More information
python2-selectors22.0.1More information
rgbds0.4.2More information
python-arcp0.2.1More information
sieve-connect0.90More information
perl-lwp-useragent-cached0.08More information
anki2.1.16More information
ecl-cl-uglify-js0.1-1.429c5e1d8More information
rust-csv0.14.7More information
go-github-com-marten-seemann-chacha200.2.0More information
cl-command-line-arguments2.0.0-1.fbac862More information
reprepro5.3.0More information
rust-objc-test-utils0.0.2More information
ecl-static-vectors1.8.4More information
python-jinxed1.0.0More information
python-ldap32.7More information
cl-pzmq0.0.0-1.7c7390eMore information
python-prov2.0.0More information
rust-lalrpop0.19.1More information
guile3.0-colorized0.1More information
rust-phf-macros0.7.24More information
rust-directories-next1.0.3More information
atop2.5.0More information
nuspell3.1.2More information
python-xarray0.15.1More information
cl-emb0.4.3-1.fd86521More information
go-github-com-masterminds-semver3.1.0More information
cl-repl-utilities0.0.0-1.e0de9c9More information
ecl-hu.dwim.common2015-07-09More information
rust-fixed1.2.0More information
linux-libre-arm64-generic5.10.4More information
cl-agutil0.0.1-1.df188d7More information
emacs-dmenu0.1-0.e8cc9b2More information
perl-crypt-eksblowfish0.009More information
rust-blake20.8.1More information
rust-tempfile2.2.0More information
ocaml-dot-merlin-reader3.4.2More information
rust-once-cell0.1.8More information
ecl-mgrs1.0-0.0045546More information
rust-thread-id3.3.0More information
go-github-com-huandu-xstrings1.3.2More information
emacs-pabbrev4.2.1More information
python-trio0.17.0More information
rust-crc1.8.1More information
rust-strsim0.5.2More information
rust-flamer0.3.0More information
yggdrasil0.3.15More information
emacs-sqlite1.0-0.dad42b8More information
cl-nodgui0.0.5-1.bc59ed9More information
rust-treeline0.1.0More information
jfs_fsck-static1.1.15More information
pantheon-calculator1.5.5More information
bootterm0.1More information
emacs-chess2.0.5More information
rust-rustc-version0.2.3More information
rust-tokio-fs0.1.6More information
guile2.2-syntax-highlight0.1More information
rust-ntapi0.3.6More information
sbcl-do-urlencode0.0.0-1.1998464More information
python-trytond-product5.6.1More information
r-adaptalint0.2.4More information
lsscsi0.31More information
perl-lwpx-paranoidagent1.12More information
ruby-open-uri-cached0.0.5More information
raspi-arm-chainloader0.1More information
python-ipython-cluster-helper0.6.4More information
mkp224o1.5.0More information
python-websockets8.1More information
maven-jar-plugin3.2.0More information
intervaltree0.0.0-1.b90527fMore information
lib3ds1.3.0More information
guix-simplyblack-sddm-theme0.1More information
r-hardhat0.1.5More information
emacs-rocket-chat0.0.0-1.96fe27aMore information
rust-nom5.1.2More information
perl-test-object0.08More information
java-sonatype-aether-spi1.7More information
rust-stacker0.1.6More information
rust-libsqlite3-sys0.18.0More information
transcode1.1.7More information
rust-rusttype0.8.2More information
rust-memoffset0.5.3More information
rust-half1.6.0More information
python-pep-adapter2.0.5More information
emacs-erc-status-sidebar0.1-1.ea4189aMore information
python-rapidjson0.9.1More information
guile2.2-dsv0.3.0More information
rust-cordic0.1.4More information
rust-winapi-build0.1.1More information
rust-num0.1.42More information
emacs-dart-mode1.0.5More information
rust-servo-fontconfig-sys4.0.9More information
r-decon1.2-4More information
r-httpcode0.3.0More information
ghc-pointedlist0.6.1More information
cl-postmodern1.19-1.74469b2More information
rust-time-macros0.1.0More information
rust-memmap0.7.0More information
r-perfmeas1.2.1More information
rust-lazycell1.2.1More information
rust-textwrap0.11.0More information
sbcl-zs31.3.3More information
rust-xz20.1.6More information
dune-alugrid-openmpi2.7.0-git-81d35682More information
rtmpdump2.4-0.c5f04a5More information
r-workflows0.2.1More information
sbcl-glyphs0.0.0-1.1ff5714More information
python-can3.3.3More information
rust-datetime0.4.7More information
rust-tower-service0.3.0More information
rust-semver0.10.0More information
graphite-web1.1.7More information
rust-security-framework-sys0.3.3More information
go-github-com-spf13-afero1.2.2More information
rust-gir-format-check0.1.1More information
sbcl-check-it0.1.0-1.b79c910More information
rust-bindgen0.51.1More information
sbcl-cl-fastcgi0.2-1.d576d20More information
sbcl-gtwiwtg0.1.1More information
guile-filesystem0.1.0More information
rust-assert-cmd0.9.1More information
python-pyenchant2.0.0More information
emacs-helm-switch-to-repl0.1.1More information
ocaml4.07-pcre7.4.1More information
cl-mcclim0.9.7-1.04cc542More information
r-maxstat0.7-25More information
lean3.23.0More information
rust-walkdir2.3.1More information
ruby-colorize0.8.1More information
icedove78.6.0More information
kdiagram2.7.0More information
rust-syntex-errors0.58.1More information
java-hamcrest-library1.3More information
rust-failure0.1.7More information
photoflare1.6.6More information
tennix1.3.1More information
cl-zpb-exif1.2.4More information
faac1.30More information
python-pymediainfo4.1More information
rust-wasm-bindgen0.2.69More information
rust-fs-extra1.1.0More information
font-vazir22.1.0More information
rust-nodrop-union0.1.11More information
emacs-evil-escape3.14More information
python-trytond-purchase-request5.6.0More information
lsp-dsp-lib0.5.8More information
rust-ansi-term0.11.0More information
emacs-async-await1.1More information
rust-ansi-term0.12.1More information
rust-pathdiff0.1.0More information
ghc-project-template0.2.0.1More information
perl-dynaloader-functions0.003More information
hledger1.14.2More information
nyacc1.03.0More information
emacs-hlint-refactor-mode0.0.1-1.c4307f8More information
rust-scopeguard1.1.0More information
emacs-flymake-shellcheck0.1-0.78956f0More information
fntsample5.3More information
ghc-network-multicast0.3.2More information
emacs-hyperbole7.1.3More information
nyancat1.5.2More information
rust-stdweb0.4.20More information
r-hunspell3.0More information
emacs-selectrum3.0More information
python-legacy-api-wrap1.2More information
rust-widestring0.4.2More information
ecl-ltk0.992More information
rust-lzw0.10.0More information
sbcl-plump2.0.0-1.34f890fMore information
rust-alloc-no-stdlib2.0.1More information
rust-wasm-bindgen-macro0.2.69More information
guile3.0-fibers1.0.0More information
protonvpn-cli2.2.6More information
r-tam3.5-19More information
qemacs0.3.3More information
diff-so-fancy1.3.0More information
rust-rand-distr0.2.2More information
ghc-wai-app-static3.1.7.1More information
rust-psm0.1.10More information
python-pytest-services1.3.1More information
python-lcov-cobertura1.6More information
python-py-cpuinfo5.0.0More information
u-boot-qemu-riscv64-smode2020.10More information
glabels3.4.1More information
rust-packed-struct0.3.0More information
clojure-tools-cli0.4.2More information
rust-regex0.2.11More information
opensbi-sifive-fu5400.8More information
rust-structopt-derive0.2.18More information
ecl-numcl0.1.0-2.3e8d40bMore information
emacs-html-to-hiccup1-0.50a52e2More information
npiet1.3fMore information
perl-perlio-gzip0.20More information
presentty0.2.1More information
rust-gtk-rs-lgpl-docs0.1.18More information
b40.6.1More information
hunspell-dict-it-it6.4.6.2More information
ecl-chunga1.1.7More information
emacs-next-pgtk28.0.50-0.d46a223More information
ocaml4.07-base0.11.1More information
go-minisign0.1.0More information
rust-rand0.5.6More information
rust-piston2d-graphics0.35.0More information
rust-rand-xoshiro0.3.0More information
r-matrixcalc1.0-3More information
rust-errno0.2.4More information
rust-pcre20.2.3More information
rust-futures-io0.3.8More information
ocaml4.07-ppxlib0.6.0More information
rust-malloc-buf0.0.6More information
sbcl-hu.dwim.defclass-star2015-07-09More information
java-eclipse-aether-util1.0.2More information
ecl-trivial-download0.3-1.d247206More information
r-optimx2020-4.2More information
guile-eris0.2.0More information
rust-metadeps1.1.2More information
firebird3.0.7More information
rust-jemallocator0.3.2More information
cl-qmynd1.0.0-1.7e56dafMore information
r-snplocs-hsapiens-dbsnp144-grch370.99.20More information
python-pytest-lazy-fixture0.6.3More information
rust-raw-cpuid8.1.2More information
python-filelock3.0.12More information
ecl-cl-cookie0.9.10-1.cea55aeMore information
r-gamm40.2-6More information
go-github.com-ulikunitz-xz0.5.8More information
emacs-icomplete-vertical0.1More information
ghc-text-conversions0.3.0More information
emacs-evil-goggles0.0.1-0.08a2205More information
ecl-cl-csv1.0.6-2.68ecb5dMore information
minidjvu0.8More information
dune-uggrid-openmpi2.7.0More information
sbcl-simple-neural-network3.1More information
python-baycomp1.0.2More information
guile-jsonld1.0.2More information
go-github-com-aws-sdk1.35.2More information
python-dpath2.0.1More information
emacs-python-black1.0.0More information
sbcl-trivial-download0.3-1.d247206More information
rust-unicase2.6.0More information
hunspell-dict-pl20200327More information
r-zvcv2.1.0More information
rust-hashlink0.6.0More information
ruby-coveralls0.8.23More information
go-github-com-surgebase-porter20.0.0-1.56e4718More information
emacs-flycheck-elm0-0.1b60050More information
gnome-initial-setup3.32.1More information
dsfmt2.2.3More information
memphis0.2.3More information
perl-pdf-api22.038More information
emacs-flycheck-ledger0.5More information
rust-smallvec1.4.1More information
cl-supertrace0.1.0-1.66d22c3More information
rust-serde0.9.15More information
rust-wayland-protocols0.21.13More information
gnome-builder3.36.1More information
emacs-powershell0.3-0.d1b3f95More information
debianutils4.11.1More information
rust-pango0.7.0More information
rust-serde-cbor0.11.1More information
rust-heapsize-plugin0.1.6More information
rust-thrussh-libsodium0.1.4More information
lure-it1.1More information
rust-dirs2.0.2More information
rust-cairo-rs0.8.1More information
chessx1.5.4More information
ecl-prometheus0.4.1More information
rust-pulse0.5.3More information
rust-libgit2-sys0.12.17+1.1.0More information
go-github-com-subosito-gotenv1.2.0More information
rust-piston-graphics-api-version0.2.0More information
t4k-common0.1.1More information
lua-ossl20170903More information
rust-lalrpop0.17.2More information
rust-ansi-colours1.0.1More information
rust-simd-helpers0.1.0More information
python2-rfc65550.0.0-1.1a181b4More information
rust-getch0.2.1More information
rust-pretty-assertions0.6.1More information
ghc-cassava-megaparsec2.0.1More information
sbcl-cl-colors20.2.1-1.795aedeMore information
rust-vergen3.1.0More information
rust-crossbeam-channel0.3.9More information
belle-sip1.6.3More information
rust-wasm-bindgen-backend0.2.69More information
sbcl-napa-fft30.0.1-0.f2d9614More information
kmime20.04.1More information
drawpile2.1.17-1.ed1a75debMore information
r-gaston1.5.7More information
python-pytest-black0.3.8More information
rust-as-slice0.1.4More information
mrg0.1.4More information
lua5.2-lgi0.9.2More information
guile2.2-parted0.0.4More information
sbcl-type-r0.0.0-1.83c89e3More information
r-sem3.1-11More information
rust-semver0.9.0More information
libnatpmp20150609More information
rust-tokio-rustls0.9.4More information
rust-genmesh0.6.2More information
cfunge0.9.0More information
ecl-pngload2.0.0More information
python-git-multimail1.5.0.post1More information
liblouis3.15.0More information
glances3.1.4More information
rust-ring0.16.12More information
font-catamaran0.0.0-1.7559b49More information
go-github-com-google-goterm0.0.1-1.fc88cf8More information
rust-docopt0.7.0More information
emacs-company-coq1.0.1More information
dune-typetree-openmpi2.7.0More information
libfreenect-examples0.6.1More information
r-calculus0.2.1More information
python-migen0.9.2More information
python-cli-helpers2.0.1More information
ecl-opticl0.0.0-0.e868441More information
cl-zpng1.2.2More information
gssdp1.2.3More information
libdmapsharing3.9.10More information
directfb1.7.7More information
go-etcd-io-bbolt1.3.5More information
rust-redox-users0.3.4More information
emacs-cort3.0.5-1.495c397More information
peek1.5.1More information
rust-rustc-ap-graphviz654.0.0More information
routino3.3.2More information
sbcl-uuid2012.12.26-1.e7d6680More information
r-dcv0.1.1More information
rust-cookie-store0.12.0More information
boost-python21.72.0More information
goxel0.10.7More information
ecl-cl-webkit2.4-10.5ce3ea1More information
rust-cgmath0.17.0More information
rust-tokio-process0.2.4More information
ruby-hocon1.3.1More information
guile2.2-pfds0.3More information
lure-fr1.1More information
rust-memchr0.1.11More information
hddtemp0.3-beta15More information
cl-glyphs0.0.0-1.1ff5714More information
rust-dtoa-short0.3.2More information
rust-tracing-fmt0.1.1More information
dragonfly-reverb3.2.1More information
r-rsample0.0.8More information
python-uvloop0.14.0More information
cl-autowrap1.0-1.ae846d6More information
rust-utf8parse0.1.1More information
tuxmath2.0.3More information
rust-crc32fast1.2.0More information
rust-cmake0.1.44More information
ruby-polyglot0.3.5More information
rust-rustc-test0.3.0More information
rust-hex0.2.0More information
rust-scroll-derive0.9.5More information
rust-polyval0.4.0More information
rust-arrayvec0.5.1More information
rust-try-lock0.2.2More information
kcov38More information
qoauth2.0.0More information
emacs-erc-scrolltoplace0.1.0More information
chipmunk7.0.3More information
go-github-com-muesli-termenv0.7.0More information
rust-proc-macro-error0.4.12More information
rust-proc-macro-error1.0.4More information
guile2.2-hashing1.2.0More information
rust-rand-isaac0.1.1More information
rust-crypto-mac0.7.0More information
perl-config-inifiles3.000002More information
ableton-link3.0.2More information
r-bridgesampling1.0-0More information
python-flufl-lock4.0More information
ecl-cl-abnf0.0.0-1.ba1fbb1More information
python-pyprind2.11.2More information
cl-prometheus0.4.1More information
rust-precomputed-hash0.1.1More information
go-golang-org-rainycape-unidecode0.0.0-1.cb7f23eMore information
kleopatra20.04.1More information
armips0.11.0More information
rust-serde-test1.0.113More information
sbcl-clss0.3.1-1.2a8e861More information
rust-wasm-bindgen-shared0.2.69More information
musl-cross0.1-3.a8a6649More information
rust-model0.1.2More information
libofa0.9.3More information
rust-image0.22.5More information
java-eclipse-aether-spi1.0.2More information
rust-docmatic0.1.2More information
python-kerberos1.3.0More information
libnma1.8.28More information
r-brglm0.7.1More information
java-javaparser3.16.1More information
lure-es1.1More information
guile-srfi-1450.0.1More information
emacs-gdscript-mode1.4.0More information
emacs-extmap1.1.1More information
r-forge0.2.0More information
python-pytest-ordering0.6More information
sbcl-nodgui0.0.5-1.bc59ed9More information
rust-capnp-futures0.10.1More information
python-blurhash1.1.4More information
guile2.2-minikanren20150424.e844d85More information
rust-env-logger0.5.13More information
rust-sha-10.9.1More information
r-sparsematrixstats1.2.0More information
python-aiounittest1.3.1More information
rust-stable-deref-trait1.2.0More information
rust-predicates-tree1.0.0More information
ecl-plump2.0.0-1.34f890fMore information
python-pytest-toolbox0.4More information
ghc-mtl-compat0.2.2More information
rust-cachedir0.1.1More information
python-click-plugins1.1.1More information
stumpish0.0.1-2.920f8fcMore information
rust-fixedbitset0.1.9More information
go-github-com-golang-freetype0.0.0-1.e2365dfMore information
rust-stfu80.2.4More information
rust-lock-api0.3.4More information
rust-wasm-bindgen-test0.3.19More information
python-pymacaroons0.13.0More information
maven-surefire-plugin3.0.0-M4More information
perl-sql-abstract-classic1.91More information
ibus-libhangul1.5.3More information
r-waldo0.2.3More information
bcg7291.1.1More information
ecl-cl-base320.1-1.8cdee06More information
rust-locale0.2.2More information
rkdeveloptool1.3-0.6e92ebcMore information
ecl-rfc23880.0.0-1.591bcf7More information
rust-metal0.14.0More information
ecl-mk-string-metrics0.1.2More information
r-rgreat1.22.0More information
rust-docopt0.8.3More information
gnome-weather3.34.0More information
ecl-1am0.0-1.8b1da94More information
spatialite-tools5.0.0More information
ecl-gtwiwtg0.1.1More information
rust-wait-timeout0.2.0More information
python-secretstorage3.1.2More information
rust-demo-hack0.0.5More information
cl-external-program0.0.6-1.5888b8fMore information
r-ztype0.1.0More information
python-aionotify0.2.0More information
rust-rust-argon20.7.0More information
cl-trivial-shell0.2.0-1.e02ec19More information
ocaml4.07-ppx-tools5.1+4.06.0More information
bzflag2.4.20More information
haproxy2.1.7More information
rust-doc-comment0.3.1More information
r-ppcor1.1More information
ghc-lucid2.9.12More information
ecl-cl-log1.0.1More information
go-github-com-tv42-httpunix0.0.0-0.2ba4b9cMore information
sbcl-stumpwm-wifi0.0.1-2.920f8fcMore information
rust-quickcheck-macros0.8.0More information
xstow1.0.2More information
ocaml4.07-core0.11.3More information
rust-regex-syntax0.4.2More information
sbcl-maidenhead1.0-0.b756d23More information
guile3.0-wisp1.0.3More information
rust-selectors0.22.0More information
rust-criterion0.2.11More information
rust-tempfile3.1.0More information
python-poetry-core1.0.0More information
rust-gobject-sys0.10.0More information
yeganesh2.4More information
rust-euclid0.20.10More information
hexyl0.8.0More information
python-pytelegrambotapi3.7.4More information
python-mujson1.4More information
rust-markup5ever0.10.0More information
sbcl-clamp0.3-1.02b8f39More information
r-kmsurv0.1-5More information
msamr1.1.3More information
ecl-collectors0.1-1.13acef2More information
rust-pulldown-cmark0.0.8More information
ecl-zpb-exif1.2.4More information
raspi-arm64-chainloader0.1More information
emacs-csv2.1More information
rust-autocfg1.0.1More information
maven-shared-io3.0.0More information
ecl-cl-xmlspam0.0.0-1.ea06abcMore information
ghc-dav1.3.4More information
rust-pretty-assertions0.4.1More information
ganeti3.0.0beta1-24-g024cc9fa2More information
emacs-rg2.0.2More information
r-rfast2.0.1More information
epson-inkjet-printer-escpr1.7.8More information
gstreamer-docs1.18.1More information
guile-irc0.3.0-0.375d3bdMore information
emacs-treemacs-extra2.8More information
python-watchdog0.9.0More information
python-certipy0.1.3More information
rust-syntect4.4.0More information
trezord-udev-rules0.0.0-0.bff7fdfMore information
wofi1.2.3More information
ocaml4.07-utop2.4.3More information
emacs-windsize0.1-1.62c2846More information
quickjs2020-11-08More information
python-lazr-delegates2.0.4More information
python-dpkt1.9.4More information
rust-bitflags1.2.1More information
rust-escargot0.3.1More information
sbcl-clx-xembed0.1-1.a5c4b84More information
ecl-cl-inflector0.2-1.f1ab169More information
notification-daemon3.20.0More information
rust-regex-syntax0.5.6More information
python-black-macchiato1.3.0More information
numix-gtk-theme2.6.7More information
texlive-libertine51265More information
rust-percent-encoding2.1.0More information
ecl-cl-str0.19More information
sbcl-cl-log1.0.1More information
ecl-introspect-environment0.1-1.fff42f8More information
go-github-com-gorilla-securecookie1.1.1More information
ecl-3bz0.0.0-0.d611908More information
libdatrie0.2.12More information
nicotine+2.1.2More information
ecl-iolib0.8.3-2.7f5ea3aMore information
sbcl-make-hash1.0.2-1.ae0909cMore information
linux-libre-riscv64-generic5.10.4More information
rust-generic-array0.8.3More information
rust-regex0.1.80More information
python-venusian3.0.0More information
sbcl-cl-z851.0-1.85b3951More information
ruby-spinach0.11.0More information
rust-openssl0.10.30More information
breeze5.19.5More information
kanshi1.1.0More information
perl-crypt-passwdmd51.40More information
libcloudproviders0.3.1More information
ecl-datafly0.1-1.adece27More information
rtaudio5.1.0More information
r-spatstat-data1.5-2More information
p2c2.01More information
sbcl-cl-qrencode0.1.2More information
rust-unicode-xid0.1.0More information
python-pytest-check-links0.3.0More information
fna19.12.01More information
go-github-com-emersion-go-imap1.0.0More information
rust-subtle2.2.3More information
sbcl-trivial-package-local-nicknames0.2More information
rust-jemalloc-sys0.3.2More information
rust-rand-pcg0.1.2More information
rust-pbkdf20.3.0More information
rust-glutin0.22.0-alpha5More information
ruby-binding-of-caller0.8.0More information
r-mscoreutils1.2.0More information
rust-gl-generator0.13.1More information
cl-lquery3.2.1-1.8048111More information
emacs-org-beautify-theme0.4More information
rust-rustc-ap-rustc-lexer654.0.0More information
chicken-srfi-140.2.1More information
rust-utf8-ranges0.1.3More information
ecl-cl-who1.1.4-1.2c08caaMore information
python-restructuredtext-lint1.3.0More information
ecl-fset1.3.2-1.6d2f9deMore information
rust-st-map0.1.4More information
rust-hyper0.12.35More information
perl-math-vecstat0.08More information
libflame5.2.0More information
cl-datafly0.1-1.adece27More information
rust-tokio0.3.5More information
rust-openssl-probe0.1.2More information
rust-heapsize0.4.2More information
rust-darling-core0.10.2More information
go-github-com-twpayne-go-vfsafero1.0.0More information
zrtpcpp4.6.6More information
ecl-misc-extensions3.3-1.101c051More information
ruby-text-hyphen1.4.1More information
sbcl-numcl0.1.0-2.3e8d40bMore information
r-infer0.5.3More information
emacs-interleave1.4.0More information
rust-image0.23.6More information
sbcl-lw-compat1.0.0-1.aabfe28More information
r-imputeyn1.3More information
komikku0.24.0More information
dump0.4b46More information
sbcl-stumpwm-numpad-layouts0.0.1-2.920f8fcMore information
guile3.0-commonmark0.1.2More information
ghc-regex-pcre0.94.4More information
guile2.2-mailutils3.10More information
rust-image0.20.1More information
cl-async-future0.4.4.1-1.ee36c22More information
sushi3.32.1More information
emacs-no-littering1.2.0More information
icedove-wayland78.6.0More information
ruby-ffi-rzmq2.0.7More information
python-pynndescent0.4.8More information
rust-time0.1.43More information
rust-ron0.4.2More information
rust-aho-corasick0.5.3More information
dovecot-pigeonhole0.5.11More information
rust-trust-dns-native-tls0.19.5More information
opensurge0.5.1.2More information
kicad-i18l5.1.6More information
go-github-com-felixge-httpsnoop1.0.1More information
libestr0.1.11More information
r-iheatmapr0.5.1More information
rust-pest-generator2.1.1More information
sbcl-clawk4-1.3a91634More information
go-github-com-mitchellh-copystructure1.0.0More information
sbcl-clx-truetype0.0.1-1.c6e10a9More information
r-mlr3misc0.6.0More information
rust-defmac0.1.3More information
rcm1.3.3More information
rust-pin-project-auxiliary-macro0.0.0More information
rust-http0.2.1More information
sbcl-kebab0.1-1.e7f7764More information
rust-itoa0.1.1More information
python-git-hammer0.3.1More information
rust-crossbeam-epoch0.8.2More information
rust-syn0.14.9More information
rust-napi-derive0.5.1More information
rust-oorandom11.1.0More information
ecl-xmls3.0.2-1.18546f0More information
r-semplot1.1.2More information
sbcl-cl-libuv0.1.6-1.32100c0More information
rust-num-bigint0.1.44More information
cl-quicksearch0.01.04-1.fb02ecfMore information
emacs-org-fragtog0.3.0More information
metamath0.193More information
emacs-burly0.1More information
rust-pin-project-lite0.2.0More information
go-github-com-sergi-go-diff1.1.0More information
rust-embed-resource1.3.1More information
rust-caps0.3.3More information
python-wsproto0.15.0More information
lua-resty-lrucache0.10More information
guile-torrent0.1.3More information
belr0.1.3More information
rust-piston-gfx-texture0.40.0More information
nmrpflash0.9.14More information
rust-abomonation0.7.3More information
sbcl-parachute1.1.1-0.ca04dd8More information
ecl-ieee-floats20170924-1.566b51aMore information
rust-errno-dragonfly0.1.1More information
perl-crypt-des2.07More information
ghc-inspection-testing0.4.2.2More information
ecl-clss0.3.1-1.2a8e861More information
ghc-nonce1.0.7More information
python-easygui0.98.1More information
r-janeaustenr0.1.5More information
python-covdefaults1.1.0More information
libportal0.3-1.bff3289More information
rust-jemallocator0.1.9More information
python-trio-typing0.5.0More information
cl-sxql0.1.0-1.5aa8b73More information
osinfo-db20201011More information
rust-crossbeam-channel0.4.2More information
rust-libm0.1.4More information
emacs-shell-pop0.64-0.4b43940More information
rust-gdk-sys0.10.0More information
u-boot-sifive-fu5402020.10More information
cl-clamp0.3-1.02b8f39More information
astromenace1.4.1More information
kalarmcal20.04.1More information
python-asynctest0.13.0More information
go-github-com-kylelemons-godebug1.1.0More information
ruby-deep-merge1.2.1More information
sbcl-claw-support1.0.0More information
wf-recorder0.2.1More information
rust-unicode-width0.1.8More information
piper0.5.1More information
rust-unicase1.4.2More information
rust-iso86010.1.1More information
sbcl-cl-project0.3.1-1.1511070More information
emacs-emacsql-sqlite31.0.2More information
rust-quantiles0.7.1More information
fdroidcl0.5.0More information
rust-vswhom0.1.0More information
ssss0.5More information
rust-peg0.6.2More information
rust-better-panic0.2.0More information
emacs-helm-clojuredocs0.3-1.5a7f0f2More information
emacs-kanji1.0-0.5e9d5b7More information
mblaze1.0More information
vo-amrwbenc0.1.3More information
rust-environment0.1.1More information
python-rstr2.2.6More information
rust-synstructure0.10.2More information
rust-wasm-bindgen-macro-support0.2.69More information
python-qtpy1.9.0More information
sbcl-cl-csv1.0.6-2.68ecb5dMore information
rust-syntex-pos0.58.1More information
rust-typemap0.3.3More information
rust-system-deps1.3.2More information
rust-ufmt0.1.0More information
ocaml4.07-parsexp0.11.0More information
r-stam0.0-1More information
guile-packrat0.1.1More information
rust-dialoguer0.3.0More information
gdc-toolchain10.2.0More information
linux-libre-arm64-generic5.4.86More information
rust-winreg0.7.0More information
emacs-flycheck-guile0.2More information
sdcv0.5.3More information
rust-itertools0.8.2More information
emacs-polymode-markdown0.2.2More information
gopkg-in-errgo-fmt-errors2.1.0More information
node-util-deprecate1.0.2More information
r-nbconvertr1.3.2More information
rust-partial-io0.2.5More information
rust-log0.3.9More information
rust-fuchsia-zircon0.3.3More information
rust-ord-subset3.1.1More information
cl-pdf0-1.752e337More information
rust-tokio-tcp0.1.3More information
ecl-simple-neural-network3.1More information
emacs-helm-wordnut0.1-1.9681a95More information
rust-findshlibs0.5.0More information
rust-parking-lot0.11.0More information
r-spectrum1.1More information
emacs-fd0.1.0More information
python-plaster1.0More information
queen-de1.0More information
xmoto0.6.1More information
emacs-dracula-theme1.7.0More information
python-osc1.7.4More information
tarsplitter2.2.0More information
rust-wild2.0.4More information
gromacs2020.2More information
ghc-text-short0.1.3More information
gnome-shell-extension-clipboard-indicator34More information
guile-xapian0.1.0More information
sbcl-stumpwm-mem0.0.1-2.920f8fcMore information
rust-toml0.4.10More information
emacs-auto-sudoedit1.0.0More information
djvusmooth0.3More information
emacs-mwim0.4-0.b4f3edbMore information
rust-encoding-rs-io0.1.7More information
java-opening-hours-parser0.21.4More information
squid4.13More information
gnuradio-iqbalance0.38.1More information
rust-mac0.1.1More information
rust-derive-builder-core0.2.0More information
emacs-4clojure0.2.1-1.4eccf8cMore information
rust-rls-span0.5.2More information
python-querystring-parser1.2.4More information
rust-grep-regex0.1.8More information
libtifiles21.1.7More information
rust-rustc-demangle0.1.16More information
wslay1.1.1More information
ocaml4.07-jane-street-headers0.11.0More information
rust-gdk-pixbuf0.8.0More information
wolf-shaper0.1.8More information
emacs-janet-mode0.1.0-1.2f5bcabMore information
rust-tokio-socks0.2.2More information
rust-version-check0.9.2More information
jtbl1.1.6More information
rust-bit-field0.10.1More information
ecl-uuid2012.12.26-1.e7d6680More information
rust-serde-codegen0.4.3More information
cdrdao1.2.4More information
cl-uuid2012.12.26-1.e7d6680More information
rust-target-build-utils0.3.1More information
rust-podio0.1.7More information
python-brotli1.0.9More information
bat0.17.1More information
silc-toolkit1.1.12More information
poly2tri-c0.1.0More information
libtimidity0.2.6More information
emacs-boon1.1More information
cl-change-case0.1.0-1.5ceff2aMore information
emacs-quickrun2.3.1More information
yakuake20.12.0More information
rust-nettle7.0.0More information
idesk0.7.5More information
rust-ryu1.0.3More information
python-pyotp2.4.1More information
rust-hyper-tls0.4.3More information
python-random21.0.1More information
python-robot-detection0.4More information
ghc-llvm-hs-pure9.0.0More information
dolphin20.04.1More information
python2-ipyparallel6.2.4More information
rust-rand-pcg0.2.1More information
rust-rawslice0.1.1More information
rust-cssparser0.27.2More information
ecl-command-line-arguments2.0.0-1.fbac862More information
barrage1.0.5More information
dolphin-plugins20.04.1More information
ecl-clamp0.3-1.02b8f39More information
exercism3.0.13More information
linphoneqt4.1.1More information
kincidenceeditor20.04.1More information
cl-misc-extensions3.3-1.101c051More information
sbcl-static-dispatch0.3More information
ocaml4.07-expect0.0.6More information
rust-const-fn0.4.2More information
c-blosc1.18.1More information
texlive-inconsolata51265More information
guile3.0-gi0.3.0More information
python-dparse0.5.1More information
tap-lv20.0-1.cab6e0dMore information
rust-unreachable1.0.0More information
rust-encoding-index-japanese1.20141219.5More information
rust-colored1.9.1More information
go-github-com-arceliar-phony0.0.0-0.d0c6849More information
rust-wasi0.5.0More information
rust-rustls0.16.0More information
libpepadapter2.0.2More information
presage0.9.1More information
rust-term-grid0.1.7More information
rust-crypto-mac0.4.0More information
kopete20.04.1More information
rust-buffered-reader0.9.0More information
widelands21More information
cl-hu.dwim.common2015-07-09More information
bash-ctypes1.2More information
superstarfighter0.6.4More information
rust-float-cmp0.6.0More information
kmailcommon20.04.1More information
python-shellescape3.8.1More information
rust-user32-sys0.2.0More information
r-rcppziggurat0.1.6More information
rust-backtrace0.3.35More information
rust-json0.11.15More information
fcitx5-chinese-addons5.0.2More information
python-check-manifest0.37More information
rust-digest0.8.1More information
python-argon2-cffi20.1.0More information
ecl-blackbird0.5.2-1.d361f81More information
edirect-go-programs13.3.20200128More information
rust-palette-derive0.5.0More information
rust-pretty-assertions0.2.1More information
rust-xml-rs0.7.0More information
python-pytest-pycodestyle2.0.0More information
rust-trust-dns-https0.19.5More information
bcm28351.64More information
cl-gtwiwtg0.1.1More information
r-oai0.3.0More information
python-path-and-address2.0.1More information
go-gopkg-in-ini-v11.56.0More information
rust-signal-hook0.1.13More information
nyxt2-pre-release-5More information
rust-pest2.1.1More information
r-clusterr1.2.2More information
flamp2.2.05More information
rust-term0.5.2More information
rust-proc-macro-hack0.4.2More information
rust-humantime2.0.1More information
xcb-imdkit1.0.1More information
libraqm0.7.1More information
go-golang-org-x-oauth20.0.0-1.0f29369More information
gdl-minimal3.34.0More information
python-minio6.0.0More information
cl-bordeaux-fft1.0.1-0.4a1f560More information
cl-asdf-finalizers0.0.0-1.7f537f6More information
qpdfview0.4.18More information
watchexec1.14.0More information
maven-dependency-tree3.0.1More information
pulseaudio-qt1.2More information
azimuth1.0.3More information
ruby-chunky-png1.3.14More information
didjvu0.9More information
confclerk0.6.4More information
rust-js-sys0.3.46More information
r-aws-signature0.6.0More information
rnp0.13.1-0.203224fMore information
python-nose-random1.0.0More information
ecl-cl-syntax0.0.3More information
ocaml4.09-csexp1.3.2More information
libksieve20.04.1More information
emacs-pfuture1.9More information
ruby-minitest-global-expectations1.0.1More information
openfortivpn1.15.0More information
openresolv3.10.0More information
rust-cocoa0.19.1More information
ttyebus-linux-module1.5-0.fe4332aMore information
guile2.2-wisp1.0.3More information
ecl-cl-sqlite0.2.1More information
maven-file-management3.0.0More information
python-trytond-analytic-account5.6.0More information
sbcl-array-operations0.0.0-0.75cbc3bMore information
rust-nodrop0.1.14More information
rust-grep-matcher0.1.4More information
emacs-org-edna1.1.2More information
ecl-osicat0.7.0-1.de0c18aMore information
drip0.2.4-1.a4bd00dMore information
emacs-exiftool0.3.2More information
r-scatterpie0.1.5More information
ecl-zpng1.2.2More information
rust-fluid-attributes0.4.0More information
rust-syntect3.3.0More information
rust-pure-rust-locales0.5.3More information
gmnisrv0-1.d484ba0More information
python-forex-python1.5More information
webrtc-audio-processing0.3.1More information
python-port-for0.4More information
glibc-utf8-locales-2.292.29More information
rust-gdk0.12.1More information
rust-security-framework1.0.0More information
ecl-png-read0.3.1-1.ec29f38More information
rust-sourcefile0.1.4More information
sequoia0.20.0More information
rust-ascii-canvas2.0.0More information
rust-bytemuck1.4.0More information
ghc-pattern-arrows0.0.2More information
rust-bytes0.6.0More information
rust-servo-fontconfig0.4.0More information
facter4.0.47More information
xwallpaper0.6.5More information
liblouisutdml2.9.0More information
rust-generic-array0.13.2More information
emacs-highlight0.0.0More information
rust-miow0.3.6More information
font-juliamono0.025More information
libccd2.1More information
python-sniffio1.1.0More information
rust-ucd-trie0.1.2More information
rust-md-50.8.0More information
ruby-regexp-parser2.0.0More information
cl-ascii-table0.0.0-1.d9f5e77More information
xa2.3.11More information
rust-crossterm0.13.3More information
ronn0.7.3More information
ruby-character-set1.4.0More information
rust-build-const0.2.1More information
python-canonicaljson1.4.0More information
rust-takeable-option0.4.0More information
rust-security-framework0.2.4More information
rust-syntex0.58.1More information
guile2.2-config0.4.2More information
stb-rect-pack1.00More information
rust-rand-hc0.1.0More information
rust-pistoncore-window0.44.0More information
rust-dotenv0.15.0More information
java-surefire-booter3.0.0-M4More information
python-rcssmin1.0.6More information
kpimtextedit20.04.1More information
ocaml4.07-compiler-libs0.11.0More information
ecl-checkl0.0.0-1.8032880More information
r-mlr3tuning0.5.0More information
rust-wide0.4.6More information
rust-syn-test-suite0.0.0+testMore information
rust-serial-test-derive0.1.0More information
rust-plist0.4.2More information
kxstitch2.2.0More information
veusz3.3.1More information
gnome-shell-extension-appindicator33More information
r-fourcseq1.24.0More information
rust-bincode0.8.1More information
rust-parking-lot-core0.6.2More information
buku4.4More information
rust-markup5ever0.9.0More information
rust-tokio-openssl0.4.0More information
rust-regex-syntax0.6.21More information
sbcl-utm-ups1.0-0.780f1d8More information
git-open2.1.0More information
rust-security-framework-sys0.2.4More information
ruby-ffi-rzmq-core1.0.7More information
java-asm-tree8.0.1More information
rust-lazy-static1.4.0More information
rust-reqwest0.9.24More information
perl-term-readline-gnu1.36More information
rust-termios0.2.2More information
ecl-rove0.9.6More information
ccal2.5.3More information
rust-bit-vec0.5.1More information
rust-fnv1.0.6More information
rust-xml5ever0.16.1More information
python-inform1.23.0More information
emacs-counsel-notmuch1.0-0.a4a1562More information
gdl3.34.0More information
ecl-mito0.1-1.d3b9e37More information
ecl-cl-freetype21.1-0.96058daMore information
python-ipyparallel6.2.4More information
ecl-nodgui0.0.5-1.bc59ed9More information
python-android-stringslib0.1.2More information
r-loo2.4.0More information
vim-dispatch1.8More information
sideload1.1.1More information
seed3.8.1More information
flrig1.3.52More information
r-stabs0.6-3More information
python-pypika0.44.0More information
guile2.0-filesystem0.1.0More information
cl-clx-truetype0.0.1-1.c6e10a9More information
dhall1.32.0More information
go-gopkg-in-natefinch-lumberjack.v22.1More information
rust-ct-logs0.6.0More information
rust-winapi0.2.8More information
rust-ascii0.9.3More information
libfastjson0.99.8More information
rust-onig-sys69.6.0More information
java-treelayout1.0.3More information
rust-serde-urlencoded0.5.5More information
rust-rusqlite0.24.1More information
rust-fs20.4.3More information
ruby-cuke-modeler3.1.0More information
nginx-lua-module0.10.16More information
emacs-diredfl0.4More information
python-evdev1.3.0More information
rust-regex1.4.2More information
rust-tokio-socks0.3.0More information
python-pydub0.24.1More information
rust-thread-local0.3.6More information
python-django-compressor2.4More information
rust-term-size1.0.0-beta1More information
python-epc0.0.5More information
hyperledger-iroha-ed255192.0.2More information
rust-streaming-stats0.2.3More information
rust-cookie0.12.0More information
r-flock0.7More information
go-github-com-emersion-go-imap-idle0.0.0-0.2704abdMore information
cl-jpeg2.8-1.ec55703More information
libsecp256k1-bitcoin-cash0.22.1More information
rust-trust-dns-proto0.19.5More information
go-github-com-spf13-jwalterweatherman1.1.0More information
rust-futf0.1.4More information
python-curio1.2More information
r-rcdd1.2-2More information
python-robber1.1.5More information
davfs21.6.0More information
cl-clss0.3.1-1.2a8e861More information
svt-hevc1.4.3More information
fcft2.3.2More information
rust-core-foundation0.7.0More information
libindicator12.10.1More information
python-flask-markdown0.3More information
sbcl-cl-inflector0.2-1.f1ab169More information
emacs-eshell-toggle0.10.0-1.ddfbe0aMore information
r-semtools0.5-3More information
rust-gfx-core0.9.2More information
r-motifbreakr2.4.0More information
sbcl-cl-progress-bar0.0.0-1.9374170More information
rust-capnp-rpc0.10.0More information
rust-cgl0.3.2More information
tor-client0.4.4.6More information
hash-extender0.0-2.cb8aaeeMore information
rust-structopt0.2.18More information
r-bisquerna1.0.4More information
rust-gdk-pixbuf-sys0.9.1More information
python-rjsmin1.1.0More information
mergerfs2.31.0More information
kicad-doc5.1.6More information
rust-tokio-current-thread0.1.6More information
rust-tokio-macros0.2.5More information
rust-bindgen0.49.4More information
python-doc80.8.0More information
go-github-com-google-go-querystring1.0.0More information
rust-bincode1.3.1More information
emacs-iter21.0More information
rust-progrs0.1.1More information
rust-combine3.8.1More information
emacs-nord-theme0.5.0More information
ecl-form-fiddle1.1.0-0.e0c2359More information
rust-ron0.5.1More information
ocaml-csexp1.3.2More information
linux-libre-bpf5.10.4More information
ecl-trivial-indent1.0.0-0.2d01694More information
rust-encoding-index-korean1.20141219.5More information
go-github-com-go-asn1-ber-asn1-ber1.3.1More information
rust-hex0.4.2More information
ghc-pgp-wordlist0.1.0.3More information
rust-demo-hack-impl0.0.5More information
go-github-com-cheggaaa-pb3.0.4More information
rust-addr2line0.9.0More information
ecl-cl-annot0.0.0-1.c99e69cMore information
jsonrpc-glib3.34.0More information
r-irtoys0.2.1More information
rust-rustc-ap-rustc-data-structures654.0.0More information
emacs-password-generator1.01More information
rust-tokio-timer0.2.11More information
rust-proc-macro21.0.24More information
python-zope-copy4.2More information
rust-nom2.2.1More information
rust-wayland-server0.23.6More information
ruby-range-compressor1.0.0More information
rust-ipnet2.3.0More information
rust-piston-shaders-graphics2d0.3.1More information
python2-objgraph3.4.1More information
python-junit-xml1.9-0.4bd08a2More information
kiwix-desktop2.0.5More information
python-shouldbe0.1.2More information
kontactinterface20.04.1More information
rust-which3.1.1More information
rust-itertools-num0.1.3More information
cl-zs31.3.3More information
r-oenb0.0.1More information
sbcl-stumpwm-ttf-fonts0.0.1-2.920f8fcMore information
rust-html5ever0.24.1More information
rust-tokio-udp0.1.3More information
python-titlecase0.12.0More information
rust-lmdb-rkv0.14.0More information
rust-cargo-c0.5.3More information
ghc-bower-json1.0.0.1More information
sky1.2More information
rust-git20.11.0More information
ecl-dbi0.9.4-1.31c4686More information
dkgpg1.1.3More information
rust-num-traits0.1.43More information
rust-ipconfig0.2.2More information
gnome-user-share3.33.1More information
cl-hdf5-cffi1.8.18-1.5b5c88fMore information
emacs-inf-janet0.1.0-1.df46651More information
ruby-prawn-icon2.5.0More information
ocaml4.07-ppx-bin-prot0.11.1More information
frozen-bubble2.2.1-1.d6a0291More information
guile3.0-mailutils3.10More information
sbcl-trivialib-type-unify0.1-1.62492ebMore information
cl-livesupport0.0.0-1.71e6e41More information
rust-glob0.3.0More information
rust-ahash0.3.8More information
rust-http-body0.3.1More information
bcachefs-tools0.1-2.db931a4More information
rust-dispatch0.1.4More information
python-trustme0.6.0More information
libmpeg31.8More information
python-boto31.16.22More information
gnome-color-manager3.32.0More information
texlive-todonotes51265More information
emacs-company-posframe0.1.0-2.4bfb8bcMore information
rust-png0.15.3More information
rust-gl-generator0.14.0More information
gnuradio3.8.0.0More information
python-h110.9.0More information
guile2.2-git0.4.0More information
go-gotest-tools-internal-difflib2.3.0More information
rust-nix0.19.1More information
libuemf0.2.7More information
emacs-csound-mode0.2.1More information
guile2.2-lens0.1-0.14b15d0More information
sbcl-cl-change-case0.1.0-1.5ceff2aMore information
r-rstan2.21.2More information
rust-rand-xoshiro0.4.0More information
ruby-hydra0.0-0.5abfa37More information
python-trytond-account-invoice-stock5.6.0More information
rust-scan-fmt0.2.5More information
python-locust1.4.1More information
sbcl-olc1.0-0.517e27fMore information
rust-clap2.33.3More information
r-quanteda2.1.2More information
rust-decimal2.0.4More information
cl-async0.6.1-1.f6423e4More information
guile3.0-squee0-1.7dcd22bMore information
emacs-edn1.1.2-1.be9e32dMore information
rust-scheduled-thread-pool0.2.5More information
rust-cgmath0.16.1More information
mariadb-connector-c3.1.11More information
konsole20.04.1More information
ecl-cl-mysql0.1-1.ab56c27More information
rust-sval-derive0.4.7More information
rust-winutil0.1.1More information
rust-cblas-sys0.1.4More information
rust-error-chain0.10.0More information
python-diskcache4.1.0More information
rust-slab0.4.2More information
emacs-eshell-syntax-highlighting0.2More information
guile3.0-websocket0.1More information
ghc-managed1.0.6More information
python-pgpy0.5.3More information
lua-penlight1.7.0More information
python-lfdfiles2020.1.1More information
r-lpme1.1.1More information
rust-retain-mut0.1.1More information
ruby-sys-uname1.2.1More information
rust-strum-macros0.18.0More information
emacs-magit-annex1.7.1-1.ef5dce6More information
rust-version-check0.1.5More information
rust-term0.4.6More information
python-gssapi1.6.9More information
guile-sodium0.1.0More information
rust-cargon0.0.1More information
rust-num-complex0.3.0More information
libhangul0.1.0More information
go-github-com-saracen-walker0.1.1More information
rust-terminal-size0.1.13More information
guile2.2-present0.3.0More information
r-ibreakdown1.3.1More information
cl-claw-support1.0.0More information
sbcl-antik0.0.0-1.e4711a6More information
cl-clesh0.0.0-1.44e96e0More information
cl-geco2.1.1More information
rust-dirs-sys0.3.5More information
go-github-com-cespare-xxhash2.1.0More information
r-rismed2.2More information
rust-futures-sink-preview0.3.0-alpha.19More information
rust-quickcheck0.7.2More information
sbcl-ltk0.992More information
go-gotest-tools-internal-format2.3.0More information
ecl-hu.dwim.common-lisp2015-07-09More information
rust-serde-derive1.0.117More information
heads-dev-cpio0.1More information
ocaml4.07-spawn0.13.0More information
sbcl-stumpwm-winner-mode0.0.1-2.920f8fcMore information
rust-semver-parser0.10.1More information
gtk-layer-shell0.1.0More information
rust-phf-generator0.8.0More information
sbcl-deeds1.1.1-1.f5df54eMore information
r-semver0.2.0More information
emacs-map2.1More information
emacs-xelb-no-x-toolkit0.18More information
xssproxy1.0.0More information
rust-trust-dns-native-tls0.6.3More information
go-github-com-errata-ai-vale2.4.0More information
rust-urlocator0.1.3More information
rust-signature-derive1.0.0-pre.2More information
rust-blake2-rfc0.2.18More information
emacs-frame-local0.0.1-0.7ee1106More information
maven-resources-plugin3.1.0More information
rust-openssl-sys-extras0.7.14More information
sbcl-trivial-benchmark2.0.0-1.42d7673More information
rust-wasm-bindgen-webidl0.2.58More information
rust-loom0.2.13More information
r-metrics0.1.4More information
sbcl-exponential-backoff0-1.8d9e844More information
rust-cssparser0.25.9More information
rust-block-padding0.2.0More information
rust-shell-escape0.1.4More information
rust-serde-json1.0.60More information
rust-handlebars2.0.4More information
emacs-csharp-mode0.10.0More information
libosmo-dsp0.4.0More information
sbcl-archive0.9-1.631271cMore information
python-commonmark0.9.1More information
r-rockchalk1.8.144More information
webssh1.5.3More information
sbcl-cl-ascii-table0.0.0-1.d9f5e77More information
python-stone3.2.1More information
rust-paste-impl0.1.18More information
ruby-given-core3.8.0More information
epour0.7.0More information
astroid0.15More information
rust-web-sys0.3.37More information
rust-grep-searcher0.1.7More information
rust-color-quant1.0.1More information
rust-goblin0.2.1More information
python-rdflib-jsonld0.5.0More information
emacs-twittering-mode3.1.0More information
rust-generic-array0.12.3More information
rust-gcc0.3.55More information
mpich3.3.2More information
rust-tokio-signal0.2.7More information
rust-ordered-float1.0.2More information
wildmidi0.4.3More information
ecl-dissect1.0.0-1.cffd384More information
python-flufl-i18n3.0More information
cl-trivialib-type-unify0.1-1.62492ebMore information
gita0.10.10-1.62eb3d6More information
rust-fsevent0.4.0More information
ecl-caveman2.4.0-1.faa5f7eMore information
python-pytest-remotedata0.3.2More information
emacs-graphql-mode0-1.9bed568More information
cl-check-it0.1.0-1.b79c910More information
libgccjit9.3.0More information
java-surefire-parent-pom3.0.0-M4More information
python-rnc2rng2.6.4More information
rust-serde-urlencoded0.7.0More information
rust-parking-lot0.8.0More information
python2-weave0.16.0More information
cl-mt199371.1More information
xsettingsd1.0.0More information
jc1.13.4More information
rust-diesel1.4.5More information
perl-devel-callchecker0.008More information
cl-clump0.0.0-1.1ea4dbaMore information
rust-vec-map0.8.2More information
mojoshader-cs20191205-1.10d0dbaMore information
emacs-simple-modeline1.2-1.38973deMore information
python-pywinrm0.4.1More information
fcitx5-qt5.0.1More information
rust-thiserror1.0.22More information
ocrodjvu0.12More information
rust-float-cmp0.8.0More information
chrony4.0More information
r-shinystan2.5.0More information
rust-stdweb-derive0.5.3More information
unicode-cldr-common36.0More information
ghc-cborg0.2.2.0More information
perl-datetime-format-iso86010.08More information
vim-eunuch1.2-1.33e875bMore information
sbcl-cl-tga0.0.0-0.4dc2f7bMore information
rust-serde-urlencoded0.6.1More information
rust-ident-case1.0.1More information
guile3.0-charting0.2.0More information
rust-bytes0.3.0More information
emacs-lsp-java2.2More information
go-github-com-go-git-go-git-fixtures4.0.1More information
rust-path-clean0.1.0More information
rust-derivative2.1.1More information
emacs-moody0.5.4More information
rust-siphasher0.3.2More information
emacs-form-feed0.2.2More information
python-colorlog4.1.0More information
ocaml4.07-fftw30.8.4More information
rust-piston-viewport1.0.0More information
sbcl-blackbird0.5.2-1.d361f81More information
guile-mkdir-p1.0.1More information
elementary-xfce-icon-theme0.15.1More information
go-github-com-francoispqt-gojay1.2.13More information
rust-pest-meta2.1.2More information
rust-bindgen0.37.4More information
python-boltons20.0.0More information
rust-odds0.2.26More information
rust-num-bigint0.3.0More information
python-databricks-cli0.14.1More information
rust-termion1.5.5More information
python-google-brotli1.0.9More information
r-metafor2.4-0More information
emacs-keycast1.0.4More information
go-github-com-russross-blackfriday2.0.1More information
rust-wasm-bindgen-test-crate-b0.1.0More information
emacs-undo-fu0.4-0.c0806c1More information
rust-rand-chacha0.1.1More information
rust-arc-swap0.4.4More information
libnode10.20.0More information
fcitx5-configtool5.0.1More information
lua-resty-signal0.02More information
rust-users0.10.0More information
cl-png-read0.3.1-1.ec29f38More information
minetest-mineclone0.66.2More information
python-hyperkitty1.3.3More information
libbacktrace1.0-1.5009c11More information
rust-stackvector1.0.6More information
zrythm1.0.0-alpha.6.0.1More information
go-github-com-godbus-dbus5.0.3More information
guile3.0-semver0.1.1More information
u-boot-pinebook-pro-rk33992020.10More information
python-flake8-pie0.5.0More information
circos0.69-9More information
rust-toml0.5.8More information
kcalendarsupport20.04.1More information
rust-base-x0.2.6More information
python2-pygraphviz1.5More information
rust-core-graphics0.17.3More information
ocaml4.07-ppx-inline-test0.12.0More information
cl-log1.0.1More information
w-scan20170107More information
sbcl-documentation-utils1.2.0-0.98630ddMore information
r-rhdf5filters1.2.0More information
ocaml4.07-zed2.0.3More information
rust-signature1.2.2More information
rust-miniz-oxide0.3.6More information
gotestsum0.4.0More information
rust-ignore0.4.16More information
rust-zstd-sys1.4.17+zstd.1.4.5More information
phast1.5More information
ffmpeg-jami4.3.1More information
rust-dirs3.0.1More information
rust-draw-state0.8.0More information
rust-static-assertions0.3.4More information
java-antlr4-runtime4.1More information
rust-string-cache-shared0.3.0More information
emacs-spaceline-next2.0.1-0.1b26af2More information
ocaml4.07-stdio0.11.0More information
rust-itoa0.4.5More information
python-xlib0.27More information
rust-rawpointer0.2.1More information
java-asm-analysis8.0.1More information
tweeny3More information
sbcl-specialized-function0.0.0-2.dee56d2More information
python-flufl-bounce3.0.1More information
emacs-project0.5.3More information
ruby-pry-stack-explorer0.5.1More information
perl-ppi1.270More information
rust-miow0.2.1More information
rust-syntex-syntax0.58.1More information
python-libcst0.3.8More information
ecl-cl-fastcgi0.2-1.d576d20More information
nbd3.20More information
ocaml4.07-ppx-expect0.12.0More information
julius1.5.1More information
rust-error-chain0.12.2More information
go-github-com-willf-bitset1.1.10More information
jack-select1.5.0More information
rust-interpolation0.2.0More information
node-stack-trace0.0.10-1.4fd379eMore information
python-sge1.7More information
ecl-claw-support1.0.0More information
rust-smallvec0.6.13More information
rust-trust-dns-rustls0.6.4More information
cl-z851.0-1.85b3951More information
r-rainbow3.6More information
python-daemonize2.5.0More information
sbcl-enchant0.0.0-1.6af162aMore information
python-django-sekizai2.0.0More information
rust-sha-10.8.2More information
dune-configurator2.7.1More information
rust-ct-logs0.3.0More information
ecl-cl-coroutine0.1-1.de098f8More information
go-github-com-emirpasic-gods1.12.0More information
racket-minimal7.9More information
guile3.0-readline3.0.2More information
liblinphone3.12.0More information
hosts3.6.3More information
rust-core-foundation-sys0.8.2More information
r-mlr3measures0.3.0More information
guile-hashing1.2.0More information
bvi1.4.1More information
kmessagelib20.04.1More information
r-nabor0.5.0More information
kicad-footprints5.1.6More information
sbcl-cl-interpol0.2.6-1.1fd288dMore information
r-ingredients2.0More information
ghc-scalpel-core0.6.0More information
kiwix-lib9.4.1More information
rust-httparse1.3.3More information
libgrss0.7.0More information
rust-kernel32-sys0.2.2More information
rust-strum0.18.0More information
sbcl-zpb-exif1.2.4More information
font-mplus-testflight063aMore information
surgescript0.5.4.4More information
python-sgp42.12More information
r-ashr2.2-47More information
rust-parking-lot0.9.0More information
emacs-kana1.0.0-0.b239c3cMore information
ghc-mountpoints1.0.2More information
perl-crypt-mysql0.04More information
rust-opaque-debug0.2.2More information
ecl-check-it0.1.0-1.b79c910More information
sbcl-cl-ana0.0.0-1.fa7cee4More information
cl-colors20.2.1-1.795aedeMore information
rust-cfg-if1.0.0More information
rust-winit0.19.5More information
emacs-delight1.7More information
sbcl-mgrs1.0-0.0045546More information
rust-libm0.2.1More information
rust-rust-hawktracer-normal-macro0.4.1More information
maven-enforcer-rules3.0.0-M3More information
emacs-eldev0.7.2More information
python-privy6.0.0More information
java-surefire-common-junit33.0.0-M4More information
r-cummerbund2.32.0More information
go-github-com-gorilla-handlers1.5.1More information
rust-itertools0.7.11More information
rust-itertools0.9.0More information
rust-pmutil0.5.3More information
blanket0.3.1More information
rust-difference2.0.0More information
rust-ufmt-macros0.1.1More information
guile3.0-mcron1.2.0More information
rav1e0.3.4More information
ganeti-instance-debootstrap0.16-2-ge145396More information
hackneyed-x11-cursors0.8.1-1.9423cefMore information
rust-clang-sys0.28.1More information
python-cantools33.1.1More information
rust-want0.3.0More information
tepl4.4.0More information
rust-tokio-tls0.3.1More information
rust-palette0.5.0More information
cl-coroutine0.1-1.de098f8More information
python-sshpubkeys3.1.0More information
font-libertinus6.12More information
rust-glium0.25.1More information
cl-float-features1.0.0More information
python-httptools0.1.1More information
parprouted0.7More information
rust-generator0.6.20More information
sbcl-cl-cont0.3.8-1.fc1fa7eMore information
audacious4.0.5More information
guile-websocket0.1More information
bsnes115More information
cl-type-r0.0.0-1.83c89e3More information
rust-rkv0.10.4More information
python-cliff3.5.0More information
rust-unicode-xid0.2.1More information
rust-lock-api0.1.5More information
rust-sha1-asm0.4.3More information
rust-void1.0.2More information
rust-proc-macro-hack-impl0.4.2More information
rust-foreign-types-shared0.1.1More information
r-rbibutils2.0More information
rust-bindgen0.55.1More information
compiledb0.10.1More information
python-cson0.8More information
gerbil0.16More information
go-github-com-bmatcuk-doublestar1.3.0More information
emacs-py-isort2016.1More information
go-gotest-tools-assert2.3.0More information
qtmips0.7.3More information
python-plaster-pastedeploy0.7More information
cl-deeds1.1.1-1.f5df54eMore information
emacs-buffer-move0.6.2More information
lua5.1-ossl20170903More information
ghc-easytest0.2.1More information
python-stestr3.0.1More information
python-trytond-account5.6.1More information
lv2toweb0.4More information
rust-quote0.5.2More information
python-crashtest0.3.1More information
rust-string-cache-codegen0.4.4More information
rust-futures-util-preview0.3.0-alpha.19More information
sx2.1.6More information
cl-com.gigamonkeys.binary-data0.0.0-0.22e9089More information
rust-serde-json0.9.10More information
packcc1.2.5-19-g58d1b9dMore information
asciidoc-py39.0.1More information
rust-bytecount0.4.0More information
rust-scrypt0.3.0More information
python-dataclasses0.7More information
go-github-com-mattn-go-zglob0.0.3More information
farstream0.2.9More information
android-liblog7.1.2_r36More information
ruby-cucumber-html-formatter7.0.0More information
cl-parachute1.1.1-0.ca04dd8More information
rust-phf-codegen0.7.24More information
rust-clipboard-win2.1.2More information
rust-encoding-index-singlebyte1.20141219.5More information
r-tidymodels0.1.2More information
rust-core-affinity0.5.10More information
libgdiplus6.0.4More information
rust-plist1.0.0More information
python-parallel1.6.4.4More information
cl-envy0.1-1.956321bMore information
rust-chrono0.4.19More information
python-nodeenv1.4.0More information
r-spatstat1.64-1More information
rust-headers-core0.1.1More information
python-mypy0.790More information
r-biocio1.0.1More information
python-pyre-extensions0.0.18More information
rust-language-tags0.2.2More information
opencpn5.0.0More information
rust-andrew0.2.1More information
hss1.8More information
ruby-ruby-prof1.4.1More information
guile-email-latest0.2.2-1.03e9cacMore information
python-aiosmtpd1.2.2More information
cl-vectors0.1.5More information
rust-rustc-rayon-core0.3.0More information
cl-static-dispatch0.3More information
pyzo4.11.2More information
rust-nettle5.0.3More information
ecl-chipz0.8-1.75dfbc6More information
libgravatar20.04.1More information
bcachefs-static0.1-2.db931a4More information
rust-rand-core0.5.1More information
attention0-1.87d4367More information
dune-grid-openmpi2.7.0More information
rust-dtoa0.2.2More information
rust-futures-macro0.3.8More information
rust-radix-fmt1.0.0More information
rust-cairo-sys-rs0.10.0More information
rust-mime-guess2.0.3More information
ronn-ng0.9.1More information
perl-text-haml0.990118More information
rust-float-ord0.2.0More information
rust-tiff0.5.0More information
guile2.2-semver0.1.1More information
emacs-mmt0.2.0More information
rust-lazy-static0.1.16More information
rust-hash32-derive0.1.0More information
rust-xmltree0.8.0More information
rust-speculate0.1.2More information
r-randomizr0.20.0More information
ecl-clx-xembed0.1-1.a5c4b84More information
guile3.0-config0.4.2More information
python2-zipp1.0.0More information
go-github-com-coreos-go-semver0.3.0More information
rust-handlegraph0.3.0More information
rust-nom3.2.1More information
rust-num-complex0.2.4More information
rust-quickcheck0.8.5More information
rust-sha10.6.0More information
r-zseq0.2.0More information
rust-zbase320.1.2More information
guile-rdf1.0More information
rust-atk0.8.0More information
purple-mm-sms0.1.4More information
guile2.2-ncurses3.0More information
rust-inotify-sys0.1.3More information
akonadi-contacts20.04.1More information
libfreenect-opencv0.6.1More information
rust-markup5ever0.8.1More information
python-xattr0.9.7More information
rust-encode-unicode0.3.6More information
ecl-cl-libuv0.1.6-1.32100c0More information
cl-asdf3.3.4More information
libqb1.9.1More information
rust-lexical-core0.7.4More information
r-tokenizers0.2.1More information
rust-mio-named-pipes0.1.6More information
python-pytest-arraydiff0.3More information
rust-rustdoc-stripper0.1.16More information
rust-lru-cache0.1.2More information
rust-wasm-bindgen-console-logger0.1.1More information
cl-form-fiddle1.1.0-0.e0c2359More information
rust-paste0.1.18More information
v86d0.1.10More information
gron0.6.0More information
stb-truetype1.24More information
play-to-kodi-chromium1.9.1More information
rust-tracing-log0.1.1More information
glimpse0.2.0More information
cozy0.7.6More information
r-sgloptim1.3.8More information
lksctp-tools1.0.18More information
rust-serial-test0.4.0More information
rust-phf-shared0.8.0More information
python-scikit-rebate0.6More information
rust-string0.2.1More information
lua-ldoc1.4.6More information
js-xmldom-sre0.1.32More information
python-dogtail0.9.11More information
ghc-http-reverse-proxy0.6.0More information
rust-sct0.5.0More information
rust-security-framework-sys2.0.0More information
rust-syn0.11.11More information
r-tidyposterior0.0.3More information
python-trytond-purchase5.6.0More information
ecl-envy0.1-1.956321bMore information
rust-termios0.3.1More information
python-mechanize0.4.5More information
emacs-mood-line1.2.4More information
cl-numcl0.1.0-2.3e8d40bMore information
rust-gdk-sys0.9.1More information
ghc-prettyprinter-ansi-terminal1.1.1.2More information
rust-globwalk0.8.0More information
dnssec-trigger0.17More information
maven-common-artifact-filters3.1.0More information
python-vf-10.0.11More information
rust-version-compare0.0.11More information
python-capablerobot-usbhub0.2.7More information
libbpf0.0.9More information
perl-data-section-simple0.07More information
rust-miniz-oxide-c-api0.2.2More information
jucipp1.6.1More information
r-rserve1.8-6More information
rust-hash320.1.1More information
ecl-cl-interpol0.2.6-1.1fd288dMore information
cl-environments0.2.3-1.0b22154More information
ecl-enchant0.0.0-1.6af162aMore information
flite2.1More information
rust-target-lexicon0.10.0More information
rust-memmap0.2.3More information
ruby-prawn-svg0.30.0More information
autotrace0.40.0-20190624.59More information
libleak0.3.5More information
r-stopwords2.1More information
python-caniusepython37.2.0More information
rust-digest0.9.0More information
python-random-user-agent1.0.1More information
spandsp0.0.6More information
cl-mgrs1.0-0.0045546More information
rust-block-cipher0.7.1More information
rust-scrypt0.2.0More information
guile3.0-hall0.3.1More information
ufo2map2.6.0_dev-0.a542a87More information
rust-packed-simd-20.3.4More information
ocaml4.07-sedlex2.1More information
openctm1.0.3.603More information
python-priority1.3.0More information
portablexdr4.9.1More information
rust-futures-io-preview0.3.0-alpha.19More information
bzrtp1.0.6More information
swi-prolog8.3.10More information
r-rstantools2.1.1More information
r-dials0.0.9More information
perl-tie-simple1.04More information
rust-zstd-safe2.0.5+zstd.1.4.5More information
ghc-basic-prelude0.7.0More information
opensbi-qemu-generic0.8More information
rust-rgb0.8.20More information
pamtester0.1.2More information
xtitle0.4.4More information
rust-gdi32-sys0.2.0More information
kgpg20.04.1More information
rust-fluid0.4.1More information
poezio0.13.1More information
font-iosevka-aile4.0.3More information
r-laplacesdemon16.1.4More information
r-openmx2.18.1More information
rust-schannel0.1.16More information
kristall0.3-1.204b08aMore information
ocaml4.07-lambda-term2.0.2More information
rust-natord1.0.9More information
ocaml4.07-ppx-enumerate0.11.1More information
rust-miniz-oxide0.2.2More information
python-pyramid1.10.4More information
rust-proc-macro-nested0.1.6More information
wolf-spectrum1.0.0More information
rust-onig-sys69.2.0More information
abseil-cpp20200225.2More information
js-context-menu0.6.1More information
rust-linked-hash-map0.5.3More information
mosquitto1.6.12More information
plover3.1.1More information
rust-parking-lot-core0.8.0More information
guile2.2-haunt0.2.4More information
rust-http-body0.1.0More information
ecl-cl-colors20.2.1-1.795aedeMore information
cl-specialized-function0.0.0-2.dee56d2More information
rust-ahash0.4.4More information
rust-pango-sys0.10.0More information
ecl-cl-rdkafka1.0.2More information
rust-tokio-test0.2.1More information
ecl-deploy1.0.0-1.59fd497More information
ksshaskpass5.19.5More information
rust-serde0.8.23More information
rust-num-integer0.1.43More information
python-symengine0.6.1More information
rust-openssl-sys0.7.17More information
j4-dmenu-desktop2.18More information
rust-futures-task0.3.8More information
ecl-clack2.0.0-1.e3e0328More information
rust-regex-automata0.1.9More information
emacs-fountain-mode3.3.3More information
python-isbnlib3.10.4More information
rust-sval0.4.7More information
java-surefire-api3.0.0-M4More information
go-github-com-jmespath-go-jmespath0.4.0More information
superfamiconv0.8.8More information
rust-no-panic0.1.12More information
lv2lint0.8.0More information
rust-nasm-rs0.1.7More information
rust-lalrpop-util0.19.1More information
rust-merlin2.0.0More information
rust-socks0.3.2More information
java-plexus-compiler-manager2.8.4More information
rust-hyper-rustls0.17.1More information
python-zarr2.4.0More information
rust-wayland-client0.21.13More information
python-flask-cors3.0.9More information
ocaml4.07-findlib1.8.1More information
rust-rustc-tools-util0.2.0More information
cl-trivial-download0.3-1.d247206More information
opendoas6.8More information
ecl-deflate1.0.3More information
rust-svd-parser0.9.0More information
rust-clang-sys0.22.0More information
python-csscompressor0.9.5More information
r-conquer1.0.2More information
rust-traitobject0.1.0More information
r-invgamma1.1More information
r-wdman0.2.5More information
rust-antidote1.0.0More information
libticonv1.1.5More information
guile-srfi-1580.0.1More information
rust-rusty-fork0.2.2More information
rust-arg-enum-proc-macro0.3.0More information
sbcl-lambda-fiddle1.0.0-1.d16bba5More information
python-requests-ftp0.3.1More information
shiru-lv20.0-1.08853f9More information
grass7.8.5More information
libvisual-plugins0.4.0More information
rust-matches0.1.8More information
python-smmap3.0.1More information
ecl-qmynd1.0.0-1.7e56dafMore information
python-devtools0.6More information
python-yq2.11.1More information
r-ggalluvial0.12.3More information
cl-documentation-utils-extensions0.0.0-1.f67f8a0More information
emacs-ebib2.29More information
lldpd1.0.7More information
ecl-mcclim0.9.7-1.04cc542More information
kdepim-runtime20.04.1More information
rust-parity-wasm0.40.3More information
python-pytest-aiohttp0.3.0More information
python-asciitree0.3.3More information
rust-futures0.1.29More information
aspell-dict-cs20040614-1More information
pfetch0.7.0-0.e18a095More information
rust-tokio-threadpool0.1.14More information
rust-plain0.2.3More information
emacs-metal-mercury-mode0.0.0-1.99e2d8fMore information
ocaml-cairo20.6.1More information
kpimcommon20.04.1More information
r-cpp110.2.4More information
rust-bzip20.3.3More information
sbcl-lisp-unit20.2.0-1.fb97215More information
emacs-message-x1.23-0.5524de7More information
tunctl1.5More information
rust-security-framework2.0.0More information
rust-bumpalo2.6.0More information
rust-bitflags0.8.2More information
rust-addr2line0.11.0More information
rust-core-arch0.1.5More information
rust-pad0.1.6More information
go-github-com-stretchr-objx0.2.0More information
rust-glib-sys0.10.1More information
rust-rand-isaac0.2.0More information
dune-geometry-openmpi2.7.0More information
rust-derive-builder0.9.0More information
rust-ndk-sys0.2.1More information
emacs-toml-mode0.1.3-0.f6c6181More information
python-zstandard0.13.0More information
mercury-minimal20.06.1More information
rust-block-buffer0.9.0More information
rust-futures-sink0.3.8More information
guile3.0-parted0.0.4More information
cl-defpackage-plus1.0-0.5492e27More information
rust-simd0.1.1More information
rust-trust-dns-openssl0.19.5More information
python-fusepyng1.0.7More information
rust-env-logger0.3.5More information
ecl-graph0.0.0-0.78bf9ecMore information
r-goftest1.2-2More information
rust-bstr0.1.4More information
emacs-counsel-jq1.0.0-0.aaf33fcMore information
rust-nettle-sys2.0.4More information
rust-structopt0.3.12More information
ecl-pzmq0.0.0-1.7c7390eMore information
ogmtools1.5More information
cl-zpb-ttf1.0.3More information
chezmoi1.8.1More information
ghc-haskeline0.8.0.0More information
sbcl-retrospectiff0.2-0.c2a69d7More information
guile-struct-pack1.1.1More information
rust-pulldown-cmark0.1.2More information
ghc-curl1.3.8More information
python-flask-restx0.2.0More information
ecl-spatial-trees0-1.81fdad0More information
python-voluptuous0.11.7More information
baloo-widgets20.04.1More information
gitless0.8.8More information
go-github-com-alecthomas-colour0.1.0More information
blueman2.1.4More information
python-lark-parser0.9.0More information
rust-lazy-static0.2.11More information
dune-istl-openmpi2.7.0More information
gdb-minimal10.1More information
zbackup1.4.4More information
rust-gtk-sys0.9.2More information
ecl-trivial-cltl20.1.1-2.8a3bda3More information
ecl-clsql6.7.0More information
rust-diesel-derives1.4.1More information
rust-insta0.16.1More information
libcaption0.7More information
rust-futures-timer0.1.1More information
python-pysolr3.9.0More information
guile3.0-ncurses-with-gpm3.0More information
r-dicedesign1.8-1More information
ghc-hledger-lib1.14.1More information
cl-fastcgi0.2-1.d576d20More information
rust-tracing-futures0.2.4More information
python-pytest-env0.6.2More information
texlive-mathpazo51265More information
python-httpx0.16.1More information
ghc-prettyprinter1.6.1More information
rust-pangocairo0.9.0More information
rust-async-compression0.3.5More information
emacs-sbt-mode2.0.0More information
python-rfc65550.0.0-1.1a181b4More information
rust-curl-sys0.4.20More information
ghc-data-fix0.2.0More information
ecl-html-entities0.02-1.4af0180More information
ocaml4.07-sexplib00.11.0More information
iqa1.1.2More information
gnome-getting-started-docs3.32.2More information
jgmenu4.1.0More information
texlive-biblatex51265More information
sbcl-dbus20190408-1.24b452dMore information
emacs-undo-fu-session0.2-0.56cdd35More information
lua5.1-cqueues20171014More information
ublock-origin-chromium1.32.4More information
rust-cgl0.2.3More information
guile-zlib0.0.1More information
gtksheet4.3.5More information
rust-safemem0.3.3More information
rust-os-pipe0.8.2More information
rust-read-color1.0.0More information
r-diffobj0.3.2More information
rust-assert-fs0.11.3More information
emacs-ob-erlang20180827-1.f1a8c66More information
emacs-eglot1.7More information
scantailor-advanced1.0.16-3d1e74eMore information
python-wget3.2More information
rust-term0.2.14More information
rust-cesu81.1.0More information
emacs-libyaml0-1.703e0d4More information
rust-maybe-uninit2.0.0More information
rust-number-prefix0.3.0More information
mpdris20.8More information
rust-syn-mid0.5.0More information
rust-capnp0.10.3More information
go-github-com-magiconair-properties1.8.4More information
rust-openssl0.7.14More information
symengine0.6.0More information
ecl-cl-utilities0.0.0-1.dce2d2fMore information
rust-term-size0.3.2More information
cl-generic-cl0.7.1-1.8e5a814More information
rust-rustc-std-workspace-alloc1.0.0More information
perl-crypt-unixcrypt_xs0.11More information
hamlib3.3More information
rust-futures-cpupool0.1.8More information
rust-cryptovec0.4.6More information
ndisc61.0.4More information
rust-line-drawing0.7.0More information
ecl-lack0.1.0-1.abff8efMore information
texlive-caption51265More information
rust-sha10.2.0More information
blktrace1.2.0-1.db4f634More information
cl-1am0.0-1.8b1da94More information
rust-wayland-scanner0.21.13More information
guile-machine-code2.1.0More information
sbcl-stumpwm-globalwindows0.0.1-2.920f8fcMore information
brltty6.1More information
rust-compiler-error0.1.1More information
rust-tower-layer0.3.0More information
ghc-control-monad-free0.6.2More information
python-mailman-hyperkitty1.1.0More information
python-h23.2.0More information
guile2.2-readline2.2.7More information
rust-console0.13.0More information
rust-dotenv0.10.1More information
rust-obj0.9.1More information
vim-guix-vim0.1.1More information
python-zope-deprecation4.4.0More information
rust-terminfo0.6.1More information
ecl-lisp-unit20.2.0-1.fb97215More information
knockd0.7More information
rust-utf8-ranges1.0.4More information
rust-hermit-abi0.1.10More information
r-qgraph1.6.5More information
rust-stdweb-internal-test-macro0.1.1More information
ghc-dotgen0.4.2More information
robin-map0.6.3More information
emacs-wide-int27.1More information
ecl-acclimation0.0.0-1.4d51150More information
sbcl-cl-async0.6.1-1.f6423e4More information
emacs-kakoune0.1-0.d73d14eMore information
python-importlib-resources3.0.0More information
lf13More information
rust-futures-core-preview0.3.0-alpha.19More information
rust-rand0.3.23More information
lua5.2-ossl20170903More information
python-helpdev0.7.1More information
emacs-smart-hungry-delete0.1More information
libtmcg1.3.18More information
pdf2djvu0.9.17.1More information
rust-lscolors0.6.0More information
perl-crypt-rijndael1.15More information
python-outcome1.0.1More information
djvu2pdf0.9.2More information
r-paradox0.6.0More information
python-simpleaudio1.0.4More information
rust-wasm-bindgen-futures0.3.27More information
rust-which1.0.5More information
rust-backtrace0.3.46More information
r-rticles0.17More information
go-github-com-go-git-gcfg1.5.0More information
ladspa-bs2b0.9.1More information
java-eclipse-aether-impl1.0.2More information
ecl-trivialib-type-unify0.1-1.62492ebMore information
sbcl-function-cache1.0.3More information
perl-data-integer0.006More information
python-trytond-currency5.6.0More information
rust-shell-words1.0.0More information
emacs-major-mode-hydra0.2.2More information
emacs-org-journal2.1.1More information
rust-std-prelude0.2.12More information
python-trytond-account-product5.6.0More information
guile3.0-ncurses3.0More information
java-sonatype-aether-api1.7More information
ocaml4.07-piqi0.7.7More information
python-cfgraph0.2.1More information
rust-lexical-core0.4.2More information
python-retrying1.3.3More information
python-nestedtext1.0.0More information
rust-bytes0.5.4More information
sbcl-collectors0.1-1.13acef2More information
aspell-dict-pl0.51-0More information
rust-unicode-segmentation1.3.0More information
rust-argon2rs0.2.5More information
rust-cty0.2.1More information
rust-trust-dns-resolver0.19.5More information
purescript0.13.8More information
libzim6.3.0More information
python-flake8-bugbear20.1.4More information
rust-zip0.5.6More information
r-dygraphs1.1.1.6More information
python-codacy-coverage1.3.11More information
alacritty0.4.1More information
picolisp19.12More information
rust-difference1.0.0More information
rust-dirs1.0.5More information
rust-trust-dns-openssl0.6.3More information
rust-proc-macro-hack0.5.19More information
ecl-cluffer0.0.0-1.4aad29cMore information
rygel0.38.3More information
abe1.1More information
emacs-svg-icon0.1-1.ebc2b8dMore information
rust-hex-literal0.2.1More information
sameboy0.13.6More information
rtl8821ce-linux-module0.0.0-2.14b536fMore information
rust-bs580.2.5More information
python-manuel1.10.1More information
ocaml4.07-odoc1.5.1More information
rust-lmdb-rkv-sys0.11.0More information
rust-jemalloc-sys0.1.8More information
rust-cpuid-bool0.1.0More information
ocaml4.07-piqilib0.6.15More information
guile3.0-newt0.0.2More information
apt-mirror0.5.4-1.e664486More information
rust-csv1.1.3More information
glmark22020.04More information
rust-plotters0.2.12More information
wsjtx2.2.2More information
python-livereload2.6.1More information
ruby-kramdown-parser-gfm1.1.0More information
kmailimporter20.04.1More information
ocaml4.07-charinfo-width1.1.0More information
wol0.7.1More information
sbcl-pngload2.0.0More information
synapse1.24.0More information
rust-untrusted0.6.2More information
visidata2.1More information
ecl-retrospectiff0.2-0.c2a69d7More information
r-rle0.9.2More information
cl-tga0.0.0-0.4dc2f7bMore information
rust-libgit2-sys0.8.2More information
rust-wayland-sys0.21.13More information
cl-vom0.1.4-1.1aeafebMore information
rust-grep-printer0.1.5More information
ruby-yard-tomdoc0.7.1More information
python-httpcore0.12.2More information
r-profilemodel0.6.0More information
go-github-com-alecthomas-assert0.0.1-1.405dbfeMore information
ecl-myway0.1.0-1.2862300More information
atomspace5.0.3-1.86c848dMore information
rust-phf-macros0.8.0More information
rust-gfx-device-gl0.16.2More information
rust-rand0.7.3More information
date2.4.1-9a0ee254More information
cl-interpol0.2.6-1.1fd288dMore information
ghc-utf8-light0.4.2More information
entangle3.0More information
rust-rust-argon20.5.1More information
ocaml-reactivedata0.2.2More information
ghc-uglymemo0.1.0.1More information
emacs-treemacs2.8More information
perl-crypt-cbc2.33More information
ecl-cl-tga0.0.0-0.4dc2f7bMore information
ecl-opticl-core0.0.0-0.b7cd13dMore information
java-plexus-java0.9.10More information
r-aws2.5More information
rust-env-logger0.6.2More information
ghc-prettyprinter1.2.1.1More information
cl-maidenhead1.0-0.b756d23More information
r-bbotk0.2.2More information
ruby-chandler0.9.0More information
r-dot0.1More information
xmenu4.4.1More information
rust-sysctl0.4.0More information
rust-ansi-parser0.6.5More information
rust-bitflags0.7.0More information
rust-dwrote0.9.0More information
rust-tower-util0.3.1More information
rust-gleam0.6.19More information
rust-peg-macros0.6.2More information
python-rawkit0.6.0More information
r-apeglm1.12.0More information
ecl-kebab0.1-1.e7f7764More information
emacs-orderless0.5More information
ecl-cffi0.21.0More information
cl-pngload2.0.0More information
rust-stdweb-internal-runtime0.1.5More information
rust-html5ever0.23.0More information
ecl-stefil0.1-0.0398548More information
rust-bindgen0.54.1More information
perl-params-classify0.015More information
r-lisreltor0.1.4More information
cl-caveman2.4.0-1.faa5f7eMore information
r-bsgenome-hsapiens-ucsc-hg381.4.1More information
pandoc2.7.3More information
emacs-org-pretty-table0.0.1-0.1331c60More information
sbcl-uffi2.1.2More information
r-arsenal3.5.0More information
python-roifile2020.5.28More information
rust-maplit1.0.2More information
sbcl-moptilities0.3.13-1.a436f16More information
ghc-llvm-hs9.0.1More information
kimap20.04.1More information
sbcl-calispel0.1-1.e9f2f9cMore information
ebook-tools0.2.2More information
python-libfreenect0.6.1More information
ghc-xml-hamlet0.5.0.1More information
rust-instant0.1.4More information
python-pyux0.0.6More information
font-fontna-yasashisa-antique0More information
rust-rust-hawktracer-proc-macro0.4.1More information
emacs-shx1.5.0More information
rust-quasi-macros0.32.0More information
python-pytest-openfiles0.5.0More information
rust-uuid0.8.1More information
emacs-company-box0.0.1-0.be37a9aMore information
python-numcodecs0.6.4More information
ecl-utm-ups1.0-0.780f1d8More information
rust-num-bigint-dig0.6.0More information
liquid-dsp1.3.2More information
rust-itoa0.3.4More information
rust-derive-builder0.5.1More information
rust-bindgen0.46.0More information
sbcl-dissect1.0.0-1.cffd384More information
python-owslib0.19.2More information
rust-base580.1.0More information
guile2.2-newt0.0.2More information
python-dictdiffer0.8.1More information
ruby-gimme0.5.0-1.4e71f02More information
pandoc-citeproc0.16.2More information
akonadi-notes20.04.1More information
guile2.2-ssh0.13.1More information
python-deeptools3.4.3More information
r-latex2exp0.4.0More information
spirv-cross2020-05-19More information
emacs-org-drill2.7.0More information
ghc-doclayout0.3More information
libsoup-minimal2.72.0More information
rust-serial-test0.1.0More information
go-github-com-google-uuid1.1.1More information
rust-aesni0.7.0More information
python-daiquiri2.1.1More information
ghc-only0.1More information
python-textparser0.23.0More information
foobillard++3.43-r170More information
maven-enforcer-plugin3.0.0-M3More information
rust-pretty-env-logger0.3.1More information
rust-skeptic0.13.4More information
icoutils0.32.3More information
fakechroot2.20.1More information
sbcl-cl-async-future0.4.4.1-1.ee36c22More information
rust-directories3.0.1More information
rust-zoneinfo-compiled0.4.8More information
rust-scopeguard1.0.0More information
rust-cairo-rs0.7.1More information
rust-num0.2.1More information
bpftrace0.11.4More information
go-github-com-mitchellh-mapstructure1.1.2More information
apache-thrift0.13.0More information
rust-err-derive0.2.3More information
ada-ed1.11.2More information
rust-winapi-i686-pc-windows-gnu0.4.0More information
kcalutils20.04.1More information
rust-quote0.6.13More information
rust-ref-cast1.0.2More information
rust-libsqlite3-sys0.20.1More information
rust-duct0.13.0More information
rust-bytes0.4.12More information
rust-parking-lot0.10.2More information
rust-cpp-demangle0.2.16More information
ecl-cxml0.0.0-1.00b22bfMore information
altermime0.3.11More information
rust-gimli0.18.0More information
rust-string-cache-codegen0.5.1More information
sbcl-3bz0.0.0-0.d611908More information
perl-text-patch1.8More information
rust-gl-generator0.11.0More information
emacs-bluetooth0.2More information
rust-base640.10.1More information
libnl-python33.5.0More information
qtspell0.9.0More information
python2-pyfaidx0.5.8More information
rust-env-logger0.7.1More information
ghc-wai-websockets3.0.1.2More information
rust-fst0.4.0More information
rust-getrandom0.1.14More information
rust-crossbeam0.7.3More information
go-github-com-mitchellh-reflectwalk1.0.1More information
saga7.6.2More information
emacs-fancy-battery0.2More information
rust-zeroize1.1.0More information
rust-bit-set0.4.0More information
rust-tracing-subscriber0.1.6More information
rust-libflate0.1.27More information
variant-tools3.1.2More information
gst-editing-services1.18.1More information
rust-libmimalloc-sys0.1.18More information
python-css-html-js-minify2.5.5More information
font-iosevka-sparkle4.0.3More information
libinstpatch1.1.5More information
ruby-sexp-processor4.15.0More information
gnome-shell-extension-gsconnect33More information
ecl-cl+ssl0.0.0-1.701e645More information
rust-bitflags0.9.1More information
rust-inflections1.1.1More information
python-translationstring1.3More information
guile-srfi-890.0.1More information
js-commander6.2.1More information
rust-utf8-width0.1.4More information
rust-simd0.2.4More information
taisei1.3.1More information
maradns3.5.0007More information
seahorse-adventures1.3More information
ziptime0.0.0-0.2a5bc9dMore information
rust-idna0.2.0More information
rust-crossbeam-queue0.1.2More information
python-trytond-stock-supply5.6.1More information
python-scikit-fuzzy0.4.2More information
sbcl-stumpwm-swm-gaps0.0.1-2.920f8fcMore information
ropgadget6.4More information
python-schema-salad7.0.20200811075006More information
wpewebkit2.28.3More information
rust-rustc-ap-rustc-span654.0.0More information
rust-multi-default-trait-impl0.1.2More information
rust-wasm-bindgen-test0.2.50More information
texlive-csquotes51265More information
python-alchemy-mock0.4.3More information
rust-smithay-client-toolkit0.6.4More information
ecl-cl-ppcre-unicode2.1.1More information
emacs-swiper0.13.1More information
cl-acclimation0.0.0-1.4d51150More information
rust-tracing-core0.1.17More information
go-github-com-pelletier-go-toml1.8.0More information
emacs-calibredb2.7.0More information
rust-memsec0.5.7More information
sdl-pango0.1.2More information
rust-futures-executor0.3.8More information
rust-time-macros-impl0.1.1More information
redsea0.18More information
ecl-cl-emb0.4.3-1.fd86521More information
cl-trivial-package-local-nicknames0.2More information
java-eclipse-aether-test-util1.0.2More information
rust-cexpr0.2.3More information
schroedinger1.0.11More information
rust-rustls-native-certs0.4.0More information
rust-pistoncore-event-loop0.49.0More information
rust-proc-macro20.4.30More information
rust-security-framework0.3.4More information
ecl-contextl1.0.0-1.5d18a71More information
rust-calloop0.4.4More information
python-sexpdata0.0.3More information
emacs-multi2.0.1More information
rust-cfg-if0.1.10More information
rust-typeable0.1.2More information
clitest0.3.0More information
ruby-rexml3.2.4More information
rust-rustls0.18.1More information
paprefs1.1More information
kmbox20.04.1More information
ecl-cl-jpeg2.8-1.ec55703More information
python-beren0.7.0More information
ecl-drakma2.0.7More information
rust-env-logger0.4.3More information
rust-pulldown-cmark0.4.1More information
rust-gdk-pixbuf-sys0.10.0More information
r-mi1.0More information
rust-objc-foundation0.1.1More information
python-pytest-sanic1.6.2More information
r-xmisc0.2.1More information
rust-glutin-wgl-sys0.1.3More information
emacs-org-static-blog1.3.0More information
go-github-com-gologme-log1.2.0More information
lldb11.0.0More information
python-pyopengl-accelerate3.1.5More information
virtualpg1.0.2More information
rust-pcre2-sys0.2.5More information
lemonbar-xft2.0.481e123More information
r-hdrcde3.3More information
opensles1.1.0More information
pcb2gcode2.1.0More information
ecl-kmrcl1.111-1.4a27407More information
ocaml4.07-ppx-sexp-conv0.11.2More information
ocaml4.07-splittable-random0.11.0More information
rust-bigdecimal0.2.0More information
collectd5.12.0More information
ecl-cl-ascii-table0.0.0-1.d9f5e77More information
guile2.2-colorized0.1More information
syncthing-gtk0.9.4.4More information
rust-either1.5.3More information
ghc-wai-handler-launch3.0.3.1More information
rust-racer-cargo-metadata0.1.1More information
ecl-clesh0.0.0-1.44e96e0More information
r-ecp3.1.3More information
java-jetbrains-annotations19.0.0More information
sbcl-sycamore0.0.20120604More information
cl-array-operations0.0.0-0.75cbc3bMore information
qiv2.3.1More information
lld11.0.0More information
ocaml4.07-ppx-custom-printf0.11.0More information
mm-common1.0.2More information
r-brms2.14.4More information
ocaml4.07-ppx-here0.11.0More information
ocaml4.07-gsl1.19.3More information
kicad-templates5.1.6More information
ppsspp1.10.3More information
gupnp-igd1.2.0More information
rust-winpty-sys0.4.3More information
rust-rustfix0.4.6More information
sbcl-cl-jpeg2.8-1.ec55703More information
convmv2.05More information
java-tunnelvisionlabs-antlr4-runtime-annotations4.7.4More information
rust-rand-os0.2.2More information
mediasdk20.1.1More information
ocaml4.07-ppx-compare0.11.1More information
bindfs1.14.8More information
libvideogfx1.0.9More information
python-watchgod0.6More information
yml22.6.3More information
metapixel1.0.2-1.98ee9daMore information
curlpp0.8.1More information
rust-globwalk0.5.0More information
libcyaml1.1.0More information
r-greylistchip1.22.0More information
rust-zeroize-derive1.0.0More information
python-sop0.2.0More information
boost-with-python31.72.0More information
opencog0.1.4-1.ceac905More information
maven-shared-incremental1.1More information
ccextractor0.88More information
ocaml4.09-result1.5More information
texlive-dejavu51265More information
fennel0.7.0More information
rust-quote1.0.7More information
ecl-fast-http0.2.0-2.502a377More information
libcacard2.7.0More information
r-versions0.3More information
ecl-hdf5-cffi1.8.18-1.5b5c88fMore information
iputils20190709More information
sbcl-stumpwm-screenshot0.0.1-2.920f8fcMore information
rust-rustc-std-workspace-core1.0.0More information
python-bitarray1.4.0More information
rust-line-wrap0.1.1More information
rust-serde-test0.8.23More information
ecl-cl-async0.6.1-1.f6423e4More information
rust-winapi0.3.9More information
fcitx5-lua5.0.1More information
rust-loom0.3.6More information
go-github-com-yuin-goldmark1.2.1More information
ghc-hspec-megaparsec2.0.1More information
rust-nasm-rs0.2.0More information
go-github-com-rifflock-lfshook2.4More information
python2-serpent1.28More information
flwrap1.3.5More information
rttr0.9.6More information
rust-gio-sys0.10.1More information
r-msm1.6.8More information
intel-xed11.2.0More information
ocaml4.07-ppx-jane0.11.0More information
rust-nom1.2.4More information
rust-gfx-gl0.6.1More information
rust-conv0.3.3More information
ocaml4.07-ppx-assert0.11.0More information
guile2.2-webutils0.1-0.8541904More information
cl-zstd1.0-1.d144582More information
rust-nix0.15.0More information
python-django-q1.3.4More information
zeitgeist1.0.3More information
rust-dissimilar1.0.1More information
go-github-com-gedex-inflector0.0.0-1.16278e9More information
rust-libgit2-sys0.7.11More information
emacs-with-simulated-input2.4More information
perl-sdl2.548More information
ecl-cl-lex1.1.3-1.f2dbbe2More information
rust-memchr2.3.3More information
ecl-documentation-utils1.2.0-0.98630ddMore information
go-github-com-go-ldap-ldap3.1.7More information
perl-opengl0.70More information
ecl-cl-change-case0.1.0-1.5ceff2aMore information
rust-inflector0.11.4More information
python-bitstring3.1.7More information
ruby-single-cov1.3.2More information
freedink-engine109.6More information
ghc-wai-cors0.2.7More information
rust-rustc-std-workspace-std1.0.1More information
pokerth1.1.2More information
rust-ndarray0.12.1More information
xnec2c4.1.1More information
xclickroot1.2More information
rust-block0.1.6More information
queen1.1More information
rust-rustc-hash1.1.0More information
rust-unsafe-any0.4.2More information
rust-webpki0.21.2More information
emacs-execline0.1-1.c75dd9bMore information
emacs-switch-buffer-functions0.0.1More information
python-flask-session0.3.2More information
cl-moptilities0.3.13-1.a436f16More information
r-remoter0.4-0More information
python-zope-deferredimport4.3.1More information
dear-imgui1.79More information
rust-goblin0.0.23More information
chicken-srfi-10.5.1More information
font-jetbrains-mono2.210More information
rust-string-cache0.8.0More information
python-trytond-account-invoice5.6.1More information
libofx0.9.15More information
cl-clawk4-1.3a91634More information
rust-sequoia-openpgp0.9.0More information
rr5.4.0More information
cl-make-hash1.0.2-1.ae0909cMore information
loko-scheme0.7.0More information
surge-synth1.7.1More information
python-hg-evolve10.0.1More information
rust-gio0.7.0More information
ocaml4.07-fieldslib0.11.0More information
cl-trivial-benchmark2.0.0-1.42d7673More information
rust-standback0.2.10More information
python2-importlib-resources1.0.2More information
rust-redox-termios0.1.1More information
r-emplik1.1-1More information
lmdbxx0.9.14.0More information
ruby-test-queue0.4.2More information
fcitx5-gtk5.0.1More information
ghc-jira-wiki-markup1.0.0More information
python-pytest-doctestplus0.7.0More information
ecl-clawk4-1.3a91634More information
xdg-desktop-portal1.7.2More information
rust-size-format1.0.2More information
perl-http-lite2.44More information
authenticator3.32.2More information
go-github-com-aymerick-douceur0.2.0More information
perl-hook-lexwrap0.26More information
inspircd3.8.1More information
libvisual0.4.0More information
ne3.3.0More information
rust-downcast-rs1.1.1More information
gtg0.4More information
python-tifffile2020.6.3More information
r-lsd4.1-0More information
gnome-commander1.10.3More information
python-hypothesmith0.1.2More information
rust-typed-arena1.4.1More information
cl-deflate1.0.3More information
rust-odds0.3.1More information
julia-compat3.9.1More information
rust-piston-texture0.8.0More information
rust-http0.1.17More information
bitcoin-unlimited1.9.0.1More information
libwhich1.1.0More information
r-tidytext0.2.6More information
r-muhaz1.2.6.1More information
emacs-dvc0.0.0-1.591More information
python-socks1.1.2More information
wlr-randr0.1.0More information
python-qdarkstyle2.8.1More information
wireguard-linux-compat1.0.20201112More information
rust-humansize1.1.0More information
rust-wayland-client0.23.6More information
mailman3.3.2More information
cl-lex1.1.3-1.f2dbbe2More information
python-easy-thumbnails2.7More information
python-cloudscraper1.2.48More information
sbcl-1am0.0-1.8b1da94More information
rust-const-random0.1.8More information
libkgapi20.04.1More information
grub-minimal2.04More information
ruby-yard-with-tests0.9.25More information
piet-toolchain0.0.0-0.f002ff6More information
rust-ed25519-dalek1.0.1More information
kexec-tools2.0.21More information
nvme-cli1.13More information
sbcl-stumpwm-stumptray0.0.1-2.920f8fcMore information
rust-rand-os0.1.3More information
python-hupper1.10.2More information
rust-pistoncore-glutin-window0.63.0More information
python2-djvulibre0.8.5More information
guile2.2-rsvg2.18.1-0.05c6a2fMore information
rust-cargo-metadata0.9.1More information
rust-thiserror-impl1.0.22More information
rust-curve25519-dalek3.0.0More information
unoconv0.9.0More information
rust-encoding0.2.33More information
hashcash1.22More information
rust-parking-lot0.7.1More information
emacs-webpaste3.2.0More information
pep-engine2.0.6More information
guile2.2-hall0.3.1More information
rust-reopen0.3.0More information
rust-backtrace-sys0.1.37More information
rust-linked-hash-map0.3.0More information
sbcl-supertrace0.1.0-1.66d22c3More information
rust-crossbeam-utils0.7.2More information
spectacle-analyzer1.0More information
python-globber0.2.1More information
rust-pango-sys0.9.1More information
maven-install-plugin3.0.0-M1More information
usbguard0.7.8More information
rust-tokio-executor0.2.0-alpha.6More information
cachefilesd0.10.10More information
font-gnu-freefont20120503More information
rust-font-kit0.4.0More information
rust-numtoa0.1.0More information
go-github-com-dlclark-regexp21.2.0More information
pasystray0.7.1More information
bashtop0.9.25More information
python-transaction3.0.0More information
rust-failure-derive0.1.7More information
ocaml4.07-dune1.11.3More information
emacs-monokai-theme3.5.3More information
r-tune0.1.2More information
qgis3.12.1More information
emacs-trashed1.9.0More information
ruby-sawyer0.8.2More information
rust-petgraph0.5.1More information
openssh-sans-x8.4p1More information
rust-take-mut0.2.2More information
rust-headers0.2.3More information
rust-parking-lot-core0.4.0More information
rust-tokio-reactor0.1.9More information
go-github-com-andybalholm-cascadia1.0.0More information
plymouth0.9.4More information
rust-tokio-sync0.2.0-alpha.6More information
rust-pulldown-cmark0.2.0More information
rust-matchers0.0.1More information
rust-cexpr0.4.0More information
r-rstatix0.6.0More information
emacs-flycheck-rust1.1More information
emacs-org-fancy-priorities1.1-1.819bb99More information
rust-ivf0.1.0More information
ghc-turtle1.5.15More information
r-tidypredict0.4.8More information
rust-packed-simd0.3.3More information
r-polycor0.7-10More information
rust-autocfg0.1.7More information
python-hyperframe5.2.0More information
ruby-parallel-tests3.0.0More information
sbcl-prometheus0.4.1More information
python-patiencediff0.2.0More information
python-lazr-config2.2.2More information
python-djvulibre0.8.5More information
emacs-feature-mode20190801-1.11ae167More information
r-mlr3learners0.4.3More information
python-pytest-vcr1.0.2-1.4d6c7b3More information
rust-shader-version0.6.0More information
rust-partial-io0.3.1More information
ecl-do-urlencode0.0.0-1.1998464More information
rust-nix0.14.1More information
rust-rand-xorshift0.1.1More information
rust-aom-sys0.2.1More information
rust-ena0.14.0More information
r-kendall2.2More information
java-sonatype-aether-impl1.7More information
ecl-archive0.9-1.631271cMore information
nvc1.5.0More information
rust-tokio-rustls0.12.2More information
gtkd3.9.0More information
udevil0.4.4More information
rust-rand-xorshift0.2.0More information
sbcl-bordeaux-fft1.0.1-0.4a1f560More information
ghc-tasty-hspec1.1.5.1More information
ghc-emojis0.1More information
ldns1.7.1More information
rust-tokio0.2.21More information
rust-proptest0.9.6More information
rust-delta-e0.2.1More information
sbcl-regex1-1.fbc9a9fMore information
rust-gimli0.20.0More information
ecl-asdf-finalizers0.0.0-1.7f537f6More information
megatools1.10.3More information
blobwars2.00More information
rust-normalize-line-endings0.3.0More information
r-pathview1.30.1More information
cl-uax-150.1-1.e7439a9More information
rust-pbkdf20.4.0More information
rust-servo-arc0.1.1More information
malcontent0.8.0More information
ktsuss2.1More information
ecl-quicksearch0.01.04-1.fb02ecfMore information
rust-weedle0.10.0More information
r-fastshap0.0.5More information
cl-archive0.9-1.631271cMore information
poke0.0.0-0.d33317aMore information
rust-clang-sys0.29.3More information
rust-shell-words0.1.0More information
emacs-bm201905More information
r-locpol0.7-0More information
rust-lyon-path0.14.0More information
sbcl-generic-cl0.7.1-1.8e5a814More information
rust-parking-lot-core0.7.2More information
rust-atom0.3.5More information
python-k5test0.9.2More information
rust-opaque-debug0.3.0More information
bschaffl1.2.0More information
bonnie++1.98More information
python-selenium3.141.0More information
rust-scroll-derive0.10.1More information
rust-glib0.10.3More information
java-tunnelvisionlabs-antlr4-runtime4.7.4More information
rust-relative-path1.3.2More information
r-kutils1.70More information
rust-sourcemap6.0.1More information
sbcl-gsll0.0.0-1.1a8ada2More information
python-typing-inspect0.6.0More information
rust-phf-shared0.7.24More information
rust-average0.9.4More information
guile2.2-ics0.2.0More information
r-config0.3More information
flyer-composer1.0rc2More information
rust-path-abs0.5.0More information
rust-data-url0.1.0More information
bruteforce-luks1.4.0More information
emacs-auto-dictionary-mode1.1More information
emacs-gnus-harvest1.0-0.feda071More information
emacs-evil-tmux-navigator0.1.5More information
cl-opticl-core0.0.0-0.b7cd13dMore information
rust-serde-cbor0.10.2More information
rust-serde-big-array0.1.5More information
chicken-srfi-690.4.1More information
ruby-unindent1.0More information
rust-x112.18.2More information
ocaml4.07-ppx-bench0.11.0More information
go-github-com-google-go-github26.1.3More information
rust-libnghttp2-sys0.1.4+1.41.0More information
ecl-gsll0.0.0-1.1a8ada2More information
transset1.0.2More information
ninjas20.2.0More information
emacs-lsp-lua-emmy0.1.0-1.ab53fb2More information
python-pem20.1.0More information
r-slider0.1.5More information
rust-tokio-uds0.2.5More information
sbcl-opticl-core0.0.0-0.b7cd13dMore information
rust-open1.4.0More information
rust-num-enum-derive0.4.3More information
rust-pin-project-lite0.1.11More information
codec20.9.2More information
ghc-spoon0.3.1More information
rust-predicates1.0.5More information
libsoundio2.0.0More information
rust-lab0.8.1More information
guile2.0-shepherd0.8.1More information
sbcl-stumpwm-pass0.0.1-2.920f8fcMore information
rust-y4m0.5.3More information
rust-assert-matches1.3.0More information
cl-clsql6.7.0More information
mmm0.1.1More information
rust-interpolate-name0.2.3More information
r-rsconnect0.8.16More information
rust-constant-time-eq0.1.5More information
r-bdgraph2.63More information
emacs-counsel0.13.1More information
ecl-deeds1.1.1-1.f5df54eMore information
rust-compiletest-rs0.3.22More information
python-slixmpp1.5.2More information
kaddressbook20.04.1More information
go-github-com-spf13-viper1.7.0More information
perl-test-subcalls1.10More information
rust-smithay-clipboard0.3.6More information
ufoai2.6.0_dev-0.a542a87More information
guile-r6rs-protobuf0.9More information
sysprof3.36.0More information
go-github-com-rogpeppe-go-internal1.6.1More information
rust-wayland-commons0.21.13More information
ecl-uax-150.1-1.e7439a9More information
ocaml4.07-sqlite34.4.1More information
lure-de1.1More information
guile2.2-filesystem0.1.0More information
sbcl-repl-utilities0.0.0-1.e0de9c9More information
srt1.4.1More information
kicad-packages3d5.1.6More information
ghc-semialign1More information
cl-exponential-backoff0-1.8d9e844More information
manuskript0.11.0More information
rust-socket20.3.18More information
rust-derive-builder-core0.9.0More information
openni22.2.0More information
rust-alga0.9.3More information
ruby-regexp-property-values1.0.0More information
krb5-auth-dialog3.26.1More information
ocaml4.07-variantslib0.11.0More information
python-bitstruct8.9.0More information
sbcl-quicksearch0.01.04-1.fb02ecfMore information
sbcl-hu.dwim.common-lisp2015-07-09More information
rust-synom0.11.3More information
vala-language-server0.48.1More information
rust-libgit2-sys0.10.0More information
rust-lock-api0.2.0More information
ecm1.0.3More information
r-rxnat1.0.14More information
r-restrserve0.4.0More information
sbcl-mcclim0.9.7-1.04cc542More information
rust-erased-serde0.3.11More information
python-distlib0.3.1More information
gphotofs0.5.0More information
python-geopy2.0.0More information
emacs-pretty-hydra0.2.2More information
go-github-com-alecthomas-repr0.0.1-1.4184120More information
gnash0.8.11-0.583ccbcMore information
go-github-com-hashicorp-go-syslog1.0.0More information
libwuya0.0-1.8835020More information
rust-assert-cmd1.0.1More information
ipset7.10More information
cl-mysql0.1-1.ab56c27More information
rust-form-urlencoded1.0.0More information
texlive-marginnote51265More information
ocaml4.07-ppx-let0.11.0More information
python-pytaglib1.4.6More information
rust-enum-as-inner0.2.1More information
python-libtmux0.8.5More information
cl-qrencode0.1.2More information
rust-md50.6.1More information
rust-encoding-rs0.8.26More information
ecl-serapeum0.0.0-3.c5e352aMore information
guile3.0-lib0.2.6.1More information
rust-blake2b-simd0.5.10More information
guile3.0-sdl20.5.0More information
ztoolkit-rsvg0.1.1More information
stockfish12More information
rust-cc1.0.66More information
go-github-com-surge-glog0.0.0-1.2578debMore information
rust-rayon-core1.7.1More information
rust-hmac0.7.1More information
go-github-com-mattn-go-pointer0.0.0-1.a0a4439More information
rust-piston-float1.0.0More information
nheko0.7.2More information
gcc10.2.0More information
rust-ct-logs0.7.0More information
noisetorch0.8.3More information
python-readme-renderer26.0More information
nfs4-acl-tools0.3.7More information
python-get-version2.1More information
rust-tokio-core0.1.17More information
rust-bytecount0.6.0More information
libantlr3c3.4More information
r-proxyc0.1.5More information
ecl-cl-cont0.3.8-1.fc1fa7eMore information
python-requests_ntlm1.1.0More information
ghc-decimal0.5.1More information
ksystemlog20.04.1More information
ecl-cl-progress-bar0.0.0-1.9374170More information
emacs-objed0.8.3More information
rust-exitfailure0.5.1More information
rust-which2.0.1More information
python-distlib0.3.0More information
rust-swc1.2.24More information
guile3.0-haunt0.2.4More information
ecl-constantfold0.1-1.0ff1d97More information
r-stm1.3.6More information
cl-eager-future20.0.0-1.54df8efMore information
rust-atty0.2.14More information
r-parsnip0.1.4More information
rust-image0.21.3More information
rust-pistoncore-input0.28.0More information
reproc14.1.0More information
fpc3.2.0More information
rust-utf-80.7.5More information
sbcl-html-entities0.02-1.4af0180More information
bitlbee-purple3.6More information
rust-winit0.20.0-alpha6More information
r-flexsurv1.1.1More information
cl-hu.dwim.common-lisp2015-07-09More information
rust-float-cmp0.4.0More information
flux1.4.4More information
emacs-gitlab-snip-helm0.0.2More information
sbcl-cluffer0.0.0-1.4aad29cMore information
xandikos0.2.3More information
rust-libloading0.5.2More information
ecl-trivia.trivial0.0.0-2.37698b4More information
ecl-smart-buffer0.0.1-1.09b9a9aMore information
rust-memmap0.6.2More information
ocaml4.07-merlin3.2.2More information
go-github-com-fatih-color1.8.0More information
rust-tiff0.3.1More information
sbcl-xmls3.0.2-1.18546f0More information
cl-trivial-indent1.0.0-0.2d01694More information
rust-named-pipe0.4.1More information
maven-compiler-plugin3.8.1More information
guile2.2-fibers1.0.0More information
python-django-netfields1.2.2More information
sbcl-cl-pdf0-1.752e337More information
rust-num-iter0.1.41More information
knotes20.04.1More information
rust-edit-distance2.1.0More information
rust-deflate0.8.6More information
rust-derive-more0.99.11More information
sparse0.6.3More information
rust-rand-chacha0.2.2More information
rust-objc-id0.1.1More information
ghc-repline0.2.0.0More information
libxmlplusplus3.2.0More information
rust-heapless0.5.5More information
rust-xdg2.2.0More information
libxmlb0.1.15More information
rust-prettytable-rs0.8.0More information
ocaml-ounit22.2.4More information
r-interval1.1-0.7More information
mycli1.22.2More information
rust-freetype0.4.1More information
font-meera-inimai2.0More information
cl-antik0.0.0-1.e4711a6More information
python-pyopencl2019.1.1More information
ocaml4.07-ppx-js-style0.11.0More information
sbcl-hdf5-cffi1.8.18-1.5b5c88fMore information
texlive-fpl51265More information
ripgrep12.1.1More information
ghc-aeson-better-errors0.9.1.0More information
cl-csv1.0.6-2.68ecb5dMore information
dune-common-openmpi2.7.0More information
lisp-repl-core-dumper0.3.0More information
rust-gdk-pixbuf0.9.0More information
rust-scroll0.10.1More information
sbcl-uax-150.1-1.e7439a9More information
python-mypy-extensions0.4.3More information
rust-grep-cli0.1.5More information
r-fracdiff1.5-1More information
perl-test-distribution2.00More information
akonadi-calendar20.04.1More information
guile2.2-irregex0.9.6More information
python2-pytidylib0.3.2More information
emacs-xref1.0.4More information
djview4.12More information
rust-az1.0.0More information
java-sonatype-aether-test-util1.7More information
rust-xcb0.9.0More information
sbcl-acclimation0.0.0-1.4d51150More information
ecl-antik-base0.0.0-1.e4711a6More information
sbcl-deflate1.0.3More information
emacs-scala-mode1.1.0More information
qmapshack1.14.0More information
emacs-window-purpose1.7-1.f642196More information
rust-nom4.2.3More information
ghc-serialise0.2.1.0More information
gccmakedep1.0.3More information
rust-predicates-tree0.9.0More information
gnome-shell-extension-paperwm36.0More information
rust-h20.2.6More information
ecl-md52.0.4More information
ruby-pandoc-ruby2.1.4More information
java-tunnelvisionlabs-antlr44.7.4More information
python-pyzbar0.1.8More information
go-github-com-frankban-quicktest1.11.1More information
u-boot-qemu-riscv642020.10More information
rust-encoding-index-tests0.1.4More information
cl-constantfold0.1-1.0ff1d97More information
ripmime1.4.0.10-1.a556ffeMore information
emacs-monky0.1More information
vl1-emulator1.1.0.0More information
rust-webpki-roots0.18.0More information
r-ggm2.5More information
lighttpd1.4.57More information
ecl-cl-gobject-introspection0.3-0.7b703e2More information
cl-retrospectiff0.2-0.c2a69d7More information
monolith2.4.0More information
emacs-caps-lock1.0More information
rust-ctrlc3.1.3More information
ecl-custom-hash-table0.3-1.f269831More information
emacs-org-webring2.0.0More information
fox1.6.57More information
sbcl-stumpwm-net0.0.1-2.920f8fcMore information
python-docker3.7.3More information
sbcl-agutil0.0.1-1.df188d7More information
libnice0.1.18More information
maven-surefire-common3.0.0-M4More information
rust-futures0.3.8More information
openjpeg-data2020.05.19More information
opensbi-qemu-virt0.8More information
python-deeptoolsintervals0.1.9More information
rust-crossbeam-queue0.2.3More information
python-translation-finder1.7More information
ocaml4.07-lablgtk2.18.10More information
node-far0.0.7More information
rust-shared-child0.3.4More information
r-regsem1.6.2More information
fcitx5-material-color-theme0.1More information
rust-typed-headers0.1.1More information
r-warp0.2.0More information
ghc-lens-family-core1.2.3More information
rust-grep0.2.7More information
r-bezier1.1.2More information
r-isoband0.2.3More information
sbcl-spatial-trees0-1.81fdad0More information
rust-inflate0.4.5More information
guix-build-coordinator0-12.c33d3f5More information
bbswitch-module0.8-1.ddbd243More information
goocanvas2.0.4More information
rust-hyper-rustls0.21.0More information
emacs-ryo-modal0.4-0.3a54312More information
rust-heck0.3.1More information
clipmenu6.0.1-1.bcbe7b1More information
rust-heapsize0.3.9More information
r-useful1.2.6More information
earlyoom1.6.2More information
go-github-com-charmbracelet-glamour0.2.0More information
regrader1.0.0More information
node-long-stack-traces0.1.2More information
sbcl-datafly0.1-1.adece27More information
cl-quantile-estimator0.0.1More information
python-fuzzywuzzy0.18.0More information
ghc-these1.0.1More information
rust-blobby0.1.2More information
rust-foreign-types0.3.2More information
guile2.2-json4.4.1More information
rust-rand0.4.6More information
rust-match-cfg0.1.0More information
cl-mmap1.0.0-0.ba2e98cMore information
rust-itertools0.5.10More information
python-matrix-synapse-ldap30.1.4More information
python-pathspec0.7.0More information
mswebrtc1.1.1More information
browserpass-native3.0.7More information
libtgvoip2.4.4More information
rust-typed-headers0.2.0More information
rust-num-bigint0.2.6More information
libbraille0.19.0More information
rust-thin-slice0.1.1More information
rust-bit-set0.5.1More information
rust-tempdir0.3.7More information
rust-permutohedron0.2.4More information
rust-rustls0.12.0More information
rust-expectest0.9.2More information
zlfo0.1.3More information
flatzebra0.1.7More information
guile-lens0.1-0.14b15d0More information
python-httmock1.3.0More information
rust-console0.7.7More information
rnnoise0.91More information
rust-users0.9.1More information
gupnp-dlna0.10.5More information
sphinxbase5prealphaMore information
rust-same-file1.0.6More information
rust-jobserver0.1.19More information
python-pytest-mpl0.11More information
python-pydantic1.6.1More information
ecl-qbase640.3.0More information
opensp1.5.2More information
rust-piston0.49.0More information
rust-anyhow1.0.34More information
cl-trivia.trivial0.0.0-2.37698b4More information
rust-pin-project-internal0.4.22More information
python-opentsne0.4.4More information
rust-lyon-geom0.14.1More information
python-django-debug-toolbar-alchemy0.1.5More information
nanomsg1.1.5More information
ecl-lw-compat1.0.0-1.aabfe28More information
rust-webpki-roots0.19.0More information
emacs-evil-leader0.4.3More information
dex0.9.0More information
oil0.8.5More information
python-daemux0.1.0More information
rust-nalgebra0.21.1More information
rust-wasm-bindgen-test-crate-a0.1.0More information
janet1.12.2More information
rust-section-testing0.0.4More information
lmfit8.2.2More information
rust-scoped-tls0.1.2More information
rust-vcpkg0.2.11More information
rust-security-framework-sys1.0.0More information
rust-typenum1.12.0More information
python-potr1.0.2More information
rust-docopt0.6.86More information
rust-num-derive0.3.2More information
ecl-cl-environments0.2.3-1.0b22154More information
go-github-com-muesli-reflow-ansi0.1.0More information
rust-cloudflare-zlib-sys0.2.0More information
emacs-spacemacs-theme0-1.f79c40fMore information
ocaml4.09-dune2.7.1More information
rust-openssl-sys0.9.58More information
guile3.0-xapian0.1.0More information
emacs-company-emoji2.6.0More information
bombadillo2.3.3More information
imv4.1.0More information
tslib1.22More information
cl-skippy1.3.12-0.e456210More information
rust-syn0.15.44More information
glibc-locales-2.292.29More information
rust-foreign-types-shared0.3.0More information
rust-mio-uds0.6.7More information
rust-rust-hawktracer0.7.0More information
rust-ref-cast0.2.7More information
r-packrat0.5.0More information
rust-fxhash0.2.1More information
ruby-kpeg1.1.0More information
rust-phf0.7.24More information
rust-rspec1.0.0-beta.4More information
bcunit3.0.2More information
rust-rustc-ap-rustc-macros654.0.0More information
sbcl-green-threads0.3-1.fff5ebeMore information
rust-rustls0.15.2More information
go-golang-org-x-xerrors0.0.0-0.5ec99f8More information
emacs-rime1.0.3More information
go-github-com-go-git-go-billy5.0.0More information
libqglviewer2.7.2More information
emacs-vterm0-4.a670b78More information
rust-block-cipher-trait0.4.2More information
rust-shared-library0.1.9More information
svt-vp90.3.0More information
python-contextvars2.4More information
rust-fuchsia-cprng0.1.1More information
js8call2.2.0More information
rust-block-buffer0.8.0More information
cl-ltk0.992More information
rust-serde1.0.117More information
rust-glib0.9.3More information
rust-serde-test0.9.15More information
rust-ref-cast-impl0.2.7More information
perl-attribute-util1.07More information
r-msmseda1.28.0More information
rust-time0.2.19More information
python-pycryptodomex3.9.9More information
ocaml4.07-configurator0.11.0More information
rust-libflate-lz771.0.0More information
python2-pyqtwebengine5.14.0More information
glyr1.0.10More information
ghc-optional-args1.0.2More information
lib2geom1.0-3.17e0d21More information
gnome-user-docs3.32.3More information
ruby-maxitest3.6.0More information
cl-lw-compat1.0.0-1.aabfe28More information
rust-quickcheck0.9.2More information
r-modeldata0.1.0More information
rust-png0.16.6More information
cl-randist0.4.2More information
rust-tokio-test0.3.0More information
ecl-green-threads0.3-1.fff5ebeMore information
python2-sortedcontainers2.1.0More information
r-zyp0.10-1.1More information
python-simpleeval0.9.10More information
edid-decode0.0.0-1.74b6418More information
ocaml4.07-ppx-sexp-value0.11.0More information
font-iosevka-etoile4.0.3More information
r-kegggraph1.50.0More information
hexer1.0.6More information
rinutils0.2.0More information
go-github-com-emersion-go-sasl0.0.0-0.240c840More information
r-phylogram2.1.0More information
rust-wasi0.9.0+wasi-snapshot-preview1More information
emacs-ctrlf1.2More information
ufetch0.2-1.98b6220More information
rust-enum-as-inner0.3.3More information
shakespeare-spl1.2.1More information
gnome-latex3.36.0More information
ruby-prawn-templates0.1.2More information
go-github-com-alecthomas-chroma0.8.0More information
ldacbt2.0.2.3More information
rust-matrixmultiply0.1.15More information
node-semver7.2.1More information
vinci1.0.5More information
java-surefire-common-junit43.0.0-M4More information
ghc-tabular0.2.2.7More information
rust-float-cmp0.5.3More information
memkind1.10.1More information
belcard1.0.2More information
python-re-assert1.1.0More information
emacs-helm-cider0.4.0-1.9363cc5More information
rust-hkdf0.9.0More information
python-pytest-flask1.0.0More information
rust-fixedbitset0.2.0More information
rust-cast0.2.3More information
emacs-ivy-posframe0.5.5More information
python-hicmatrix12More information
java-eclipse-aether-api1.0.2More information
r-topicmodels0.2-11More information
rust-tester0.5.0More information
r-org-eck12-eg-db3.12.0More information
libglib-testing0.1.0More information
bchoppr1.8.0More information
hyperledger-iroha1.1.1More information
r-shapforxgboost0.0.4More information
aws-checksums0.1.10More information
emacs-parsec0.1.3-0.2cbbbc2More information
keventviews20.04.1More information
r-getpass0.2-2More information
cl-libuv0.1.6-1.32100c0More information
neverball1.6.0-1.760a25dMore information
sbcl-clml0.0.0-0.95505b5More information
rust-hex0.3.2More information
python-geographiclib1.50More information
clipnotify1.0.2More information
drbd-utils9.15.1More information
ucsim0.6-pre67More information
rust-proptest0.10.1More information
python2-smmap3.0.1More information
sbcl-array-utils1.1.1-0.f90eb90More information
rust-average0.10.4More information
rust-combine-regex-11.0.0More information
editline1.17.1More information
rust-bindgen0.33.2More information
rust-thread-local0.2.7More information
akonadi-search20.04.1More information
ghc-html-conduit1.3.2.1More information
perl-scalar-string0.003More information
sbcl-float-features1.0.0More information
ruby-sorcerer2.0.1More information
burgerspace1.9.3More information
rust-rusttype0.7.9More information
meshlab2020.06More information
rust-universal-hash0.4.0More information
catfish1.4.13More information
rust-memoffset0.2.1More information
rust-bindgen0.52.0More information
go-github-com-kardianos-minwinsvc1.0.0More information
srain1.1.2More information
zeal0.6.1More information
python-msgpack-numpy0.4.6.post0More information
guile3.0-hashing1.2.0More information
ocaml4.09-findlib1.8.1More information
r-mixsqp0.3-43More information
rust-fern0.5.9More information
emacs-roguel-ike0.1.0-0.706dcb0More information
libcamera0.0.0More information
dhewm31.5.0More information
sbcl-qmynd1.0.0-1.7e56dafMore information
aha0.5.1More information
util-linux-with-udev2.35.1More information
sbcl-clesh0.0.0-1.44e96e0More information
perl-data-entropy0.007More information
rust-crypto-tests0.5.5More information
r-lgr0.4.1More information
ecl-trivial-shell0.2.0-1.e02ec19More information
python-xmlschema1.1.2More information
ruby-rugged1.1.0More information
gqrx2.13.5More information
rust-futures-executor-preview0.3.0-alpha.19More information
rust-webpki-roots0.14.0More information
emacs-exwm-no-x-toolkit0.24More information
rust-rand-hc0.2.0More information
rust-clang-sys1.0.0More information
rust-quickcheck0.2.27More information
rust-libloading0.3.4More information
rust-docopt1.1.0More information
rust-dashmap3.11.10More information
ecl-array-utils1.1.1-0.f90eb90More information
gnuradio-osmosdr0.2.2More information
r-gagedata2.28.0More information
rust-gobject-sys0.9.1More information
dpkg1.20.5More information
rust-arbitrary0.2.0More information
libmms0.6.4More information
go-github-com-twpayne-go-xdg3.1.0More information
rust-console0.9.2More information
ruby-mkmf-lite0.3.2More information
rust-quasi-codegen0.32.0More information
wla-dx9.11More information
rust-lzma-sys0.1.17More information
ruby-middleware0.1.0More information
python-bashlex0.14More information
rust-futures-select-macro-preview0.3.0-alpha.19More information
rust-assert-cli0.6.3More information
r-tensor1.5More information
rust-hashbrown0.9.1More information
rust-ws2-32-sys0.2.1More information
dbxfs1.0.48More information
r-hrbrthemes0.8.0More information
ecl-cl-project0.3.1-1.1511070More information
python-liblarch3.0.1More information
rust-compiletest-rs0.2.10More information
guile-srfi-1800-0.9188bf9More information
rust-notify4.0.15More information
rust-gl0.11.0More information
nextpnr-ice400.0.0-1.fbe486dMore information
ocaml4.07-ppx-fail0.11.0More information
liferea1.12.9More information
lesspipe1.85More information
rust-bresenham0.1.1More information
kldap20.04.1More information
rust-dyn-clone1.0.2More information
gajim-openpgp1.2.14More information
ecl-cl-randist0.4.2More information
perl-authen-passphrase0.008More information
ruby-gherkin-ruby0.3.2More information
xcur2png0.7.1More information
libkexiv220.12.0More information
rust-serial-test-derive0.4.0More information
python-zope-hookable5.0.1More information
rust-blobby0.3.0More information
python-atpublic1.0More information
rust-skeptic0.9.0More information
emacs-jsonrpc1.0.14More information
sbcl-sxql0.1.0-1.5aa8b73More information
kdav20.04.3More information
ecl-postmodern1.19-1.74469b2More information
rust-cookie-store0.7.0More information
rust-scoped-tls1.0.0More information
bcmatroska20.23More information
ecl-clx-truetype0.0.1-1.c6e10a9More information
python-telethon1.17.5More information
ocaml-mdx1.7.0More information
sbcl-pzmq0.0.0-1.7c7390eMore information
rust-xml-rs0.8.3More information
libglvnd1.3.2More information
guile2.2-shepherd0.8.1More information
sbcl-cl-environments0.2.3-1.0b22154More information
ocaml4.07-bin-prot0.11.0More information
rust-glutin-egl-sys0.1.4More information
perl-authen-dechpwd2.007More information
ecl-external-program0.0.6-1.5888b8fMore information
rust-webpki-roots0.17.0More information
go-github-com-muesli-reflow-indent0.1.0More information
emacs-meson-mode0.3More information
rust-quickcheck0.5.0More information
emacs-modus-vivendi-theme1.0.2More information
cl-lisp-unit20.2.0-1.fb97215More information
xdialog2.3.1More information
rust-noop-proc-macro0.2.1More information
rust-lscolors0.7.1More information
ruby-rubocop-ast0.3.0More information
r-survmisc0.5.5More information
rust-serde0.4.3More information

Removed packages

NameVersion
sbcl-cxml+xml0.0.0-1.00b22bfMore information
python2-oslo.log3.36.0More information
sbcl-lack-request0.1.0-1.abff8efMore information
ecl-periods-series0.0.2-1.983d4a5More information
python2-pykafka2.4.0More information
ert-runner0.7.0-1.90b8fddMore information
ocaml-ppx-variants-conv0.11.1More information
ocaml-ppx-expect0.12.0More information
python2-ws4py0.3.2More information
go-gopkg.in-asn1-ber.v11.2More information
vulkan-icd-loader1.1.121More information
gnubackgammon1.06.002More information
ocaml-ppx-pipebang0.11.0More information
ocaml-bin-prot0.11.0More information
python2-xsge2018.02.26More information
ecl-ascii-strings0-1.5048480More information
python2-django-overextends0.4.3More information
python2-pytest-httpbin0.2.3More information
tales-of-maj-eyal1.6.4More information
ocaml-lambda-term2.0.2More information
sbcl-fprog1.0.0-1.7016d1aMore information
sbcl-3bmd-ext-code-blocks0.0.0-1.192ea13More information
magit-svn2.2.1-1.9e33ceeMore information
glibc-utf8-locales-2.282.28More information
attic0.16More information
opensmtpd-next6.6.1p1More information
ocaml-ppxlib0.6.0More information
sbcl-cl-cffi-gtk-gobject0.11.2-1.29443c5More information
lookingglassa12-182c475More information
python2-gipc0.6.0More information
intel-gpu-tools1.24More information
emacs-emms-player-mpv5.3More information
python2-apipkg1.4More information
ocaml-sedlex2.1More information
python2-oslo.i18n3.20.0More information
python2-marshmallow3.0.0b14More information
sbcl-fare-quasiquote-optima20171130More information
python2-django-appconf1.0.3More information
ocaml-earley2.0.0More information
python2-django-filter1.1.0More information
ecl-queues.priority-queue0.0.0-1.47d4da6More information
ocaml-ppx-typerep-conv0.11.1More information
python2-pygit20.28.2More information
java-tukaani-xz1.6More information
sbcl-cffi-grovel0.19.0More information
go-github-com-audriusbutkevicius-go-nat-pmp0.0.0-0.452c976More information
armagetron-advanced0.2.8.3.4More information
ocaml-zed2.0.3More information
python2-django-sortedm2m1.3.3More information
ocaml-ppx-let0.11.0More information
conkeror68.3.0-guix0-preview1More information
python2-mox30.24.0More information
sbcl-lack-response0.1.0-1.abff8efMore information
python2-ddt1.1.3More information
python-django-overextends0.4.3More information
bpython20.18More information
python2-flasgger0.6.3More information
sbcl-usocket-server0.7.1-1.86e7efbMore information
sbcl-trivia.ppcre0.0.0-1.902e0c6More information
glibc-locales-2.282.28More information
qtoctave5.1.0More information
python2-graphql-relay0.4.5More information
python2-django-mailman31.1.0More information
perl-test2-bundle-extended0.000072More information
cl-queues.priority-queue0.0.0-1.47d4da6More information
python2-django-bulk-update1.1.10More information
ocaml-gsl1.19.3More information
python2-openstackdocstheme1.18.1More information
python2-greenlet0.4.15More information
python2-django-simple-math-captcha1.0.7More information
the-battle-for-wesnoth1.14.9More information
battle-tanks0.9.8083More information
python2-werkzeug0.14.1More information
python2-django-rq1.3.1More information
ocaml-typerep0.11.0More information
emacs-evil-ediff0.0.3-13.eb36c82More information
ocaml-pcre7.4.1More information
python2-django-redis4.10.0More information
ecl-simple-scanf0-1.5048480More information
sbcl-usocket-boot00.7.1-1.86e7efbMore information
python2-django-gravatar21.4.2More information
sbcl-lack-middleware-backtrace0.1.0-1.abff8efMore information
python2-geventhttpclient1.3.1More information
glibc-locales-2.272.28More information
magit2.90.1-2.c761d28More information
sbcl-trivia.cffi0.0.0-1.902e0c6More information
ecl-usocket-server0.7.1-1.86e7efbMore information
emacs-cl-generic0.3More information
python2-ujson1.35More information
emacs-emms-player-simple-mpv5.3More information
python2-pytest-bootstrap4.4.2More information
groovy-emacs-modes2.0More information
sbcl-queues.simple-queue0.0.0-1.47d4da6More information
perl-geo-ip1.51More information
ocaml-ppx-optcomp0.11.0More information
ecl-3bmd-ext-code-blocks0.0.0-1.192ea13More information
ocaml-piqi0.7.7More information
python2-django-jsonfield1.0.3More information
sbcl-cl-cffi-gtk-gdk0.11.2-1.29443c5More information
go-gopkg.in-ldap.v22.5.1More information
python2-gdrivefs0.14.9More information
python2-oslo.config5.2.0More information
python2-django-contact-form1.3More information
cl-lack-component0.0.0-1.abff8efMore information
python2-gst1.16.1More information
python2-django-assets0.12More information
python2-graphene0.10.2More information
ocaml-ppx-fields-conv0.11.0More information
sbcl-lack-component0.0.0-1.abff8efMore information
ocaml-ppx-js-style0.11.0More information
ocaml-gsl1.24.0More information
ocaml-ppx-assert0.11.0More information
sbcl-prove-asdf1.0.0-1.4f9122bMore information
python2-flask-restful-swagger0.19More information
ocaml-uri2.2.0More information
fish-fillets-ng1.0.1More information
sbcl-ascii-strings0-1.5048480More information
python2-netcdf41.4.2More information
ocaml-ppx-jane0.11.0More information
ocaml-ppx-tools5.1+4.06.0More information
git-annex-remote-hubic0.3.1More information
python-kivy-next1.10.1More information
ocaml-js-build-tools113.33.06More information
ocaml-ezjsonm1.1.0More information
python2-pyopengl3.1.0More information
gnome-tweak-tool3.32.0More information
cl-fare-quasiquote-extras20171130More information
cl-simple-scanf0-1.5048480More information
kiki-the-nano-bot1.0.2More information
monero-core0.15.0.1More information
ocaml-gen0.5.2More information
ocaml-jane-street-headers0.11.0More information
cl-fprog1.0.0-1.7016d1aMore information
ocaml-core0.11.3More information
cl-fare-quasiquote-optima20171130More information
cl-usocket-server0.7.1-1.86e7efbMore information
sbcl-lack-middleware-static0.1.0-1.abff8efMore information
lpd8editor0.0.13More information
python2-flask-migrate2.0.3More information
cataclysm-dark-days-ahead0.DMore information
python2-ply3.10More information
ecl-queues.simple-queue0.0.0-1.47d4da6More information
sbcl-iolib.conf0.8.3More information
ocaml-ppx-sexp-message0.11.0More information
flex2.6.1More information
ocaml-ppx-bin-prot0.11.1More information
sbcl-cl-cffi-gtk-gdk-pixbuf0.11.2-1.29443c5More information
ocaml-ppx-fail0.11.0More information
ocaml-spawn0.13.0More information
kicad-library4.0.7More information
python2-scikit-image0.14.2More information
l-abbaye-des-morts2.0.1More information
sbcl-periods-series0.0.2-1.983d4a5More information
python2-pynvim0.3.2More information
python2-parted3.11.2More information
sbcl-queues.priority-cqueue0.0.0-1.47d4da6More information
python2-django-tagging0.4.6More information
sbcl-trivia.level00.0.0-1.902e0c6More information
sbcl-iolib.common-lisp0.8.3More information
mcron21.1.3More information
sbcl-queues.priority-queue0.0.0-1.47d4da6More information
ocaml-utop2.4.2More information
cl-lack-request0.1.0-1.abff8efMore information
livestreamer0.14.2More information
ocaml-expect0.0.6More information
ocaml-ppx-sexp-conv0.11.2More information
python2-django-statici18n1.3.0More information
llvm-for-extempore3.7.1More information
ocaml-fieldslib0.11.0More information
sbcl-graph-dot0.0.0-0.78bf9ecMore information
sbcl-graph-json0.0.0-0.78bf9ecMore information
ocaml-ppx-hash0.11.1More information
bbdb3.1.2More information
eudev-with-hwdb3.2.8More information
sbcl-iolib.base0.8.3More information
ocaml-variantslib0.11.0More information
cl-lack-middleware-static0.1.0-1.abff8efMore information
ao-cad0-3.6e39254More information
emacs-evil-mu4e0.0.3-13.eb36c82More information
ocaml-core-kernel0.11.1More information
cl-periods-series0.0.2-1.983d4a5More information
sbcl-trivia.balland20060.0.0-1.902e0c6More information
the-battle-for-wesnoth-server1.14.9More information
binutils-static-stripped-tarball2.32More information
paredit24More information
cl-queues.priority-cqueue0.0.0-1.47d4da6More information
ocaml-ppx-bench0.11.0More information
python2-flask-httpauth3.2.3More information
python2-flask-principal0.4.0More information
ecl-queues.simple-cqueue0.0.0-1.47d4da6More information
python2-dj-database-url0.4.2More information
python2-eventlet0.25.1More information
gitlab-runner12.6.0More information
pootle2.8.2More information
sbcl-trivia.quasiquote0.0.0-1.902e0c6More information
python2-pykka1.2.1More information
cl-lack-response0.1.0-1.abff8efMore information
python2-pytest-django3.1.2More information
python2-keystoneclient1.8.1More information
python2-sge-pygame1.5.1More information
cl-fare-quasiquote-readtable20171130More information
ecl-fprog1.0.0-1.7016d1aMore information
python2-django-allauth0.39.1More information
python2-oslo.context2.20.0More information
sbcl-iolib.asdf0.8.3More information
ocaml-ppx-here0.11.0More information
python2-oslo.serialization2.24.0More information
jami-client-gnome20191101.3.67671e7More information
pngcrunch1.8.13More information
python2-kivy-next1.10.1More information
python2-hacking1.0.0More information
haskell-mode16.1More information
python2-tempest-lib1.0.0More information
python2-gevent1.3.7More information
ocaml-charinfo-width1.1.0More information
python2-mysqlclient1.3.13More information
python2-pyarrow0.10.0More information
cl-queues.simple-queue0.0.0-1.47d4da6More information
ocaml-ppx-sexp-value0.11.0More information
sbcl-queues.simple-cqueue0.0.0-1.47d4da6More information
python2-pyopengl-accelerate3.1.0More information
python-docker-py3.7.3More information
portmidi-for-extempore217More information
python2-flask-script2.0.6More information
cl-queues.simple-cqueue0.0.0-1.47d4da6More information
cl-ascii-strings0-1.5048480More information
python2-glances3.1.1More information
python2-apispec0.25.3More information
sbcl-cffi-toolchain0.19.0More information
sbcl-lack-util0.1.0-1.abff8efMore information
python2-oslosphinx4.10.0More information
giac-xcas1.5.0-85More information
dungeon-crawl-stone-soup-tiles0.24.0More information
sbcl-fare-quasiquote-readtable20171130More information
emacs-wgrep-helm2.3.1More information
git-modes1.2.8More information
ocaml-configurator0.11.0More information
sbcl-trivia.level20.0.0-1.902e0c6More information
qtcanvas3d5.12.6More information
python2-django1.11.25More information
cl-lack-util0.1.0-1.abff8efMore information
ocaml-compiler-libs0.11.0More information
python2-configargparse0.14.0More information
stb-image-for-extempore0-1.152a250a7More information
ecl-queues.priority-cqueue0.0.0-1.47d4da6More information
sbcl-simple-scanf0-1.5048480More information
ocaml-ppx-enumerate0.11.1More information
sbcl-iolib.grovel0.8.3More information
the-legend-of-edgar1.32More information
ocaml-ppx-inline-test0.12.0More information
guile2.0-guix1.0.1-10.41b4b71More information
ocaml-ppx-custom-printf0.11.0More information
ocaml-ppx-base0.11.0More information
glibc-utf8-locales-2.272.28More information
python2-django-contrib-comments1.8.0More information
ocaml-piqilib0.6.15More information
sbcl-cl-cffi-gtk-glib0.11.2-1.29443c5More information
python2-gitpython2.1.11More information
sbcl-cl-cffi-gtk-gio0.11.2-1.29443c5More information
cl-syntax-annot0.0.3More information
sbcl-cl-syntax-annot0.0.3More information
python2-bandit1.4.0More information
sbcl-cl-cffi-gtk-cairo0.11.2-1.29443c5More information
sbcl-cffi-libffi0.19.0More information
cl-3bmd-ext-code-blocks0.0.0-1.192ea13More information
newsbeuter2.13More information
maven-core3.6.1More information
cl-prove-asdf1.0.0-1.4f9122bMore information
dungeon-crawl-stone-soup0.24.0More information
cl-lack-middleware-backtrace0.1.0-1.abff8efMore information
python2-lmdb0.95More information
python2-hy0.17.0More information
ocaml-ppx-compare0.11.1More information
python2-reno2.7.0More information
sbcl-trivia.level10.0.0-1.902e0c6More information
python2-conda4.3.16More information
deeptools3.1.3More information
sbcl-cl-cffi-gtk-pango0.11.2-1.29443c5More information
avr-binutils2.32More information
python2-swiftclient2.6.0More information
ocaml-stdio0.11.0More information
python2-sphinx1.7.7More information
project-starfighter2.0.0.3More information
php-with-bcmath7.4.1More information
python2-debian0.1.36More information
boost-python31.70.0More information
emacs-seq2.20More information
ecl-prove-asdf1.0.0-1.4f9122bMore information
ocaml-splittable-random0.11.0More information
python2-oslo.utils3.36.2More information
ocaml-ppx-optional0.11.0More information
ocaml-sqlite34.4.1More information
geiser0.10More information
python2-gitdb2.0.4More information
python2-pywavelets1.0.1More information

Version changes

NameVersions
gst-plugins-ugly
killbots
emacs-helpful
info-reader
python2-pygments
libwpe
python2-passlib
r-rsubread
emacs-next
emacs-cyberpunk-theme
python-tomlkit
r-gviz
dmenu
hplip-minimal
igt-gpu-tools
r-uwot
python-scp
python-pyfaidx
libsoup
python-sympy
python-reportlab
gparted
emacs-counsel-etags
ghc-stylish-haskell
libmypaint
ruby-sinatra
mate-desktop
libtasn1
r-tclust
r-performanceanalytics
femtolisp
emacs-helm-exwm
evince
kmix
keyutils
python-rq
perl-list-moreutils
palapeli
magic-wormhole-transit-relay
jbig2dec
texlive-hyphen-danish
chirp
ocaml-fmt
re2
lxqt-openssh-askpass
r-future
python-publicsuffix2
ocaml-alcotest
perl-compress-raw-bzip2
texlive-hyphen-polish
r-dexseq
ecl-cl-fad
r-adamethods
texlive-hyphen-slovak
texlive-latex-upquote
attica
libmatekbd
goffice
sbsigntools
gmsh
ecl-bst
mame
guile-dsv
zeromq
r-genomicranges
glm
python2-imagesize
sbcl-cl-str
stapler
kodi
r-acet
xl2tpd
lxqt-qtplugin
python-redis
python2-libarchive-c
xfce4-genmon-plugin
r-mgcv
guile-readline
python2-pycodestyle
r-systemfonts
blast+
texlive-latex-pstool
iso-codes
python-socksipychain
r-openssl
r-preprocesscore
stb-image
libvpx
fenics-dolfin
emacs-ebuild-mode
r-copynumber
texlive-hyphen-galician
dune-common
python2-tabulate
gzdoom
gnu-efi
python2-flask
java-commons-lang3
nagios
r-proxy
boost-signals2
r-tiff
abc
librepcb
s6
gwl
roffit
texlive-latex-babel
python-tinycss2
emacs-use-package
texlive-latex-wrapfig
gphoto2
python2-shapely
perl-io-socket-ip
r-argparse
r-biocset
r-sys
starlong
r-usethis
font-alias
ocaml-ocurl
r-emmeans
go-github-com-gogo-protobuf
r-protviz
balsa
gnucash
texlive-latex-fancybox
guile3.0-sqlite3
r-flexdashboard
grilo
python-html5lib
python2-s3transfer
texlive-latex-galois
texlive-latex-cmap
python-pygenometracks
letsencrypt
emacs-reformatter
krunner
tbb
python
texlive-hyphen-uppersorbian
inxi-minimal
deutex
gst-libav
synthv1
gnome-clocks
libva
emacs-diff-hl
r-affycontam
python2-pytest-runner
r-renv
ruby-pdf-reader
r-irkernel
httpstat
r-broom
zsh
python-django-override-storage
kaldi-gstreamer-server
emacs-emms
python2-pyparsing
r-delayedmatrixstats
r-modeltools
tigervnc-server
python-fenics-ffc
handbrake
r-forcats
kollision
kcompletion
pjproject
librime
nautilus
python-notmuch
arm-trusted-firmware-rk3328
qemu
python-sge-pygame
ncdu
libdca
r-dose
tryton
dbacl
ungoogled-chromium
java-jsonp-api
python2-sympy
datamash
python-pandocfilters
cl-nibbles
python-protobuf
s6-dns
python2-editor
texlive-hyphen-icelandic
ruby-nokogiri
texlive-hyphen-catalan
sbcl-trivia
miniupnpc
r-fda
cl-portable-threads
mate-common
texlive-hyphen-finnish
keepalived
texlive-latex-titlesec
sane-backends-minimal
libphidget
guile2.0-git
u-boot-vexpress-ca9x4
texlive-etoolbox
r-colourpicker
python-typing-extensions
hexchat
gsm
magic-wormhole
boost-static
r-scater
emacs-helm-system-packages
texlive-hyphen-bulgarian
kreversi
r-polspline
deluge
r-flowstats
kdbusaddons
r-dt
python-pycairo
emacs-ansi
r-genomation
wavpack
python-multidict
r-riboprofiling
texlive-hyphen-slovenian
r-assertive
r-msnbase
cl-slime-swank
python-markdown
python-mysqlclient
xfburn
perl-catalyst-plugin-configloader
xkeyboard-config
pam-mount
linbox
r-rsvg
python-datrie
varnish-modules
python-pyflakes
r-limma
xfce4-pulseaudio-plugin
emacs-leaf
r-threejs
python-minimal-wrapper
python-django-extensions
python2-redis
python-scandir
ninja
r-import
gnome-terminal
libtermkey
r-vcd
libmatemixer
moreutils
emacs-org-ql
dealii-openmpi
texlive-latex-draftwatermark
jamm
r-methylumi
sambamba
python-parso
minetest
r-bacon
r-mime
texlive-hyphen-georgian
emacs-logview
konquest
python-mailmanclient
libqtxdg
xfce4-session
r-depecher
python-xsge
sbcl-cl-ppcre-unicode
python2-zope-schema
usbmuxd
r-abseqr
usbutils
python-pytest-sugar
texlive-hyphen-serbian
emacs-lsp-ivy
python-pyside-2
gap
emacs-org-ref
python-cheetah
r-affy
benchmark
r-extradistr
gnome-keyring
lxqt-notificationd
ghostscript
libmirage
opusfile
texlive-generic-unicode-data
maven-settings
r-annotationhub
python-contextlib2
python2-xlib
file-roller
qtconnectivity
emacs-sparql-mode
python-gdal
appstream-glib
python2-packaging
vpnc-scripts
meld
python2-soupsieve
python-mpmath
r-flowworkspace
guile-squee
r-ncdfflow
cl-flexi-streams
chafa
mypaint-brushes
u-boot-novena
r-chipseq
python-passlib
java-bouncycastle
edi
thunar
glibmm
audiocd-kio
r-purrr
texlive-hyphen-piedmontese
ecl-alexandria
xvid
totem-pl-parser
oath-toolkit
protobuf-c
r-yapsa
python2-pycryptodome
spiped
emacs-ghub
ocaml-mccs
vhba-module
xbanish
plasma-framework
texlive-times
gmp
python-invoke
guile-gcrypt
wv
emacs-magit
iperf
emacs-counsel-projectile
python2-dateutil
minimap2
youtube-dl
r-cicero
r-htmlwidgets
ephemeralpg
gnome-control-center
libinput
emacs-visual-regexp
ruby-method-source
perl-cpanel-json-xs
go-github-com-gorilla-mux
light
emacs-datetime
ruby-asciidoctor
r-rootsolve
java-ngs
angband
xpra
python-coverage
readline
spdlog
ilmbase
guile-simple-zmq
r-deseq
awscli
brotli
r-openxlsx
r-rmysql
python2-natsort
vim
gnunet-gtk
qtcharts
qtx11extras
python-flask-migrate
cl-closer-mop
coreutils
r-bdsmatrix
kdeclarative
nginx
soundtouch
tintin++
emacs-erc-image
r-doby
unbound
pzstd
zita-alsa-pcmi
r-bioccheck
cogl
python-zope-proxy
r-rcistarget
ecl-cl-ppcre
radare2
python2-requests-mock
dejagnu
kcalendarcore
r-calibrate
python2-jsonschema
go-github-com-prometheus-node-exporter
r-tidygraph
weasyprint
r-spatialextremes
python-dbus
noweb
r-bigpint
python-zope-component
sbcl-trivial-cltl2
cl-trivial-cltl2
python-pycodestyle
ghostscript-with-cups
ffmpegthumbs
texlive-hyphen-swedish
klavaro
r-birta
emacs-helm-org-contacts
sbcl-cl-webkit
r-fithic
gl2ps
emacs-racket-mode
libnet
wxwidgets-gtk2
pagekite
gst-plugins-bad
r-lmtest
xfce4-statusnotifier-plugin
r-zip
r-shinyjs
python2-sqlparse
guile-gi
r-singlecellexperiment
kate
python-feather-format
opensmtpd
emacs-flycheck-grammalecte
python-mwclient
python-ujson
r-statnet-common
supertux
knotifyconfig
libepoxy
zathura-pdf-poppler
texlive-fonts-amsfonts
lmdb
python2-ttystatus
python-glances
kdelibs4support
libqmatrixclient
opensc
emacs-org-reveal
r-huge
minisign
r-lintr
glade
gnutls-dane
r-hardyweinberg
python2-attrs
r-ks
cl-ptester
rsibreak
desktop-file-utils
kimageformats
r-timeseriesexperiment
kapman
gnome-calendar
evolution-data-server
ifuse
r-mvabund
ruby
emacs-org
librsvg
perl-dbix-class
libzip
bomber
r-biovizbase
mcelog
cutter
perl-net-dns
amtk
r-gosemsim
texlive-latex-eepic
guile3.0-bytestructures
ebtables
r-graphlayouts
guile2.0-ssh
quakespasm
texlive-latex-dinbrief
r-extremes
hiawatha
font-misc-ethiopic
r-arrmnormalization
fmit
ocaml-lwt
guile-semver
emacs-lua-mode
gimp
emacs-cider
fabric
ocaml-logs
breeze-icons
libstatgrab
gcc-toolchain
python-apache-libcloud
emacs-esup
python-paramiko
simplescreenrecorder
sqlite-with-column-metadata
python2-orator
perl-role-tiny
emacs-ivy-rich
r-adegenet
python-pluggy
emacs-helm-org
emacs-browse-at-remote
go-github-com-oschwald-maxminddb-golang
editorconfig-core-c
picmi
python2-babel
xtl
r-biocor
r-hpar
ant-junit
python-folium
r-effectsize
r-biocgenerics
libgme
emacs-transient
texlive-latex-koma-script
python-pexpect
ruby-yard
r-sn
r-txtplot
python2-reportlab
emacs-clojure-mode
kmag
cryptsetup
kcachegrind
freeorion
openh264
ant
texlive-hyphen-indonesian
python-fenics-ufl
cloc
mcron
go-github-com-stretchr-testify
perl-ipc-system-simple
emacs-evil-collection
bitcoin-core
r-vim
hurd-minimal
r-cghcall
emacs-relint
cl-iterate
netcat-openbsd
r-bifet
r-ggcyto
r-sjlabelled
r-distillery
glibc-utf8-locales
netcdf-fortran
redkite
qtpass
wayland-protocols
cl-local-time
perl-class-c3
knot
mozjs
emacs-xwidgets
pango
libkcompactdisc
texlive-latex-xcolor
r-biocviews
texlive-hyphen-armenian
kcontacts
font-fira-code
emacs-mmm-mode
mate-calc
cl-serapeum
r-mosaiccore
r-pscl
python-dj-database-url
r-experimenthub
lapack
r-multiassayexperiment
noise-repellent
texlive-latex-natbib
emacs-transmission
python2-lxml
python-django-contrib-comments
kdiamond
deja-dup
r-fitdistrplus
totem
r-massspecwavelet
kded
nauty
texlive-beamer
chocolate-doom
python-certifi
sbcl
netcdf
liburcu
libsigrok
cpuid
r-ade4
ocaml-bisect-ppx
r-zfpkm
python2-parso
r-lavaan
util-linux
kgoldrunner
python2-certifi
emacs-slack
dnsmasq
r-rrcov
seabios
emacs-org-make-toc
cl-trivial-features
kio
cppcheck
r-variantfiltering
r-rgadem
editorconfig-vim
f3
r-hdf5array
python-urllib3
aqbanking
orcus
maven-shared-utils
r-ps
python-shellingham
r-inspect
texlive-latex-expdlist
python-acme
python-fenics-dijitso
s6-portable-utils
libcss
perl-image-exiftool
urlscan
ghc-yesod-persistent
emacs-evil-surround
coreutils-minimal
texlive-hyphen-german
geany
python-numba
exo
python-pyfakefs
r-rgooglemaps
texlive-context-base
texlive-latex-eso-pic
ghc-persistent
sonnet
python-axolotl
emacs-polymode
python-zope-location
vis
python-xapian-bindings
archivemount
sbcl-simple-parallel-tasks
coq-gappa
qtmultimedia
r-abtest
sbcl-bordeaux-threads
inxi
gnome-screenshot
python2-css-parser
texlive-latex-fancyvrb
python-zipp
ocaml-parsexp
windowmaker
r-mlinterfaces
emacs-ob-restclient
tremc
r-epi
emacs-with-editor
r-repr
ocaml-migrate-parsetree
r-sgseq
emacs-geiser
octave
xapian
hpcguix-web
kauth
xfce
gcompris-qt
tadbit
libgc-back-pointers
lxqt-connman-applet
libexif
patchwork
shotwell
libmicrodns
libmpdclient
neofetch
ruby-mocha
r-rhdf5
libpipeline
ecl-nibbles
emacs-bbdb
nlohmann-json-cpp
r-directlabels
python2-zope-exceptions
python-flake8
texlive-bibtex
python-cookiecutter
python-django-contact-form
texlive-latex-g-brief
r-chron
texlive-latex-tabulary
python-llvmlite
python-django-debug-toolbar
xfce4-clipman-plugin
alsa-modular-synth
lxqt-themes
liblangtag
texlive-latex-doi
r-rsqlite
r-heatmaply
emacs-dash
geocode-glib
vala
r-linnorm
python2-pysnptools
python2-pycurl
kfourinline
emacs-highlight-escape-sequences
orc
coq-mathcomp
python2-docutils
r-actigraphy
php
r-httr
ungoogled-chromium-wayland
ruby-cucumber-expressions
r-annotationfuncs
texlive-latex-environ
texlive-latex-varwidth
cqfd
monero-gui
slurp
libuninameslist
u-boot-firefly-rk3399
googletest
r-cobs
cl-str
ruby-rubocop
python2-pyfakefs
ruby-rdoc
s6-rc
r-yarn
libconfuse
harfbuzz
guile2.0-sqlite3
hurd-core-headers
signify
emacs-frog-menu
java-tomcat
python-dask
pd
emacs-minimal
perl-json-maybexs
sbcl-cl-ppcre
mg
xmlsec-nss
ptpython2
python-pastedeploy
fmt
python-imagesize
pencil2d
r-expm
dtc
thermald
entr
liblo
notmuch
python-cleo
obs
r-bioccasestudies
superlu-dist
texlive-hyphen-mongolian
r-seqpattern
python2-autopep8
python2-graphviz
orca
python2-odfpy
python-docutils
texlive-latexconfig
r-shinyfiles
emacs-wgrep
r-wavcluster
lvm2
python-apsw
help2man
lxqt
maven-wagon-provider-api
python-proteus
sg3-utils
libcap
perl-list-moreutils-xs
emacs-graphviz-dot-mode
libgee
drumkv1
texlive-generic-tex-ini-files
xonsh
serd
ocaml
r-readr
gn
mate-utils
mplayer
sbcl-slynk
r-harmony
bs1770gain
par2cmdline
python-jsonrpc-server
emacs-stream
texlive-latex-threeparttable
ledger
r-seqinr
openal
r-tmb
r-affxparser
ocaml-tsdl
r-gqtlstats
weechat
python2-alembic
r-boot
nsd
maven-wagon-http-shared
gperftools
libxkbcommon
r-ggrepel
libcxx
python2-mako
font-fantasque-sans
lightdm-gtk-greeter
xkbcomp
python-robotframework-lint
r-weights
sane-backends
r-xbseq
binutils-gold
r-methylkit
hubbub
fping
r-gbm
impressive
guitarix-lv2
zabbix-server
emacs-elisp-demos
wxwidgets
r-ldheatmap
fontforge
r-edger
python-shiboken-2
xfce4-cpufreq-plugin
rsnapshot
xfconf
tmate
python2-pyrsistent
luakit
r-pillar
r-quantmod
mingw-w64-x86_64-winpthreads
arcanist
popt
r-bicare
pluma
python-flask-babel
r-rmpfr
ecl-lzlib
openssh
r-a4preproc
network-manager-openvpn
utf8proc
sbcl-next
emacs-parsebib
jupyter-guile-kernel
go-github-com-emicklei-go-restful
xf86-video-sis
edirect
r-bgmix
c-ares
emacs-projectile
ecl-trivial-gray-streams
r-fftwtools
libselinux
ecasound
r-rjava
burp
sbcl-cl-unicode
python-flask
emacs-mixed-pitch
r-lubridate
python-falcon
zam-plugins
opam
perl-file-find-object
vc-dwim
python2-axolotl
texlive-hyphen-turkmen
elogind
python-botocore
crypto++
emacs-evil
ghc
texlive-latex-polyglossia
kblocks
delft-icon-theme
libssh
r-np
linux-libre-arm-veyron
osip
python-next
python2-uritemplate
gedit
python-prompt-toolkit
r-ggstance
r-optparse
pulsemixer
texlive-fonts-cm-super
python-loompy
subversion
kdoctools
bash
nftables
feh
python-scikit-image
r-genomicalignments
gegl
python2-cairocffi
texlive-latex-wasysym
python-cssselect
libimobiledevice
sbcl-babel
r-poibin
nml
knewstuff
r-pbapply
upx
mupdf
cl-eos
texlive-hyphen-romanian
wlroots
mate-media
python2-wheel
cl-ppcre
r-bioconcotk
innoextract
python-asn1crypto
r-arm
r-rocr
enchant
java-openmpi
libopenshot
perl-lwp-mediatypes
r-httpuv
qttools
kwayland
pspp
emacs-bongo
ktexteditor
zathura
python-geventhttpclient
emacs-solarized-theme
csound
r-minimal
emacs-ledger-mode
go-github-com-mattn-go-isatty
r-reshape2
emacs-org-caldav
connman
r-sandwich
kunitconversion
openshot
exiv2
wayland
libreoffice
texlive-fonts-knuth-lib
kcoreaddons
guile2.0-json
go
lxqt-session
qtremoteobjects
r-msigdbr
i2pd
texlive-fontname
mafft
perl-pod-simple
r-biocpkgtools
font-comic-neue
python-pytest-flake8
postgresql
lttoolbox
r-jsonlite
inkscape
python2-peewee
gdb-arm-none-eabi
r-lpsymphony
perl-http-date
r-bookdown
r-nlme
python-joblib
cl-iolib
python-axolotl-curve25519
r-sigpathway
r-cubature
wmbattery
emacs-hy-mode
texlive-mflogo-font
mtr
python-attrs-bootstrap
texlive-latex-url
r-generics
u-boot-a20-olinuxino-lime2
sigrok-firmware-fx2lafw
postgis
ghc-distributive
texlive-ukrhyph
texlive-hyphen-welsh
gst-plugins-good
cl-octet-streams
uhttpmock
lz4
sysstat
kapidox
r-class
git
python2-bleach
python-stdnum
texlive-generic-epsf
r-globals
arm-trusted-firmware-rk3399
mcrl2-minimal
nim
emacs-doom-themes
r-xml2
libgit2
r-imager
r-sysfonts
r-organismdbi
catch2
ecl-ironclad
lxqt-admin
man-pages
inotify-tools
r-survey
lxqt-policykit
r-genomicinteractions
nginx-documentation
libevdev
r-hexbin
emacs-sly
r-oligo
at-spi2-core
gnome-online-accounts
emacs-yasnippet-snippets
r-scone
hdparm
gptfdisk
python2-pycairo
pigx-scrnaseq
lxrandr
python-humanfriendly
r-scales
seqmagick
python-file
python-keyring
kyotocabinet
python-ply
texlive-latex-preview
r-sna
emacs-csv-mode
texlive-hyphen-friulan
python2-scandir
python2-tqdm
texlive-latex-filemod
r-diversitree
emacs-helm
r-lifecycle
python-oslotest
java-httpcomponents-httpclient
mbedtls-apache
python-minimal
maven-wagon-tck-http
python-sphinxcontrib-htmlhelp
xxhash
r-rcppgsl
fenics
signing-party
geos
r-ibdreg
python-dirsync
python-duniterpy
go-golang-org-x-crypto
python-s3transfer
r-abjutils
rng-tools
lxqt-config
libnsbmp
docbook-xml
r-r-methodss3
texlive-tex-plain
r-ggraph
r-atacseqqc
python2-cloudpickle
texlive-latex-anysize
kwidgetsaddons
r-biocgraph
calibre
r-a4
python-fonttools
r-ebseq
s6-linux-init
toybox
texlive-cm-super
texlive-graphics-cfg
qtquickcontrols2
maxima
kdewebkit
python-anndata
perl-test-utf8
emacs-find-file-in-project
ocaml-result
gnome-settings-daemon
libgphoto2
libnsutils
libjpeg-turbo
zutils
r-cairo
guile-persist
offlineimap
qqc2-desktop-style
tor
hangups
ed
eternalterminal
font-abattis-cantarell
nomad
zathura-pdf-mupdf
python-gridmap
r-crosstalk
mate-terminal
texlive-fonts-lm
qtwebglplugin
openrct2
ncurses
kinit
python-fenics-fiat
tuxguitar
python-jedi
easyrpg-player
khard
pioneer
python2-hypothesis
enlightenment
r-reticulate
singular
r-motifrg
r-furrr
giac
python-gitpython
python-pynvim
btrfs-progs-static
r-biocfilecache
emacs-exwm
r-lhs
mpv
libaacs
u-boot-cubieboard
r-plyr
ruby-ffi
evisum
efl
r-shiny
guile3.0-gcrypt
sdl2-image
python-django-filter
python-robotframework
python-simplejson
python-django-jinja
guile3.0-git
granatier
libsass
r-affyio
ruby-unf-ext
python2-h5py
pwsafe
emacs-zones
python-parameterized
python-tabulate
python-podcastparser
proteinortho
r-mutationalpatterns
r-tidyr
r-biocversion
aircrack-ng
gstreamer
bennu-game-development-modules
emacs-doom-modeline
elixir
bridge-utils
guile-config
darktable
sbcl-kmrcl
texlive-latex-changepage
harmonist-tk
glibc-locales
python-base58
python-sphinx-intl
python2-pytest-cov
python2-efl
python-networkx
emacs-dockerfile-mode
r-promises
lxtask
go-github-com-marten-seemann-qtls
r-compositions
r-ggvis
vulkan-loader
maven-settings-builder
emacs-which-key
xcb-proto
texlive-metapost
hydrogen
khtml
f2fs-tools
r-gower
atk
zfs
python2-backports-functools-lru-cache
llvm
python-subunit-bootstrap
r-abaenrichment
r-europepmc
gobject-introspection
cl-dexador
texlive-latex-amscls
go-github-com-certifi-gocertifi
tracker-miners
r-rhtslib
emacs-helm-swoop
diamond
texlive-latex-acronym
purpose
texlive-latex-ms
java-eclipse-sisu-inject
texlive-latex-ocgx2
python2-pympler
at-spi2-atk
youtube-viewer
btrfs-progs
python2-publicsuffix2
sdl2
python-audioread
font-ibm-plex
maven-wagon-provider-test
ecl-closer-mop
supertuxkart
r-rcpparmadillo
python-orator
nethack
r-gamlss-dist
octave-cli
links
emacs-helm-projectile
ghc-persistent-sqlite
python-language-server
re2c
python2-pyyaml
r-ggeffects
libdazzle
r-pkgload
vulkan-headers
blender
perl-moox-handlesvia
ruby-rake
openscenegraph
ruby-aruba
mumble
go-github-com-petermattis-goid
python-aiohttp
htslib
texlive-hyphen-spanish
python-hypothesis
r-digest
lbzip2
git-minimal
r-iso
poppler
texlive-hyphen-czech
kdesu
emacs-erc-hl-nicks
cfitsio
libomp
r-d3r
python2-attrs-bootstrap
polari
mate-applets
r-iclusterplus
emacs-magit-svn
python-hy
python-attrs
r-caret
r-ebarrays
r-biodist
r-gtools
nano
premake
lchat
r-ruvseq
devhelp
console-setup
python2-pep8
gtk+
python2-orderedmultidict
qtgamepad
libostree
json-c
python2-pluggy
r-flowclust
chess
r-pwr
python-pyside-2-tools
libproxy
gdb
opari2
python-cython
python2-llfuse
emacs-adaptive-wrap
r-reactomepa
node
python-django-gravatar2
next
r-showtextdb
r-tseries
python2-patsy
python-requests
python2-xenon
acpi-call-linux-module
texlive-latex-eukdate
mpfrcx
xxd
guile-reader
python-scikit-learn
wireless-regdb
espeak-ng
apfs-fuse
r-rngwell
emacs-zenburn-theme
claws-mail
emacs-extempore-mode
lua-luv
ngircd
r-idpmisc
po4a
arb
qtspeech
emacs-ample-regexps
python-wheel
gnome-mpv
multipath-tools
texlive-iftex
python-pyopenssl
delly
r-biosigner
kamoso
python2-apsw
r-affycoretools
sbcl-iterate
odamex
python-pip
cwm
emacs-ace-window
grammalecte
pcsc-lite
python-trytond-country
libgweather
python-libmpsse
python-pytest-timeout
vim-full
procps
kconfigwidgets
dia
python-black
r-gamlss
texlive-hyphen-russian
cl-base64
libring
python-zope-schema
gd
python-twine
r-gplots
emacs-helm-bibtex
libosmium
glslang
dealii
marisa
python-django-rq
android-udev-rules
emacs-edit-indirect
augeas
python2-wcwidth
r-dplyr
mingw-w64-i686
r-assertr
matio
texlive-generic-babel-english
sbcl-stumpwm-with-slynk
r-s4vectors
wine64-staging
guile-picture-language
python-libarchive-c
linux-libre
r-diffbind
mako
mpg123
r-complexheatmap
hwloc
livemedia-utils
ddcutil
texlive-latex-bigfoot
ruby-pdf-inspector
micropython
texlive-dehyph-exptl
r-genie3
zathura-djvu
r-plotly
texlive-hyphen-afrikaans
python-freezegun
fastahack
progress
r-somaticsignatures
mousepad
libzen
python2-sip
taxtastic
supercollider
escpr
patchelf
python-pytest-django
libqmi
busybox
nfs-utils
texlive-fonts-mflogo-font
perl-digest-md5
texlive-tex-ini-files
libgpg-error
cl-simple-parallel-tasks
u-boot-puma-rk3399
qterminal
duperemove
r-ggplot2
u-boot-pine64-lts
python-flask-restful
emacs-dimmer
qemu-minimal
khal
r-remotes
python2-libmpsse
vdpauinfo
cl-kmrcl
r-nonnest2
spirv-headers
newsboat
r-unifiedwmwqpcr
mpfi
python2-netifaces
texlive-pstool
python2-pathlib2
sbcl-cl-containers
ecl-chanl
bubblewrap
cl-stumpwm
wgetpaste
vimb
pdfpc
python-importlib-metadata
python-pytest-xdist
texlive-graphics-def
r-gseabase
python2-pydot
ruby-listen
python-babel
r-genomicfiles
kwallet
reaver
baloo
fprintd
python-libxml2
slop
kplotting
mate-power-manager
r-quasr
texlive-xypic
gnupg
python-pastel
liblxqt
perl-ev
icestorm
lxqt-panel
texlive-latex-needspace
go-github-com-whyrusleeping-gx-util
python-pyparsing
r-robustbase
r-erma
r-processx
geonkick
kolf
eolie
gnome-backgrounds
r-bamsignals
texlive-palatino
sratom
python2-pytzdata
xfce4-taskmanager
express
kwindowsystem
emacs-orgalist
oil-shell
toot
python2-pyicu
python-lmdb
r-rcas
whois
texlive-charter
ocaml-tyxml
r-clue
libseccomp
emacs-restclient
python-flask-wtf
kblackbox
st
osm2pgsql
libntlm
icecat
smartmontools
poppler-qt4
python-html2text
r-showtext
python2-six
r-umap
dfu-util
nudoku
python2-mutagen
vcflib
gajim
r-spatial
r-rtracklayer
openexr
gcr
python-nose2
clamav
texlive-latex-psnfss
can-utils
r-hitc
r-getoptlong
libinput-minimal
lua5.1-luv
r-blockmodeling
python-graphviz
python-configparser
boinc-client
r-manipulatewidget
emacs-oauth2
emacs-evil-org
libupnp
emacs-tuareg
bap
cpupower
guile-sdl2
diction
python2-six-bootstrap
freeciv
texlive-metafont-base
warzone2100
python-license-expression
python2
curl
emacs-ts
python2-ipywidgets
cl-named-readtables
krita
sbcl-rt
openjdk
r-ioniser
ecl-dexador
edgar
ocamlify
u-boot-a20-olinuxino-lime
qtwayland
python-django-redis
python-pyqt+qscintilla
kiriki
scm
r-xvector
emacs-ebdb
perl-base
r-tximport
emacs-ert-runner
sbcl-cl-cffi-gtk
xev
r-chipcomp
r-rsbml
qbittorrent
dune
emacs-darkroom
perl-glib
r-sfsmisc
texblive-generic-xypic
ruby-prawn
r-pls
r-doparallel
emacs-elpher
mate-icon-theme
tzdata
libmanette
ghc-esqueleto
libringclient
python2-requests
neovim
libdom
xsnow
cava
python-webob
lximage-qt
mate
python-pyudev
r-mvtnorm
python-djangorestframework
python2-msgpack
xfce4-notifyd
kitty
r-scdd
perl-text-format
swaks
python2-cleo
texlive-zapfding
texlive-pst-text
python2-vobject
texlive-generic-ifxetex
hidapi
tumbler
beep
emacs-guix
r-reportingtools
r-sva
solaar
jami
soundconverter
drumstick
python-debug
r-matrix-utils
r-hmisc
reuse
ksyntaxhighlighting
redis
emacs-ivy
python-urwid
python-pycryptodome
git-lfs
r-bayestestr
r-igraph
guile
javacc
ncmpc
texlive-hyphen-dutch
r-recipes
r-covr
python2-cython
emacs-webfeeder
giflib
r-rsvd
r-r6
sbcl-cl-base64
xf86-input-libinput
python-bandit
perl-term-readkey
libxcb
python2-asn1crypto
freerdp
matcha-theme
obconf-qt
gsl
ecl-split-sequence
qtxmlpatterns
ruby-hoe
lua5.1-sec
guile-studio
r-rgl
maven-artifact
emacs-buttercup
python-sphinxcontrib-websupport
qps
r-varianttools
sudo
python-seaborn
lxqt-about
texlive-hyphen-latin
rocksdb
guile-stis-parser
r-overlap
mpd
r
u-boot-malta
emacs-ess
python2-zope-testing
glib
python2-flake8
r-delayedarray
python2-pyqt
guile2.0-gnutls
ecl-simple-parallel-tasks
emacs-julia-mode
cl-trivial-gray-streams
emacs-beginend
guile-daemon
harmonist
python-odfpy
sxiv
sbcl-alexandria
translate-shell
python-netifaces
python2-botocore
perl-gd
python2-jinja2
python2-mechanize
qtwebview
python-pyasn1
emacs-lice-el
musl
cl-fare-quasiquote
bitlbee
starfighter
emacs-focus
gst-plugins-base
dico
libmtp
texlive-hyphen-ukrainian
r-uuid
libkscreen
r-lemon
python2-widgetsnbextension
vmpk
r-category
gcc-objc++
cdemu-daemon
apache-arrow
r-prabclus
ruby-sdoc
teeworlds
emacs-counsel-dash
r-shortread
u-boot-bananapi-m2-ultra
python-lxml
r-backports
emacs-js2-mode
texlive-hyphen-latvian
emacs-xr
r-sjstats
python2-pynacl
texlive-latex-verbatimbox
ghostscript-with-x
tmux-xpanes
python-furl
emacs-google-translate
dav1d
socat
python-sqlalchemy
cmatrix
python2-oslotest
r-genomicfeatures
python-more-itertools
emacs-no-x-toolkit
python-cairosvg
mutt
scribus
python2-pybigwig
libhx
gwenhywfar
python-pygit2
perl-ole-storage-lite
emacs-posframe
r-future-apply
r-bit64
emacs-idris-mode
fribidi
bochs
gtk-vnc
python2-pastedeploy
python2-tables
emacs-google-maps
coq-interval
python-colorama
glpk
texlive-latex-amsmath
texlive-latex-etoolbox
r-mcmc
texlive-latex-appendix
r-rvcheck
r-nnet
r-aucell
texlive-amsfonts
guitarix
lua5.2-luv
python2-idna
nethogs
r-factominer
nix
kwave
r-snpstats
libkcddb
wpebackend-fdo
font-inconsolata
r-goseq
texlive-latex-listings
python-py
r-summarizedexperiment
lftp
gcab
libjaylink
python-uritemplate
perl-file-listing
cl-unicode
picom
ssdeep
python2-fonttools
ruby-thor
libopenshot-audio
pt-scotch32
wine64
ecl-cl-unicode
mes
gsasl
xen
kservice
kigo
r-grohmm
emacs
ruby-nokogumbo
font-open-dyslexic
git-flow
gjs
kdevelop-pg-qt
r-stringi
transset-df
postorius
libksysguard
python-llfuse
sbcl-dexador
cl-burgled-batteries3
libsigc++
ecl-rt
dropbear
r-r-rsp
python-jsonschema
mate-settings-daemon
python2-smmap2
emacs-erlang
rclone
r-wgcna
tcsh
python2-simplejson
emacs-telega
python2-zope-interface
font-rachana
r-ffbase
nsgenbind
e2fsck-static
vdirsyncer
r-spdep
byobu
libnftnl
libvirt-glib
r-iranges
python2-subunit-bootstrap
gfbgraph
r-etm
conky
leptonica
python2-sphinxcontrib-websupport
ocaml-extlib
cl-alexandria
python-pytest-cov
sbcl-cl-fad
r-dosnow
ecl-ptester
libsecret
imagemagick
r-colorspace
kpeople
r-actuar
kdenlive
libuv
r-mclust
perl-parent
libmwaw
python-flask-restful-swagger
netsurf
python2-mock
cl-cl+ssl
bluez-qt
java-jsonp-impl
ksirk
kxmlgui
spice-protocol
r-haven
python2-twine
perl-date-manip
julia
r-clusterprofiler
emacs-evil-magit
r-yaqcaffy
libextractor
bsequencer
libwebp
ruby-domain-name
ogre
libbsd
chibi-scheme
r-gtrellis
perl-xs-object-magic
python-prometheus-client
texlive-latex-pdfx
ecl-s-sysdeps
glibc-hurd-headers
python2-protobuf
python-hacking
texlive-tetex
java-plexus-classworlds
emacs-polymode-ansible
texmacs
cifs-utils
zita-resampler
r-haplo-stats
ruby-pry
rawtherapee
ffmpeg
websocketpp
python2-stem
karchive
python2-pysocks
kicad
slurm
pcre
ecl-cl-prevalence
ocaml-octavius
mtdev
xfce4-screensaver
u-boot-pine64-plus
gnumach
r-a4reporting
snappy
r-htmltools
r-quantreg
compton-conf
pciutils
skribilo
wxmaxima
binutils
emacs-arduino-mode
freefall
emacs-rainbow-mode
sakura
r-spdata
vulkan-tools
kodi-wayland
gnome-shell
xaos
r-rversions
python-openpyxl
endless-sky
sxhkd
knetwalk
sdparm
cups-minimal
tinyxml2
zabbix-agentd
libass
mtools
ruby-ruby-engine
libfive
python-tables
font-tamzen
r-hms
python-oauthlib
r-tsp
r-rex
java-xmlgraphics-commons
r-dendextend
debootstrap
r-rprojroot
vte
emacs-treepy
python2-cryptography-vectors
r-rcppparallel
r-emdbook
isl
python-django-tagging
pari-gp
libjpeg
r-xmlparsedata
python2-py
kactivities
uthash
r-drr
filezilla
python-conda
yadifa
python-trytond
python-coveralls
munge
bear
ir
cl-parse-declarations
powwow
python2-pyflakes
laby
batctl
r-styler
docker-libnetwork-cmd-proxy
sbcl-nibbles
sway
mrustc
emacs-slime
libidn2
r-xts
python-parted
r-dbplyr
libplist
r-r-filesets
emacs-magit-popup
scotch32
ocaml-fileutils
x86-energy-perf-policy
r-writexl
r-cytoml
python2-rq
python2-zope-configuration
qtgraphicaleffects
r-biocstyle
texlive-hyphen-basque
r-bigrquery
jimtcl
u-boot-rockpro64-rk3399
r-parmigene
r-heatplus
r-mzr
texlive-fonts-ec
libhandy
alsa-lib
cli-visualizer
heimdal
dune-pdelab
r-mixtools
picard
emacs-all-the-icons
kross
python-sphinxcontrib-devhelp
gexiv2
cl-cffi
r-refmanager
go-github-com-spf13-pflag
python2-mccabe
java-plexus-interpolation
r-tsa
r-network
emacs-websocket
python-dulwich
xorg-server-xwayland
ksnakeduel
ruby-ttfunk
python-pyqt-without-qtwebkit
ecl-puri
qtquickcontrols
wireshark
kfilemetadata
kdnssd
r-monocle
font-iosevka-slab
go-github-com-syndtr-goleveldb
r-mnormt
sdcc
hevea
ki18n
python-zope-testrunner
python2-fastimport
dehydrated
highlight
extra-cmake-modules
texlive-latex-overpic
mate-user-guide
lua-filesystem
extempore
tcl
cryptsetup-static
discount
u-boot-cubietruck
python-sqlparse
r-ifultools
kmonad
lxqt-runner
pies
gnunet
tig
emacs-ssh-agency
cl-usocket
python2-fasteners
ptpython
jo
clang-toolchain
r-libcoin
umockdev
hcxdumptool
emacs-helm-emms
fasm
cl-babel
avidemux
s6-networking
texlive-fonts-txfonts
kjobwidgets
emacs-olivetti
genimage
cl-sqlite
texlive-generic-hyph-utf8
r-dalex
r-topgo
guix-data-service
r-foreach
httpie
texlive-hyphen-romansh
r-multidataset
python2-parameterized
xf86-input-wacom
groovy
vapoursynth
bemenu
simple-scan
python-genshi
camlp5
python2-subunit
ijs
emacs-evil-markdown
r-tm
dune-grid
gunicorn
texlive-latex-subfigure
font-adobe-source-serif-pro
libtirpc
r-ropls
flashrom
global
texlive-standalone
liblcf
uefitool
net-snmp
xfdesktop
hdf5
texmaker
kiconthemes
gaupol
python-configargparse
r-slam
engrampa
djvulibre
r-dtw
libxpm
r-nloptr
perl-net-dns-resolver-programmable
r-npsurv
ruby-rake-compiler
python2-cffi
python2-pytest-flakes
quadrapassel
mcomix
python-regex
python-cryptography
kxmlrpcclient
exempi
lua5.2-filesystem
terminology
lsof
rubber
ruby-kramdown
gloox
go-github-com-rcrowley-go-metrics
libgsf
r-magrittr
python2-flask-babel
r-git2r
python-werkzeug
r-multtest
emacs-no-x
r-biocsingular
waybar
gnome-mines
geeqie
five-or-more
emacs-info-plus
unionfs-fuse
perl-archive-extract
python-peewee
r-fs
python-aiohttp-socks
gst-transcoder
emacs-evil-matchit
kbounce
mate-backgrounds
ecl-parse-declarations
ecl-usocket
trezord
python2-freezegun
python-netcdf4
texlive-latex-capt-of
ibus
libvorbis
r-ztable
josm
r-minfi
python2-lazy-object-proxy
kjsembed
r-genefilter
python-xenon
skopeo
cl-containers
shellcheck
ruby-parser
r-trend
pixz
libstdc++-doc
r-ff
python-ipywidgets
emacs-lsp-ui
tigervnc-client
python-requests-toolbelt
gp2c
r-gofuncr
dlib
dino
cl-bst
emacs-elpy
ocaml-sexplib0
seahorse
txr
pass-git-helper
r-activepathways
python-arrow
texlive-tiny
gnome-shell-extension-dash-to-panel
gnome-shell-extensions
imb-openmpi
cl-random-forest
lilv
emacs-web-server
doctest
texlive-latex-filecontents
gnutls
lxqt-globalkeys
clang-runtime
clipper
fontmanager
r-rstudioapi
texlive-latex-fncychap
python-pytest
texlive-latex-trimspaces
emacspeak
cgit
clp
volk
lynx
python2-pyodbc
gnome-disk-utility
python-click
python-mako
r-annaffy
i3-gaps
emacs-amx
emacs-php-mode
lskat
cl-trivia
qview
r-tinytex
r-ctc
skalibs
gnu-pw-mgr
emacs-writeroom
ecl-trivial-features
gnuastro
rhash
python2-utils
go-github-com-mattn-go-colorable
python2-gridmap
r-tibble
openssl
r-copywriter
poppler-qt5
xfce4-timer-plugin
java-jmapviewer
r-withr
r-biomart
python-oslosphinx
python-sphinx
emacs-company
java-xstream
mate-polkit
python-css-parser
u-boot-pinebook
ncompress
gtkwave
r-xml
r-bgx
fswatch
expat
file
emacs-dash-docs
gnome-autoar
ocaml-base64
python-django
r-fgsea
r-flexmix
python-requests-mock
r-ggfortify
r-ggformula
flann
ruby-jekyll-paginate-v2
libmicrohttpd
bind
hurd-headers
denemo
mcabber
python-tornado
lxqt-archiver
mariadb
perl-catalyst-view-tt
cl-lzlib
r-rnifti
u-boot-mx6cuboxi
python2-dulwich
graphviz
kbreakout
luminance-hdr
libdrm
r-mda
emacs-counsel-tramp
r-lpsolve
texlive-hyphen-irish
r-flowcore
macs
texinfo
pianobar
r-lattice
python2-mpmath
r-graph
r-factoextra
mingw-w64-x86_64
fortune-mod
texlive-latex-media9
gnome-calculator
python2-faker
python2-snowballstemmer
python-stem
ruby-omniauth
maven-wagon-file
r-magick
sbcl-trivia.trivial
emacs-multi-term
python2-pygobject
perl-io-compress
mate-panel
perl-moox-file-configdir
emacs-cmake-mode
spice
perl-sql-abstract
rofi
r-arules
perl-async-interrupt
texlive-latex-l3packages
ntl
java-httpcomponents-httpmime
python-vobject
sbcl-bst
texlive-latex-cyrillic
docker-compose
mate-session-manager
http-parser
ksudoku
r-cardata
r-yaml
r-modelr
arc-theme
vcftools
cm
libarchive
crawl-tiles
texlive-latex-xmpincl
samtools
ruby-power-assert
python-psutil
ruby-rubygems-tasks
lua5.1-filesystem
dblatex
python-fpylll
texlive-fonts-adobe-times
ocaml-ppx-tools-versioned
texlive-latex-ifplatform
python-snowballstemmer
emacs-forge
mu
ruby-sanitize
python-cachy
r-matrixstats
splix
python-astroid
texlive-latex-footmisc
python-subunit
bundler
spread-sheet-widget
python2-nbxmpp
geoclue
ethtool
iptables
python-django-simple-math-captcha
xmlsec
r-prettyunits
python-flit
python2-html5-parser
usb-modeswitch-data
r-systempiper
texlive-url
python-typing
cppunit
texlive-latex-jknapltx
python2-invoke
cdemu-client
python-pytest-runner
r-biclust
sbcl-lzlib
httpd
ocaml-merlin
r-leaps
r-dirichletmultinomial
flatpak
webkitgtk
r-diagram
python-bleach
ruby-byebug
bedtools
spirv-tools
python-pycosat
python-pygobject
r-bayesplot
python2-pexpect
r-bio3d
python-cooler
u-boot-nintendo-nes-classic-edition
yapet
r-suppdists
kmousetool
texlive-latex-parskip
font-gnu-unifont
sbcl-fast-io
mlt
r-iterators
stress-make
texlive-ydoc
sbcl-split-sequence
r-nlp
python-html5-parser
libpeas
python-marshmallow
python2-psutil
kemoticons
r-sjplot
patchage
r-bioassayr
emacs-vdiff
libfilezilla
libtiff
perl-cgi
lyx
pybind11
go-github-com-prometheus-client-golang
gramps
qtwebchannel
r-seriation
bullet
ksquares
emacs-ascii-art-to-unicode
qutebrowser
r-misc3d
emacs-sml-mode
python2-paramiko
ktouch
python2-dirsync
guile-git
certbot
restinio
tilda
texlive-fonts-adobe-zapfding
r-plotrix
texlive-tex-texinfo
numactl
r-ensembldb
emacs-helm-sly
r-squarem
p11-kit
libkmahjongg
emacs-yaml-mode
texlive-xcolor
r-rttf2pt1
eid-mw
r-ttr
r-qdnaseq
vips
emacs-clang-format
armagetronad
python-pywavelets
magic-wormhole-mailbox-server
r-reqon
r-checkmate
gx
texlive-latex-eqparbox
openmpi
emacs-tldr
libsepol
ocaml-sexplib
texlive-latex-type1cm
texlive-fonts-adobe-palatino
r-segmented
git-annex
r-variantannotation
sbcl-slime-swank
font-adobe-source-sans-pro
libressl
screengrab
python2-genshi
r-lme4
python-fastimport
r-a4base
python2-pyasn1
gama
ccid
enet
texlive-ae
python-fasteners
r-mice
yoshimi
go-ipfs
r-widgettools
tinyscheme
r-keggrest
r-kableextra
ruby-json-pure
libedit
r-genomicscores
emacs-rust-mode
go-github-com-jackpal-gateway
r-assertive-reflection
r-data-table
r-catdap
r-affycomp
texlive-hyphen-occitan
r-ggdendro
qtractor
coq-equations
network-manager
mingw-w64-i686-winpthreads
texlive-hyphen-esperanto
r-rqc
iproute2
kdevelop
foo2zjs
r-rsamtools
libspatialite
r-geneplotter
emacs-request
lxpanel
mod-wsgi
guile-sqlite3
sssd
mate-screensaver
kitemviews
mkvtoolnix
xterm
python2-libxml2
shared-mime-info
libvdpau
freexl
r-anota
freecad
emacs-gif-screencast
adwaita-icon-theme
r-rms
texlive-dvips
r-noiseq
gitolite
python-pendulum
libcdr
python-packaging
garcon
erlang
python2-seaborn
libxls
shepherd
cl-quri
perl-type-tiny
lxqt-sudo
libshout
kparts
emacs-helm-gtags
python-django-crispy-forms
carla
perl-dbd-sqlite
r-ggally
r-cghbase
r-lumi
python2-statsmodels
python-apipkg
cl-type-i
emacs-sly-asdf
texlive-hyphen-lithuanian
qtdeclarative
sbcl-chanl
python2-configparser
r-gwascat
python2-urllib3
kawa
kpmcore
python-dateutil
freeglut
xorg-server
r-quantro
gdm
python-pytzdata
r-pbdzmq
r-proc
r-assertive-datetimes
r-gcrma
sherlock-lv2
sbcl-cl-sqlite
r-watermelon
capnproto
r-metap
r-variancepartition
xlockmore
texlive-latex-framed
bennu-game-development
nss-certs
mailutils
r-maptools
rdiff-backup
ocaml-markup
sbcl-static-vectors
keepassxc
r-kernsmooth
python2-notmuch
libnslog
wine-staging
emacs-epl
r-labeling
openconnect
r-learnr
ghc-yesod-core
python-tblib
gource
vim-fugitive
mit-krb5
python-openid
ubridge
r-enrichplot
python-gst
lollypop
r-coda
thefuck
texlive-hyphen-belarusian
r-r-utils
python-zope-exceptions
qtbase
emacs-org-contrib
r-birewire
bash-static
python-zope-i18nmessageid
telepathy-idle
r-officer
kpackage
python2-zope-i18nmessageid
r-docopt
r-anthropometry
texlive-tex-fontinst-base
python-pybigwig
ecl-trivial-clipboard
cups
guile3.0-gnutls
r-trimcluster
r-roc
python2-graphite-web
libfm-qt
go-github-com-minio-sha256-simd
qtsvg
conda
r-gqtlbase
go-github-com-prometheus-procfs
python-cffi-documentation
texlive-latex-amsfonts
boinc-server
findutils
ecl-burgled-batteries3
juk
tlp
maven-repository-metadata
libffi
pipewire
dmidecode
powertop
qtdatavis3d
lv2
python2-texttable
git-repo
ktuberling
python2-stevedore
guile-bytestructures
json-modern-cxx
abiword
python-petsc4py
libpsl
faad2
menumaker
r-ranger
sbcl-trivial-clipboard
r-lava
r-chemminer
jemalloc
sbcl-fare-quasiquote
zimg
perl-archive-zip
gmime
r-pegas
brial
python-alembic
emacs-pdf-tools
python-gitdb
pcb-rnd
r-mixomics
rmath-standalone
texlive-latex-oberdiek
pjproject-jami
texlive-hyphen-chinese
libx11
r-xgboost
monero
sbcl-stumpwm
r-activedriverwgs
python-cffi
emulation-station
texlive-txfonts
libblockdev
kqtquickcharts
cl-bordeaux-threads
ola
cl-prevalence
ntp
python-sortedcontainers
python-cssselect2
texlive-ruhyphen
texlive-latex-multirow
maim
dialog
r-clipr
profanity
eom
quazip
mate-control-center
python-psycopg2
libnsl
emacs-prescient
r-later
mcrl2
r-interactivedisplaybase
r-rcpphnsw
lshw
lepton-eda
r-bsgenome
perl-time-mock
r-gage
texlive-latex-ucs
imp
emacs-edit-server
dune-localfunctions
java-plexus-archiver
rhythmbox
r-multcomp
python2-rfc3986
sqitch
caja-extensions
sbcl-named-readtables
crispy-doom
ruby-childprocess
wine-minimal
pioneers
python2-colorama
ecl-bordeaux-threads
adms
kde-frameworkintegration
perl-http-cookiejar
python2-file
cheese
python-widgetsnbextension
perl-libwww
pigx-bsseq
cmake
r-seewave
go-github-com-kballard-go-shellquote
isc-dhcp
kirigami
znc
texlive-fontinst
ruby-redcarpet
transmission
qtpurchasing
sbcl-parenscript
cuirass
r-rgraphviz
go-golang-org-x-time
r-batchtools
ngs-sdk
python2-pendulum
pcre2
emacs-dashboard
xfce4-weather-plugin
mate-menus
u-boot-am335x-boneblack
meson
libimagequant
ttfautohint
dune-geometry
texlive-latex-fancyhdr
r-plgem
ecl-parenscript
shaderc
libwps
ruby-crass
r-rvest
you-get
bison
smb4k
r-robust
font-iosevka
waylandpp
padthv1
red-eclipse
r-tensora
r-wiggleplotr
ncurses-with-gpm
r-htmltable
dunst
texlive-latex-changebar
python-jinja2
gnome-shell-extension-dash-to-dock
girara
emacs-minions
suil
openblas-ilp64
python-automat
python2-pyopenssl
r-zoo
fluidsynth
gfortran-toolchain
html-xml-utils
r-qtl2
lua5.2-sec
perl-clone-pp
r-r-oo
texlive-hyphen-ancientgreek
python2-prometheus-client
r-bbmle
texlive-latex-amsrefs
r-xcms
libclc
r-deldir
r-hypergraph
libebml
sbcl-swap-bytes
public-inbox
lilypond
python2-tox
python-django-sortedm2m
texlive-seminar
network-manager-applet
python-statsmodels
python2-jedi
xmobar
u-boot-tools
libsrtp
avr-toolchain
r-cmprsk
r-marray
borg
maven-model-builder
r-rmetasim
u-boot-am335x-evm
python-breathe
swaylock
emacs-perspective
python-trytond-party
perl-datetime-format-strptime
guile-newt
wireguard
evolution
r-oligoclasses
python-faker
r-annotationfilter
perl-test-tcp
r-flowviz
r-bigmelon
r-aroma-light
python-orderedmultidict
gnome-contacts
python-pytest-flakes
pangomm
r-randtoolbox
r-qvalue
strongswan
r-pbkrtest
mksh
r-mapproj
fcitx
duplicity
thinkfan
kglobalaccel
texlive-hyphen-estonian
american-fuzzy-lop
emacs-nix-mode
perl-getopt-long
cpplint
playerctl
epiphany
python-h5py
qtermwidget
texlive-latex-examplep
cataclysm-dda
asunder
bspwm
r-ggpubr
sbcl-cl-random-forest
emacs-haskell-mode
python-flask-sqlalchemy
kidletime
emacs-debbugs
libsndfile
mediainfo
tracker
emacs-auctex
python-pycparser
emacs-dired-rsync
ruby-cucumber
python-django-allauth
libusbmuxd
r-rcpp
mujs
texlive-hyphen-interlingua
r-fansi
texlive-fonts-cm
python-rfc3986
r-scran
python-flask-login
bluez
emacs-org-download
checkpolicy
r-lmertest
libsecp256k1
libgc
upower
r-deriv
qgpgme
libkdegames
qtscxml
argon2
xfce4-screenshooter
uchardet
r-inline
r-gkmsvm
texi2html
nmap
mpop
modemmanager-qt
python2-sqlalchemy
texlive-filemod
font-public-sans
perl-compress-raw-zlib
python2-bottle
libwacom
python2-cheetah
zile-on-guile
r-sjmisc
threadweaver
r-units
maven-plugin-api
python2-tblib
emacsy-minimal
coq-bignums
kjs
i3-wm
python-beautifulsoup4
git-crypt
coq-stdpp
r-deseq2
sbcl-ironclad
r-sushi
libnumbertext
ocaml-qtest
htop
crawl
xf86-video-ati
ikiwiki
samba
guile-cairo
r-blockfest
emacs-paren-face
python-tqdm
texlive-kpathsea
go-github-com-junegunn-fzf
python-apispec
ghostwriter
criu
perl-timedate
fish
r-simpleaffy
r-beachmat
texlive-latex-fontspec
java-icu4j
kicad-symbols
r-annotationdbi
mate-netbook
r-glmmtmb
gajim-omemo
google-brotli
texlive-hyphen-coptic
texlive-pstricks
autorandr
r-accept
texlive-generic-babel-german
r-sf
lablgtk
r-afex
cl-puri
wl-clipboard
python-icalendar
r-raster
ecl-named-readtables
go-github-com-lucas-clemente-quic-go
knotifications
mesa-headers
texlive-base
maven-compat
r-a4core
guile-chickadee
quaternion
kakoune
perl-datetime
units
gnome-tweaks
r-triform
kspaceduel
r-summarytools
ceph
r-rhisat2
cl-slynk
libfdk
font-lato
python-nbxmpp
zeroconf-ioslave
gpscorrelate
r-savr
r-tolerance
python-gast
librsync
r-vctrs
r-ggforce
python-clikit
papirus-icon-theme
python2-flask-wtf
grpc
kshisen
libmatroska
python2-fakeredis
perl-db-file
unixodbc
r-ggplotify
gnome
flint
perl-test-simple
doxygen
msmtp
r-locfit
tk
kpty
python2-zope-component
k3b
eudev
r-testthat
perl-cairo
emacs-god-mode
maven-model
dconf-editor
workrave
valgrind
gnome-maps
libwapcaplet
qtserialport
sbcl-trivial-features
git-remote-gcrypt
python-shapely
ocaml-menhir
java-commons-codec
emacs-web-mode
texlive-hyphen-french
givaro
emacs-closql
texlive-fonts-xypic
rrdtool
u-boot-a20-olinuxino-micro
chez-scheme
texlive-cm
man-db
ruby-gherkin
kdeconnect
python-mock
r-rmarkdown
dune-typetree
scummvm
r-performance
python2-typing
sbcl-quri
cedille
fplll
gnome-bluetooth
python2-humanfriendly
texlive-hyphen-portuguese
wavemon
openblas
vlc
qtscript
r-abn
emacs-epkg
mesa
roguebox-adventures
r-ape
autoconf
tdlib
stumpwm-with-slynk
ruby-cucumber-wire
r-sp
python-sphinxcontrib-applehelp
crossmap
rmlint
fetchmail
xsimd
poppler-data
ruby-tilt
gnurl
r-subplex
python2-cryptography
r-allelicimbalance
java-asm
texlive-latex-psfrag
cvs-fast-export
texlive-hyphen-hungarian
opensmtpd-extras
pugixml
texlive-latex-readarray
guile-ssh
texlive-latex-l3kernel
snd
ddrescue
r-mzid
emacs-yasnippet
gsettings-desktop-schemas
xbindkeys
python-django-bulk-update
python2-furl
perl-lwp-protocol-https
perf
r-fastseg
coq-flocq
python2-ipykernel
ruby-pg
pt-scotch
r-codetools
adns
texlive-latex-lh
tomb
udiskie
r-ellipse
qwt
python-objgraph
r-biocneighbors
r-devtools
sbcl-puri
libraw
ghc-filepath-bytestring
bcftools
python-setuptools-scm
emacs-pass
cups-filters
ktextwidgets
zsh-autosuggestions
sbcl-closer-mop
gauche
python-cloudpickle
bovo
r-domc
texlive-latex-pgf
libaio
hdf5-parallel-openmpi
graphicsmagick
r-fit-models
python2-mwclient
policycoreutils
kmines
r-protgenerics
r-radiant-data
shadow
rseqc
brightnessctl
r-cli
python-django-pipeline
r-rbgl
pdsh
r-survival
r-pkgbuild
r-genenet
emacs-git-auto-commit-mode
automake
gnome-video-effects
zile
r-tidytree
python-wcwidth
gnome-session
go-github-com-pkg-errors
texlive-fonts-latex
sbcl-eos
timidity++
hexedit
parallel
sra-tools
xfce4-time-out-plugin
rust
ansible
icu4c
perl-time-hires
wesnoth
python-msgpack
star
python-efl
u-boot-rock64-rk3328
python2-pycosat
qtimageformats
varnish
lcov
oniguruma
emacs-helm-fish-completion
libasr
solid
r-lsei
emacs-lsp-mode
python2-zope-testrunner
python2-dbus
cairomm
baobab
chromaprint
libvterm
rust-cbindgen
r-htqpcr
qjackctl
libtorrent-rasterbar
r-roxygen2
execline
nanovg-for-extempore
emacs-org-re-reveal
perl-dbi
libfprint
powertabeditor
java-plexus-utils
ruby-ast
open-adventure
xfce4-calculator-plugin
herbstluftwm
qtox
nspr
r-blob
r-zlibbioc
r-actfrag
guile-hall
ecl-eos
libgcrypt
java-plexus-io
ecl-slynk
r-jomo
texlive-doi
emacs-matrix-client
python2-stdnum
r-mass
grep
r-bibtex
r-mosaicdata
libbytesize
kactivities-stats
python2-backports-csv
ecl-cl-containers
python-sepolgen
yelp-xsl
r-rhpcblasctl
r-cowplot
r-gostats
emacs-exwm-edit
texlive-hyphen-norwegian
r-icobra
texlive-hyphen-greek
python2-click
perl
gnumeric
lxc
texlive-hyphen-english
texlive-booktabs
r-elasticnet
python-argcomplete
r-chippeakanno
python-utils
utox
r-destiny
dovecot
python-dnspython
jack2
sparsehash
r-multitaper
librdkafka
r-graphite
go-github-com-davecgh-go-spew
scintilla
python2-dnspython
scdoc
r-biobase
libyaml
diffoscope
emacs-protobuf-mode
r-valr
uget
syndication
r-servr
clang
python-pydot
ldb
caja
r-yamss
r-bit
python-scanpy
emacs-polymode-org
guile3.0-json
pavucontrol
cl-drakma
boost
minixml
alot
r-interactionset
arm-trusted-firmware-sun50i-a64
hyperrogue
r-flowsom
x42-plugins
netcdf-parallel-openmpi
python-construct
ecl-portable-threads
cl-swap-bytes
r-glue
xfwm4
gnumach-headers
emacs-clang-rename
perl-email-sender
r-seqbias
ecl-iterate
r-bios2cor
ppp
perl-text-csv-xs
texlive-etex
cl-rt
udisks
r-parameters
sbcl-cffi
ecl-swap-bytes
texlive-mkpattern
perl-algorithm-c3
vera
dash
texlive-latex-geometry
python-django-statici18n
guile-parted
plantuml
xinput
di
ruby-oj
klines
texlive-generic-pdftex
r-svglite
ruby-temple
libksba
texlive-siunitx
python2-pastel
infernal
python2-arrow
opendht
r-waveslim
maven-wagon-http
r-tidyselect
python-parse
python-django-jsonfield
sbcl-iolib
kcrash
python-django-appconf
go-sctp
electrum
qca
r-desolve
swayidle
texlive-epsf
r-picante
texlive-latex-tools
emacs-lispy
r-rlang
babl
r-flowmeans
r-ggbio
python-binwalk
ruby-sassc
python-plotly
python-slepc4py
cl-fad
texlive-hyphen-churchslavonic
r-classint
ghc-extra
python2-minimal
r-laeken
glib-networking
go-github-com-kr-pretty
r-knitr
strace
sed
muse-sequencer
r-biobroom
ocaml-base
r-bumphunter
go-github-com-spaolacci-murmur3
rosegarden
stunnel
irssi
gnome-klotski
rime-data
python-pyarrow
glibc
font-terminus
python-intervaltree
fet
texlive
openttd
nghttp2
sbcl-type-i
modem-manager
knavalbattle
emacs-undo-tree
texlive-latex-enumitem
texlive-fonts-charter
smithwaterman
x265
python-on-guile
r-e1071
r-stringdist
cl-webkit
sbcl-portable-threads
ccls
r-catools
imlib2
r-bhc
r-flare
rcs
alpine
mtd-utils
perl-xml-parser
emacs-ediprolog
gkrellm
emacs-peg
alsa-utils
python-radon
texlive-generic-dehyph-exptl
r-seqlogo
qhull
r-gmp
python2-oauthlib
libical
guile2.0-bytestructures
linux-libre-headers
python-pyodbc
stb-image-write
folks
go-github-com-oschwald-geoip2-golang
lxappearance
libx264
celluloid
cl-cffi-gtk
r-rbowtie
openvswitch
polyml
cl-parenscript
ncbi-vdb
eigen
texlive-tools
csvkit
ruby-sqlite3
eog
mercurial
r-callr
texlive-hyphen-turkish
frescobaldi
r-statmod
emacs-nov-el
fdupes
libsemanage
emacs-org-super-agenda
guile3.0-ssh
python-pandas
r-shinycssloaders
coq-coquelicot
libassuan
slurm-drmaa
cl-s-sysdeps
kajongg
python2-regex
cl-trivial-clipboard
python-django-assets
python-sphinxcontrib-serializinghtml
kcmutils
silkaj
r-wrench
xf86-video-amdgpu
libpng-apng
r-pkgmaker
texlive-lm
sbcl-burgled-batteries3
colord
mesa-opencl
bluez-alsa
guile-for-guile-emacs
r-genomationdata
tidy-html
protobuf
avahi
kmod
gcc-objc
guile-static-stripped-tarball
r-fields
python-lazy-object-proxy
polybar
gpgme
xfce4-stopwatch-plugin
grim
sbcl-serapeum
eyed3
python-pympler
exim
mumi
ecl-flexi-streams
cl-ironclad
python2-beautifulsoup4
r-ellipsis
ruby-cucumber-tag-expressions
xf86-video-intel
r-progeny
grilo-plugins
audacity
ruby-rouge
kmediaplayer
aspell
texlive-latex-beamer
acpica
python-cairocffi
r-farver
extremetuxracer
yamagi-quake2
python-zope-interface
kscreenlocker
python-rpy2
perl-common-sense
r-ebimage
python-trezor
sbcl-cl-prevalence
python2-zope-security
r-riboseqr
libaom
python-pillow
texlive-latex-seminar
openimageio
lrslib
r-gdina
python2-cssselect
unionfs-fuse-static
texlive-latex-xkeyval
hashcat
python-pyyaml
chicken
xscreensaver
python2-axolotl-curve25519
kaldi
poetry
python2-zope-location
rtl-sdr
python2-falcon
ganv
stumpwm
r-dnacopy
r-xfun
python-fakeredis
emacs-general
r-annotate
kholidays
system-config-printer
isync
jasper
v4l-utils
go-github-com-prometheus-client-model
libcap-ng
emacs-sudo-edit
kitemmodels
guile2.0-gcrypt
potrace
python-tox
guile-sparql
python-sphinxcontrib-qthelp
memcached
python-idna
emacs-nhexl-mode
fossil
guile-debbugs
python-grpcio
mutter
texlive-latex-blindtext
python-pyqt
streamlink
python2-dogtail
dune-alugrid
r-pcamethods
mc
python2-pip
endlessh
umoci
texlive-hyphen-italian
emacs-sly-macrostep
r-vegan
libtextstyle
rpm
ruby-public-suffix
r-cytolib
libfakekey
texlive-latex-graphics
tabixpp
r-insight
r-modelmetrics
emacs-pyvenv
qtsensors
emacs-lispyville
et
synergy
python2-html5lib
dos2unix
perl-time-local
cppzmq
emacs-org-sidebar
emacs-modus-themes
python2-contextlib2
r-rhdf5lib
texlive-fonts-rsfs
sqlite
mdds
texlive-hyphen-croatian
dune-functions
r-dorng
r-flextable
python-elementpath
r-siggenes
r-vsn
perl-yaml
texlive-latex-colortbl
ltris
python2-radon
mes-rb5
pcmanfm-qt
python2-zope-proxy
tiled
openmpi-thread-multiple
python2-argcomplete
xpdf
kubrick
grantleetheme
java-qdox
r-ihw
colordiff
fortify-headers
grantlee
proof-general
openldap
r-vgam
prison
screen
radeontop
python-greenlet
python-zope-configuration
sbcl-fast-http
cloud-utils
go-golang-org-x-sys
emacs-deadgrep
musescore
r-txdb-mmusculus-ucsc-mm10-knowngene
python2-pillow
s6-linux-utils
python2-coverage
python-backports-csv
r-circlize
scrot
texlive-generic-ulem
python-pysocks
scrypt
python-pynacl
gnome-desktop
r-flowutils
python2-virtualenv
r-regioner
gambit-c
r-genomeinfodb
hstr
libmediainfo
r-leiden
r-gh
wimlib
networkmanager-qt
texlive-hyphen-thai
r-globaloptions
r-gdsfmt
kconfig
r-foreign
libkomparediff2
r-annotationforge
python-mccabe
r-bigmemoryextras
w3m
gst-kaldi-nnet2-online
r-bh
r-glimma
r-affycompatible
python-texttable
python2-psycopg2
zstd
ecl-babel
python-pybedtools
sbcl-cl-octet-streams
sbcl-local-time
openvpn
sbcl-parse-declarations
gzochi
r-opencyto
protozero
r-rbowtie2
secilc
r-univoutl
dot2tex
python-six
knot-resolver
syncthing
fflas-ffpack
mate-system-monitor
xfsprogs
python-pyicu
xfce4-eyes-plugin
texlive-latex-mflogo
kbookmarks
ortp
libsysstat
go-github-com-gobwas-glob
emacs-howm
ghc-persistent-template
marco
libev
sbcl-usocket
stellarium
libnspsl
less
python2-nose2
emacs-disable-mouse
woff2
python-pylint
r-mast
xfce4-whiskermenu-plugin
qtwebkit
java-javax-inject
python2-pytest-xdist
r-rcppprogress
xfce4-power-manager
lxsession
r-sctransform
ccl
r-illuminaio
methyldackel
retux
sooperlooper
sbcl-drakma
lxqt-build-tools
python-stevedore
openfst
go-github-com-golang-groupcache-lru
libphutil
python2-pycparser
emacs-stumpwm-mode
nsis-i686
asymptote
emacs-org-edit-latex
cl-split-sequence
r-consensusclusterplus
perl-io-tty
flameshot
check
ddclient
r-gridgraphics
u-boot-wandboard
sslh
lightdm
ocamlbuild
r-ggridges
emacs-list-utils
sbcl-flexi-streams
libspiro
python-slugify
kdecoration
openmw
radicale
python-cryptography-vectors
emacs-rudel
sct
sbcl-s-sysdeps
python2-setuptools-scm
r-ddalpha
coq
texlive-latex-float
r-impute
python-smmap2
gpodder
graphene
perl-libintl-perl
source-highlight
r-car
pavucontrol-qt
python-patsy
libpwquality
awesome
linux-libre-arm-omap2plus
r-edaseq
guix
r-hyperdraw
r-motifstack
font-liberation
texlive-fonts-stmaryrd
lvm2-static
python-virtualenv
r-rots
tmux
python-wrapper
r-nmf
perl-catalyst-devel
texlive-latex-supertabular
samplv1
python2-flask-login
python-ddt
gnome-sudoku
python-igraph
emacs-popup
darkice
r-rngtools
python-toml
ixion
python2-webob
java-snappy
c-toxcore
dragon
python-mutagen
texlive-unicode-data
toxic
libosinfo
alsa-plugins
neomutt
xorgproto
emacs-bash-completion
e2fsprogs
docker-cli
kmouth
wmnd
bitcoin-abc
r-webbioc
ruby_version
bash-minimal
python2-joblib
kjumpingcube
go-github-com-robfig-cron
kmahjongg
ngless
ecl
libabigail
schismtracker
python-bottle
intel-vaapi-driver
texlive-bin
r-fpc
stgit
r-powerlaw
libxml2
sbcl-ptester
r-msnid
python-pycurl
python-pep8
guile-static-stripped
qtserialbus
ocaml-qcheck
r-annotatr
flightgear
r-dnabarcodes
sbcl-trivial-gray-streams
imapfilter
igraph
suitesparse
kdesignerplugin
python-oslo.context
electron-cash
linux-libre-arm-generic
ecl-cl-random-forest
libgit2-glib
qtwebsockets
r-psych
milkytracker
openocd
xerces-c
pngquant
r-seurat
wine-staging-patchset-data
ocaml-odoc
nss
mpv-mpris
python2-urwid
python2-automat
r-patchwork
emacs-symbol-overlay
kguiaddons
python-cachecontrol
r-gargle
cl-fast-http
dbus-glib
r-biostrings
ruby-cucumber-core
xfce4-terminal
r-rematch2
enlightenment-wayland
yelp-tools
snap
fdroidserver
r-rprotobuflib
python-six-bootstrap
r-a4classif
aspell-dict-da
cdogs-sdl
texlive-hyphen-sanskrit
haveged
memtester
ranger
python2-apache-libcloud
bluefish
homebank
proj
r-vioplot
r-formula
r-hdf5r
nsis-x86_64
texlive-latex-base
python-pygments
tome4
python-zope-testing
r-hierfstat
swig
python2-pybedtools
python-sip
fc-host-tools
qtnetworkauth
libxslt
r-rapidjsonr
r-glmnet
emacs-magit-todos
texlive-hyphen-kurmanji
ruby-asciimath
golly
libmaxminddb
mpdscribble
r-annotationtools
gpxsee
vifm
r-bayseq
gtkspell3
texlive-generic-listofitems
disorderfs
scotch
r-biggr
r-abcrlda
libffcall
python-soupsieve
lxqt-powermanagement
python-pyrsistent
zn-poly
cl-fast-io
emacs-attrap
libstaroffice
r-feature
texlive-hyph-utf8
sord
r-qtl
python-pytest-bootstrap
mate-themes
cl-static-vectors
emacs-hl-todo
r-biocworkflowtools
ghc-atomic-write
ant-apache-bcel
privoxy
mruby
hugin
ecl-cl-octet-streams
python-django-taggit
dune-istl
nnn
fakeroot
libsigrokdecode
antlr3
mgba
emacs-helm-ag
dxvk
usb-modeswitch
ccache
make
emacs-markdown-mode
libmateweather
s-tui
racket
python-editor
r-biocparallel
wesnoth-server
go-github-com-audriusbutkevicius-pfilter
bctoolbox
r-shape
texlive-latex-pdfpages
kcodecs
python-ldap
sbcl-cl+ssl
perl-hash-merge
afew
mesa-opencl-icd
emacs-dtrt-indent
emacs-flycheck
sweeper
r-seqminer
python-pypairix
java-xerces
r-rgdal
go-github-com-urfave-cli
godot
emacs-sx
r-acebayes
r-gdtools
hplip
guile-wisp
r-chipexoqual
python-zope-security
qpdf
python-autopep8
jetring
emacs-dired-toggle-sudo
cl-chanl
python-natsort
r-geoquery
texlive-latex-gcite
oxygen-icons
texlive-hyphen-ethiopic
fio
qtlocation
python-jupyter-console
z3
guile-json
freeipmi
guile-next
dconf
xf86-video-geode
r-rdpack
python-pyphen
go-golang-org-x-net
docker
r-motiv
superlu
higan
emacs-direnv
texlive-hyphen-base
openntpd
texlive-latex-mdwtools
python-webassets
packagekit
template-glib
gdal
pigx-chipseq
linux-pam
python-gevent
python2-pytest
wine
texlive-hyphen-indic
intel-mpi-benchmarks
bzip2
twm
taglib
ndctl
r-rcppannoy
r-roar
linux-libre-headers-stripped-tarball
r-ldblock

Lint warnings

abseil-cpp (version: 20200225.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 622 is way too long (144 characters)
New warningformatting

Look for formatting issues in the source

line 621 is way too long (116 characters)

adb (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status

aegis (version: 4.24)

LinterMessage
New warningpatch-headers

Validate patch headers

aegis-perl-tempdir2.patch: patch lacks comment and upstream status

alot (version: 0.5.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

alsa-modular-synth (version: 2.1.2)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

android-libcutils (version: 7.1.2_r36)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status
New warningformatting

Look for formatting issues in the source

tabulation on line 277, column 20

android-liblog (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

android-libsparse (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status

android-libutils (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status

android-libziparchive (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status

antlr3 (version: 3.5.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs java-stringtemplate@3.2.1 and java-stringtemplate@4.0.6 collide

antlr4 (version: 4.8)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 8304 is way too long (96 characters)
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningformatting

Look for formatting issues in the source

line 8378 is way too long (100 characters)

apache-arrow (version: 0.10.0)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infractions at 84, 235

apr (version: 1.6.5)

LinterMessage
New warningpatch-headers

Validate patch headers

apr-skip-getservbyname-test.patch: patch lacks comment and upstream status

argon2 (version: 20171227)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

arm-trusted-firmware-rk3328 (version: 2.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

arm-trusted-firmware-rk3399 (version: 2.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

arm-trusted-firmware-sun50i-a64 (version: 2.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

asciidoc (version: 8.6.10)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

aspell (version: 0.60.6.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 75 is way too long (101 characters)

astroid (version: 0.15)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

avr-binutils (version: 2.32)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

awesome (version: 4.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

aws-c-event-stream (version: 0.1.6)

LinterMessage
New warningpatch-headers

Validate patch headers

aws-c-event-stream-cmake-prefix.patch: patch lacks comment and upstream status

aws-checksums (version: 0.1.10)

LinterMessage
New warningpatch-headers

Validate patch headers

aws-checksums-cmake-prefix.patch: patch lacks comment and upstream status

awscli (version: 1.18.203)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

axoloti-patcher-next (version: 2.0.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 560 is way too long (93 characters)

bash (version: 5.0.7)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

beets (version: 1.4.9)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

beets-bandcamp (version: 0.1.3)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 3484 is way too long (149 characters)

bind (version: 9.14.9)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 253

binutils-static-stripped-tarball (version: 2.32)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

bison (version: 3.0.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

bison (version: 3.5.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

bison (version: 3.6.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

bitcoin-unlimited (version: 1.9.0.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1478 is way too long (91 characters)

boost-python2 (version: 1.72.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

boost-static (version: 1.72.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

boost-with-python3 (version: 1.72.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

bsd-games (version: 2.17.0)

LinterMessage
New warningpatch-headers

Validate patch headers

bsd-games-gamescreen.h.patch: patch lacks comment and upstream status

busybox (version: 1.29.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 82

cadaver (version: 0.23.3)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 48

calibre (version: 3.42.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 94

capstone (version: 3.0.5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

c-blosc (version: 1.18.1)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 64

ceph (version: 13.2.6)

LinterMessage
Resolved warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python2-pip' should probably not be an input at all

cgit (version: 1.2.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'groff' should probably be a native input

cheese (version: 3.38.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

chez-srfi (version: 1.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 246 is way too long (91 characters)

chroma (version: 1.17)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infractions at 33, 259
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 33

cinnamon-desktop (version: 3.4.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

clang (version: 9.0.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)

clang (version: 10.0.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 11.0.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 3.5.2)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 3.6.2)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 3.7.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 3.8.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 3.9.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 6.0.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 7.0.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 8.0.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 231 is way too long (95 characters)
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang (version: 9.0.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 366 is way too long (91 characters)

clang-runtime (version: 3.5.2)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

clang-runtime-3.5-libsanitizer-mode-field.patch: file name is too long

clang-runtime (version: 3.7.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

clang-runtime-3.8-libsanitizer-mode-field.patch: file name is too long

clang-runtime (version: 3.8.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

clang-runtime-3.8-libsanitizer-mode-field.patch: file name is too long

clang-runtime (version: 3.9.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

clang-runtime-3.9-libsanitizer-mode-field.patch: file name is too long

clapack (version: 3.2.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 870 is way too long (91 characters)

cl-clml (version: 0.0.0-0.95505b5)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

cl-dbus (version: 20190408-1.24b452d)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 6019 is way too long (104 characters)

cl-fare-quasiquote (version: 20171130)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 5637 is way too long (97 characters)

cl-gobject-introspection (version: 0.3-0.7b703e2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

cl-graph (version: 0.0.0-0.78bf9ec)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

clipper (version: 1.2.1)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-cython' should probably be a native input

clipper (version: 2.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

cl-md5 (version: 2.0.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

cl-portable-threads (version: 2.3-1.c0e61a1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2905 is way too long (94 characters)

cl-sqlite (version: 0.2-1.c738e66)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2334 is way too long (130 characters)

cl-static-dispatch (version: 0.3)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 11744 is way too long (93 characters)

cl-string-match (version: 0-1.5048480)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2024 is way too long (96 characters)

conda (version: 4.3.16)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
Resolved warningformatting

Look for formatting issues in the source

line 717 is way too long (94 characters)

conda (version: 4.8.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

containerd (version: 1.2.5)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 213 is way too long (102 characters)
New warningformatting

Look for formatting issues in the source

line 214 is way too long (105 characters)

coq-gappa (version: 1.3.4)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 265 is way too long (94 characters)

coreutils-minimal (version: 8.32)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

crda (version: 3.18)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2909 is way too long (105 characters)
New warningformatting

Look for formatting issues in the source

line 3678 is way too long (100 characters)

cyrus-sasl (version: 2.1.27)

LinterMessage
New warningpatch-headers

Validate patch headers

cyrus-sasl-ac-try-run-fix.patch: patch lacks comment and upstream status

darktable (version: 2.6.3)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'intltool' should probably be a native input
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'pkg-config' should probably be a native input

ddate (version: 0.2.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

debops (version: 1.1.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

debops-constants-for-external-program-names.patch: file name is too long

d-feet (version: 0.3.14)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

dico (version: 2.10)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

diffoscope (version: 134)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

diffoscope (version: 162)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 129 is way too long (102 characters)

docbook-xml (version: 4.5)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 63
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 64

drumstick (version: 2.0.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

dsfmt (version: 2.2.3)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

dune-grid (version: 2.6.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 4665 is way too long (91 characters)

dune-istl (version: 2.6.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 4740, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 4737, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 4736, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 4739, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 4738, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 4735, column 0

dune-istl-openmpi (version: 2.7.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

dungeon-crawl-stone-soup (version: 0.24.0)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

dungeon-crawl-stone-soup-tiles (version: 0.24.0)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

dxvk (version: 1.5)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

ecl-caveman (version: 2.4.0-1.faa5f7e)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 11397 is way too long (110 characters)
New warningformatting

Look for formatting issues in the source

line 11396 is way too long (97 characters)
New warningformatting

Look for formatting issues in the source

line 11394 is way too long (140 characters)

ecl-circular-streams (version: 0.1.0-1.e770bad)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 79

ecl-cl-cookie (version: 0.9.10-1.cea55ae)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

ecl-cl-gobject-introspection (version: 0.3-0.7b703e2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

ecl-cl-reexport (version: 0.1-1.312f366)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

ecl-cl-string-match (version: 0-1.5048480)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2024 is way too long (96 characters)

ecl-md5 (version: 2.0.4)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 85

ecl-optima (version: 1.0-1.373b245)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 5484 is way too long (91 characters)

ecl-portable-threads (version: 2.3-1.c0e61a1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2905 is way too long (94 characters)

ecl-quri (version: 0.1.0-2.b53231c)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 68

ecl-static-dispatch (version: 0.3)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 11744 is way too long (93 characters)

editorconfig-core-c (version: 0.12.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 385 is way too long (97 characters)

eid-mw (version: 5.0.8)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 154 is way too long (97 characters)
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

electron-cash (version: 4.0.12)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 472 is way too long (122 characters)

electron-cash (version: 4.2.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

emacs-beancount (version: 2.2.3)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

emacs-cmake-mode (version: 3.19.2)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

emacs-dhall-mode (version: 0.1.3-1.484bcf8)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 89

emacs-discover-my-major (version: 1.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

emacs-ert-runner (version: 0.8.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 12582, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12553, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12554, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12557, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12558, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12570, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12571, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12572, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12573, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12574, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12575, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12576, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12577, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12578, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12579, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12580, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12581, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12583, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12584, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12585, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 12586, column 0

emacs-ess (version: 17.11)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
Resolved warningformatting

Look for formatting issues in the source

line 5855 is way too long (106 characters)

emacs-exwm-no-x-toolkit (version: 0.24)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

emacs-gdscript-mode (version: 1.4.0)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 99

emacs-haskell-mode (version: 16.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

emacs-magit (version: 2.90.1-2.c761d28)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 362 is way too long (106 characters)
Resolved warningformatting

Look for formatting issues in the source

line 354 is way too long (92 characters)
Resolved warningformatting

Look for formatting issues in the source

line 355 is way too long (96 characters)
Resolved warningformatting

Look for formatting issues in the source

line 356 is way too long (92 characters)
Resolved warningformatting

Look for formatting issues in the source

line 358 is way too long (94 characters)
Resolved warningformatting

Look for formatting issues in the source

line 359 is way too long (91 characters)
Resolved warningformatting

Look for formatting issues in the source

line 360 is way too long (94 characters)
Resolved warningformatting

Look for formatting issues in the source

line 361 is way too long (99 characters)
Resolved warningformatting

Look for formatting issues in the source

line 363 is way too long (110 characters)
Resolved warningformatting

Look for formatting issues in the source

line 364 is way too long (117 characters)
Resolved warningformatting

Look for formatting issues in the source

line 365 is way too long (98 characters)
Resolved warningformatting

Look for formatting issues in the source

line 367 is way too long (102 characters)
Resolved warningformatting

Look for formatting issues in the source

line 369 is way too long (92 characters)
Resolved warningformatting

Look for formatting issues in the source

line 370 is way too long (116 characters)
Resolved warningformatting

Look for formatting issues in the source

line 371 is way too long (95 characters)

emacs-org (version: 9.4.4)

LinterMessage
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

emacs-org-drill-table (version: 0.1-0.096387d)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

emacs-powershell (version: 0.3-0.d1b3f95)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 13839, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 13840, column 0

emacs-sqlite (version: 1.0-0.dad42b8)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 4475, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 4476, column 0

emacs-swiper (version: 0.13.1)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

emacs-telega (version: 0.7.1-1.1d28dc2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 24147 is way too long (99 characters)
New warningformatting

Look for formatting issues in the source

tabulation on line 24177, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 24173, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 24170, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 24169, column 0

emacs-trashed (version: 1.9.0)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 178

emacs-vcsh (version: 0.4.4)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

emacs-wide-int (version: 27.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

enlightenment (version: 0.23.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 347 is way too long (99 characters)
Resolved warningformatting

Look for formatting issues in the source

line 346 is way too long (100 characters)
Resolved warningformatting

Look for formatting issues in the source

line 344 is way too long (102 characters)
Resolved warningformatting

Look for formatting issues in the source

line 345 is way too long (104 characters)

eolie (version: 0.9.100)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

eudev-with-hwdb (version: 3.2.8)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

f2fs-fsck-static (version: 1.14.0)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 91

faad2 (version: 2.8.8)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1660 is way too long (95 characters)

fastboot (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status

fcitx5-gtk (version: 5.0.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

fdroidserver (version: 1.1.9)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 940 is way too long (106 characters)

fifengine (version: 0.4.2)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit
New warninginputs-should-be-native

Identify inputs that should be native inputs

'swig' should probably be a native input

flex (version: 2.6.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'bison' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

flite (version: 2.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 90 is way too long (419 characters)

font-adobe-source-code-pro (version: 2.030R-ro-1.050R-it)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

font-adobe-source-sans-pro (version: 2.040R-ro-1.090R-it)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

font-adobe-source-serif-pro (version: 2.007R-ro-1.007R-it)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

font-mathjax (version: 2.7.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

freedink-engine (version: 109.6)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 2899, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2902, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2900, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2901, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2903, column 0

freehdl (version: 0.0.8)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1896 is way too long (104 characters)
New warninginputs-should-be-native

Identify inputs that should be native inputs

'libtool' should probably be a native input

gajim (version: 1.2.2)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all
New warningpatch-headers

Validate patch headers

gajim-honour-GAJIM_PLUGIN_PATH.patch: patch lacks comment and upstream status

gap (version: 4.10.2)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 1156

gap (version: 4.11.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1171 is way too long (98 characters)

gcr (version: 3.28.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

gdb-arm-none-eabi (version: 9.2)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

geany (version: 1.36)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 539 is way too long (125 characters)

geany (version: 1.37.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

geda-gaf (version: 1.10.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

geoclue (version: 2.5.6)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'glib:bin' should probably be a native input

gexiv2 (version: 0.12.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

g-golf (version: 0.1.0-839.ef83010)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

ghc (version: 8.6.5)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 591 is way too long (91 characters)

ghc-doclayout (version: 0.3)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

ghc-llvm-hs (version: 9.0.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

ghc-llvm-hs-pure (version: 9.0.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

giac (version: 1.5.0-85)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 354 is way too long (102 characters)

giac (version: 1.6.0-31)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 365 is way too long (95 characters)

gimp-resynthesizer (version: 2.0.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 354, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 364, column 0
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 338, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 351, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 352, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 363, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 353, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 350, column 0

git-crypt (version: 0.6.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 780 is way too long (91 characters)

gjs (version: 1.58.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

glibc-locales-2.27 (version: 2.28)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

glibc-locales-2.28 (version: 2.28)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

glibc-locales-2.29 (version: 2.29)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

gmp (version: 6.2.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 82 is way too long (96 characters)

gnome (version: 3.34.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'desktop-file-utils' should probably be a native input

gnome-contacts (version: 3.34)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

gnome-initial-setup (version: 3.32.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1395 is way too long (91 characters)

gnome-shell-extension-dash-to-panel (version: 38)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'glib:bin' should probably be a native input

gnome-shell-extension-gsconnect (version: 33)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'glib:bin' should probably be a native input

gnome-tweaks (version: 3.34.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

gnome-tweak-tool (version: 3.32.0)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

gnumach (version: 1.8)

LinterMessage
Resolved warningderivation

Report failure to compile a package to a derivation

failed to create i586-gnu derivation: could not find bootstrap binary 'tar' for system 'i586-gnu'

gnumach-headers (version: 1.8)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
Resolved warningformatting

Look for formatting issues in the source

line 74 is way too long (93 characters)

gobject-introspection (version: 1.62.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'bison' should probably be a native input
New warningpatch-file-names

Validate file names and availability of patches

gobject-introspection-absolute-shlib-path.patch: file name is too long
New warningpatch-headers

Validate patch headers

gobject-introspection-girepository.patch: patch lacks comment and upstream status
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

go-github-com-golang-protobuf-proto (version: 1.3.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

go-github-com-ipfs-go-ipfs-api (version: 1.3.1-0.dafc2a1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 93 is way too long (93 characters)

go-github-com-mitchellh-reflectwalk (version: 1.0.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

go-github-com-muesli-termenv (version: 0.7.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

go-github-com-rogpeppe-go-internal (version: 1.6.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 6009 is way too long (101 characters)

go-github-com-wtolson-go-taglib (version: 0.0.0-0.6e68349)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'pkg-config' should probably be a native input

google-brotli (version: 1.0.9)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1915 is way too long (94 characters)

gourmet (version: 0.17.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

gpsbabel (version: 1.5.4)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

gramps (version: 5.1.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

graphene (version: 1.6.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

grub-efi (version: 2.04)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

grub-minimal (version: 2.04)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

gtk+ (version: 2.24.32)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 814, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 813, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 815, column 0

gtkspell3 (version: 3.0.10)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

guile (version: 2.0.14)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 188 is way too long (94 characters)
New warningformatting

Look for formatting issues in the source

line 191 is way too long (93 characters)

guile2.2-commonmark (version: 0.1.2)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile2.2-email (version: 0.2.2)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile2.2-fibers (version: 1.0.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile2.2-gdbm-ffi (version: 20120209.fa1d5b6)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile2.2-gi (version: 0.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

guile2.2-gnutls (version: 3.6.12)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile2.2-mailutils (version: 3.10)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile2.2-ncurses (version: 3.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile2.2-present (version: 0.3.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile2.2-readline (version: 2.2.7)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningformatting

Look for formatting issues in the source

line 381 is way too long (94 characters)

guile2.2-rsvg (version: 2.18.1-0.05c6a2f)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile2.2-sjson (version: 0.2.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile3.0-commonmark (version: 0.1.2)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile3.0-email (version: 0.2.2)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile3.0-fibers (version: 1.0.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile3.0-gi (version: 0.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

guile3.0-mailutils (version: 3.10)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile3.0-ncurses (version: 3.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile3.0-ncurses-with-gpm (version: 3.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile3.0-present (version: 0.3.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile3.0-readline (version: 3.0.2)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile3.0-rsvg (version: 2.18.1-0.05c6a2f)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

guile-email-latest (version: 0.2.2-1.03e9cac)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

guile-for-guile-emacs (version: 2.1.2-1.15ca784)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 493 is way too long (96 characters)
New warningformatting

Look for formatting issues in the source

trailing white space on line 497

guile-gi (version: 0.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

guile-zstd (version: 0.1.1)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

gzdoom (version: 4.3.2)

LinterMessage
New warningpatch-headers

Validate patch headers

gzdoom-find-system-libgme.patch: patch lacks comment and upstream status

hackrf (version: 2018.01.1-0.43e6f99)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

hdf4 (version: 4.2.14)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

hdf5 (version: 1.8.21)

LinterMessage
New warningpatch-headers

Validate patch headers

hdf5-1.8-mpi-deprecations.patch: patch lacks comment and upstream status

hidapi (version: 0.8.0-rc1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

http-parser (version: 2.9.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

httrack (version: 3.49.2)

LinterMessage
Resolved warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

hurd (version: 0.9)

LinterMessage
Resolved warningderivation

Report failure to compile a package to a derivation

failed to create i586-gnu derivation: could not find bootstrap binary 'tar' for system 'i586-gnu'

hyperledger-iroha (version: 1.1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 169 is way too long (105 characters)

ibus-anthy (version: 1.5.9)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

ibus-libhangul (version: 1.5.3)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

icecat (version: 68.3.0-guix0-preview1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 860
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 854

icecat (version: 78.6.0-guix0-preview1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1289 is way too long (92 characters)
New warningformatting

Look for formatting issues in the source

line 1145 is way too long (94 characters)

icedove (version: 78.6.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1337 is way too long (98 characters)
New warningformatting

Look for formatting issues in the source

line 1494 is way too long (102 characters)
New warningformatting

Look for formatting issues in the source

line 1492 is way too long (105 characters)

icu4c (version: 64.2)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

icu4c-build-root (version: 66.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

ipset (version: 7.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 7657 is way too long (91 characters)

ir (version: 1.3.4)

LinterMessage
New warningformatting

Look for formatting issues in the source

trailing white space on line 1914

itk-snap (version: 3.8.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

java-antlr4-runtime (version: 4.8)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

java-apache-ivy (version: 2.4.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

java-apache-ivy-port-to-latest-bouncycastle.patch: file name is too long

java-assertj (version: 3.8.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-bouncycastle (version: 1.60)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-bsh (version: 2.0b6)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-easymock (version: 3.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-eclipse-jetty-perf-helper (version: 4.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-eclipse-jetty-test-helper (version: 4.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-eclipse-sisu-plexus (version: 0.3.4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-fasterxml-jackson-core (version: 2.9.4)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should not be empty

java-fasterxml-jackson-dataformat-xml (version: 2.9.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-fest-assert (version: 2.0M10)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-fest-test (version: 2.1.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-fest-util (version: 1.2.5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-forester (version: 1.005)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 12176 is way too long (92 characters)

java-guice (version: 4.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-guice-servlet (version: 4.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-hamcrest-all (version: 1.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-hamcrest-core (version: 1.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-hdrhistogram (version: 2.1.9)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-iq80-snappy (version: 0.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-javaewah (version: 1.1.6)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 310

java-javax-inject (version: tck-1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-jboss-javassist (version: 3.21.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-jcommander (version: 1.71)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-jmock (version: 1.2.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-jmock (version: 2.8.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-jmock-junit4 (version: 2.8.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-jmock-legacy (version: 2.8.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-junit (version: 4.12)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-lz4 (version: 1.4.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-modello-core (version: 1.9.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-modello-plugins-java (version: 1.9.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-modello-plugins-xml (version: 1.9.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-modello-plugins-xpp3 (version: 1.9.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-modello-test (version: 1.9.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-native-access-platform (version: 4.5.1)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

java-objenesis (version: 2.5.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-openjfx-base (version: 8.202)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

java-openjfx-graphics (version: 8.202)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

java-openjfx-media (version: 8.202)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

java-plexus-archiver (version: 4.2.2)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@6.1 collide

java-plexus-cipher (version: 1.7)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-plexus-classworlds (version: 2.5.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-plexus-compiler-api (version: 2.8.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@4.0 and plexus-parent-pom@5.1 collide

java-plexus-compiler-javac (version: 2.8.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningformatting

Look for formatting issues in the source

line 4608 is way too long (95 characters)
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-plexus-compiler-manager (version: 2.8.4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-plexus-component-annotations (version: 1.7.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-plexus-component-metadata (version: 1.7.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@13 and apache-parent-pom@21 collide

java-plexus-container-default (version: 1.7.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

java-plexus-digest (version: 1.2)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@3.1 collide

java-plexus-interpolation (version: 1.23)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-plexus-io (version: 3.0.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-plexus-sec-dispatcher (version: 1.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs java-sonatype-spice-parent-pom@15 and java-sonatype-spice-parent-pom@12 collide

java-plexus-utils (version: 3.2.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-rsyntaxtextarea (version: 2.6.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-sisu-build-api (version: 0.0.7)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-snappy (version: 1.0.3-rc3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-snappy (version: 1.1.7.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-sonatype-aether-impl (version: 1.7)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs java-sonatype-forge-parent-pom@6 and java-sonatype-forge-parent-pom@10 collide

java-surefire-api (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs maven-parent-pom@33 and maven-parent-pom@30 collide

java-surefire-booter (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@50 and apache-commons-parent-pom@39 collide
New warningformatting

Look for formatting issues in the source

line 3271 is way too long (107 characters)

java-surefire-common-java5 (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@16 and apache-parent-pom@21 collide

java-surefire-common-junit3 (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@50 and apache-commons-parent-pom@39 collide

java-surefire-common-junit4 (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@50 and apache-commons-parent-pom@39 collide

java-surefire-extensions-api (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@50 and apache-commons-parent-pom@39 collide

java-tunnelvisionlabs-antlr4 (version: 4.7.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningpatch-file-names

Validate file names and availability of patches

java-tunnelvisionlabs-antlr-code-too-large.patch: file name is too long

java-tunnelvisionlabs-antlr4-runtime (version: 4.7.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

java-tunnelvisionlabs-antlr-code-too-large.patch: file name is too long
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

java-tunnelvisionlabs-antlr4-runtime-annotations (version: 4.7.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

java-tunnelvisionlabs-antlr-code-too-large.patch: file name is too long
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

java-usb4java (version: 1.2.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

java-woodstox-core (version: 5.0.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

jfsutils-static (version: 1.1.15)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

jimtcl (version: 0.77)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

jimtcl (version: 0.80)

LinterMessage
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

jmtpfs (version: 0.5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

josm (version: 15553)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 1140, column 0
Resolved warningformatting

Look for formatting issues in the source

line 1180 is way too long (91 characters)

js-mathjax (version: 2.7.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warningformatting

Look for formatting issues in the source

line 149 is way too long (91 characters)

jucipp (version: 1.6.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

julia (version: 1.1.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 380, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 322, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 324, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 382, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 325, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 383, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 384, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 326, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 385, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 327, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 386, column 0
Resolved warningformatting

Look for formatting issues in the source

line 283 is way too long (99 characters)
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 377, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 376, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 387, column 0
Resolved warningformatting

Look for formatting issues in the source

line 428 is way too long (119 characters)
Resolved warningformatting

Look for formatting issues in the source

line 426 is way too long (91 characters)
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 394, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 374, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 331, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 393, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 207, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 208, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 209, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 328, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 432, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 436, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 437, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 438, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 456, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 461, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 462, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 467, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 468, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 469, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 431, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 430, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 315, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 378, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 379, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 313, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 381, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 317, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 321, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 392, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 391, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 330, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 390, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 213, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 329, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 316, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 214, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 216, column 0
Resolved warningformatting

Look for formatting issues in the source

line 281 is way too long (94 characters)
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 389, column 0

julia (version: 1.5.3)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 303 is way too long (106 characters)
New warningformatting

Look for formatting issues in the source

line 301 is way too long (107 characters)

kdevelop-pg-qt (version: 2.2.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

kdewebkit (version: 5.63.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

keybinder-3.0 (version: 0.3.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

kget (version: 20.04.1)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 169
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

kicad-symbols (version: 5.1.4)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 948 is way too long (324 characters)

kiconthemes (version: 5.63.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

kiki-the-nano-bot (version: 1.0.2)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

kio (version: 5.63.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

kplotting (version: 5.63.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

kuserfeedback (version: 1.0.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

kxmlgui (version: 5.63.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

lepton-eda (version: 1.9.13-20201211)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

libarchive (version: 3.4.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 265, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 271, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 270, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 248, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 249, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 250, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 269, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 251, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 252, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 253, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 268, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 254, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 255, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 266, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 256, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 259, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 260, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 262, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 263, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 264, column 0

libchamplain (version: 0.12.16)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'glib:bin' should probably be a native input

libdazzle (version: 3.37.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

libextractor (version: 1.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 128 is way too long (140 characters)

libfreenect-examples (version: 0.6.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

libfreenect-opencv (version: 0.6.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

libgccjit (version: 9.3.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

libgee (version: 0.20.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

libgeotiff (version: 1.5.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

libgeotiff-adapt-test-script-for-proj-6.2.patch: file name is too long

libiberty (version: 7.5.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

libmediaart (version: 1.9.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

libmhash (version: 0.9.9.9)

LinterMessage
New warningpatch-headers

Validate patch headers

libmhash-hmac-fix-uaf.patch: patch lacks comment and upstream status

libmypaint (version: 1.6.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

libpeas (version: 1.28.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

librdkafka (version: 0.9.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

libreoffice (version: 6.4.6.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

libringclient (version: 20200710.1.6bd18d2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

librsvg (version: 2.50.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 3387 is way too long (104 characters)

libsignal-protocol-c (version: 2.3.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

libtool (version: 2.4.6)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

libvirt (version: 5.8.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 456, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 457, column 0

libvirt-glib (version: 3.0.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

libxmlplusplus (version: 2.40.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

libxmlplusplus (version: 3.2.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

lightgbm (version: 2.0.12)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

linux-libre (version: 5.10.4)

LinterMessage
New warningderivation

Report failure to compile a package to a derivation

failed to create riscv64-linux derivation: could not find bootstrap binary 'tar' for system 'riscv64-linux'

linux-libre (version: 5.4.86)

LinterMessage
New warningderivation

Report failure to compile a package to a derivation

failed to create riscv64-linux derivation: could not find bootstrap binary 'tar' for system 'riscv64-linux'

linux-libre-arm64-generic (version: 5.10.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningformatting

Look for formatting issues in the source

line 815 is way too long (117 characters)

linux-libre-arm64-generic (version: 5.4.86)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 815 is way too long (117 characters)
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

linux-libre-arm-veyron (version: 5.4.6)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 751 is way too long (117 characters)

linux-libre-bpf (version: 5.10.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningderivation

Report failure to compile a package to a derivation

failed to create riscv64-linux derivation: could not find bootstrap binary 'tar' for system 'riscv64-linux'

linux-libre-mips64el-fuloong2e (version: 5.10.4)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningformatting

Look for formatting issues in the source

line 815 is way too long (117 characters)

linux-libre-riscv64-generic (version: 5.10.4)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 815 is way too long (117 characters)
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningderivation

Report failure to compile a package to a derivation

failed to create riscv64-linux derivation: could not find bootstrap binary 'tar' for system 'riscv64-linux'

livestreamer (version: 0.14.2)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

lollypop (version: 1.4.6)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

lsh (version: 2.1)

LinterMessage
New warningpatch-headers

Validate patch headers

lsh-fix-x11-forwarding.patch: patch lacks comment and upstream status

lua5.1-filesystem (version: 1.6.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua5.1-lgi (version: 0.9.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

lua5.1-sec (version: 0.7)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua5.1-socket (version: 3.0-rc1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua5.2-filesystem (version: 1.6.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua5.2-lgi (version: 0.9.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

lua5.2-sec (version: 0.7)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua5.2-socket (version: 3.0-rc1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua-filesystem (version: 1.6.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

lua-lgi (version: 0.9.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

lua-resty-core (version: 0.1.18)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 910 is way too long (95 characters)

lua-resty-lrucache (version: 0.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 945 is way too long (100 characters)
New warningformatting

Look for formatting issues in the source

line 948 is way too long (108 characters)
New warningformatting

Look for formatting issues in the source

line 947 is way too long (119 characters)

lua-resty-shell (version: 0.03)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1054 is way too long (119 characters)
New warningformatting

Look for formatting issues in the source

line 1055 is way too long (108 characters)
New warningformatting

Look for formatting issues in the source

line 1052 is way too long (100 characters)

lua-resty-signal (version: 0.02)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 987 is way too long (123 characters)
New warningformatting

Look for formatting issues in the source

line 985 is way too long (104 characters)
New warningformatting

Look for formatting issues in the source

line 988 is way too long (112 characters)
New warningformatting

Look for formatting issues in the source

line 986 is way too long (93 characters)

lua-tablepool (version: 0.01)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1020 is way too long (100 characters)

lure (version: 1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9316 is way too long (93 characters)

lure-de (version: 1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9316 is way too long (93 characters)

lure-es (version: 1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9316 is way too long (93 characters)

lure-fr (version: 1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9316 is way too long (93 characters)

lure-it (version: 1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9316 is way too long (93 characters)

lxqt (version: 0.15.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'desktop-file-utils' should probably be a native input

lxqt-connman-applet (version: 0.15.0-0.8a6cc14)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 1362, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 1366, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 1364, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 1363, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 1361, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 1360, column 0

lxqt-session (version: 0.15.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 885 is way too long (98 characters)
New warningformatting

Look for formatting issues in the source

line 860 is way too long (92 characters)

lyx (version: 2.3.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 6259 is way too long (101 characters)

magit (version: 2.90.1-2.c761d28)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

mailutils (version: 3.10)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

malcontent (version: 0.8.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 252 is way too long (91 characters)

mariadb (version: 10.1.41)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 798 is way too long (92 characters)
Resolved warningformatting

Look for formatting issues in the source

line 799 is way too long (91 characters)

mate-polkit (version: 1.24.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

maven-aether-provider (version: 3.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@21 and apache-parent-pom@6 collide

maven-archiver (version: 3.5.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@39 and apache-commons-parent-pom@41 collide

maven-artifact (version: 3.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@21 and apache-parent-pom@6 collide

maven-artifact-transfer (version: 0.12.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@50 and apache-commons-parent-pom@39 collide

maven-common-artifact-filters (version: 3.1.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-compat (version: 3.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@21 and apache-parent-pom@6 collide

maven-compat (version: 3.6.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs java-sonatype-spice-parent-pom@15 and java-sonatype-spice-parent-pom@12 collide

maven-compiler-plugin (version: 3.8.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-core (version: 3.6.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1213 is way too long (103 characters)
Resolved warningformatting

Look for formatting issues in the source

line 1212 is way too long (99 characters)
Resolved warningformatting

Look for formatting issues in the source

line 1214 is way too long (115 characters)
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
Resolved warningformatting

Look for formatting issues in the source

line 1183 is way too long (94 characters)
Resolved warningformatting

Look for formatting issues in the source

line 1215 is way too long (118 characters)
Resolved warningformatting

Look for formatting issues in the source

line 1184 is way too long (110 characters)

maven-dependency-tree (version: 3.0.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-embedder (version: 3.6.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs maven-parent-pom@33 and maven-parent-pom@30 collide

maven-enforcer-api (version: 3.0.0-M3)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-enforcer-plugin (version: 3.0.0-M3)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@21 and apache-parent-pom@18 collide

maven-enforcer-rules (version: 3.0.0-M3)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs maven-artifact@3.6.1 and maven-artifact@3.0 collide
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

maven-file-management (version: 3.0.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@48 and apache-commons-parent-pom@39 collide

maven-filtering (version: 3.1.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@48 and apache-commons-parent-pom@39 collide

maven-install-plugin (version: 3.0.0-M1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs maven-artifact@3.6.1 and maven-artifact@3.0 collide

maven-jar-plugin (version: 3.2.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@39 and apache-commons-parent-pom@41 collide

maven-model (version: 3.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@21 and apache-parent-pom@6 collide

maven-model-builder (version: 3.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@4.0 and plexus-parent-pom@5.1 collide

maven-plugin-api (version: 3.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@21 and apache-parent-pom@6 collide

maven-plugin-api (version: 3.6.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@4.0 and plexus-parent-pom@5.1 collide

maven-resolver-provider (version: 3.6.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-resources-plugin (version: 3.1.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs maven-artifact@3.6.1 and maven-artifact@3.0 collide

maven-settings-builder (version: 3.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@4.0 and plexus-parent-pom@5.1 collide

maven-settings-builder (version: 3.6.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs java-sonatype-spice-parent-pom@15 and java-sonatype-spice-parent-pom@12 collide

maven-shared-incremental (version: 1.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-shared-io (version: 3.0.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@48 and apache-commons-parent-pom@39 collide

maven-shared-utils (version: 3.0.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs plexus-parent-pom@5.1 and plexus-parent-pom@4.0 collide

maven-shared-utils (version: 3.1.0)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@16 and apache-parent-pom@18 collide

maven-shared-utils (version: 3.2.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-parent-pom@16 and apache-parent-pom@18 collide

maven-surefire-common (version: 3.0.0-M4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs apache-commons-parent-pom@50 and apache-commons-parent-pom@39 collide

maven-surefire-plugin (version: 3.0.0-M4)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 3608 is way too long (111 characters)
New warningformatting

Look for formatting issues in the source

line 3607 is way too long (113 characters)
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs maven-parent-pom@33 and maven-parent-pom@30 collide

maven-wagon-provider-api (version: 3.3.4)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs /gnu/store/hyi21wbh8vfs1v3cy162g4rz457yli9r-maven-wagon-provider-api-3.3.4 and /gnu/store/dd25ffafrqxiwi7ly20vn6kkvd3sq9jb-maven-wagon-provider-api-3.3.4 collide

mergerfs (version: 2.31.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

mesa (version: 19.2.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 293 is way too long (100 characters)

mesa (version: 20.1.9)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 299 is way too long (120 characters)

meshlab (version: 2020.06)

LinterMessage
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

mes-rb5 (version: 0.21)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

mgba (version: 0.7.3)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

mia (version: 2.4.6)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'doxygen' should probably be a native input

mig (version: 1.8)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

mkbootimg (version: 7.1.2_r36)

LinterMessage
New warningpatch-headers

Validate patch headers

libziparchive-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-add-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

libutils-remove-damaging-includes.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

adb-add-libraries.patch: patch lacks comment and upstream status

mongodb (version: 3.4.10)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

mongodb-support-unknown-linux-distributions.patch: file name is too long

mono (version: 4.4.1.0)

LinterMessage
New warningpatch-headers

Validate patch headers

mono-mdoc-timestamping.patch: patch lacks comment and upstream status

mosquitto (version: 1.6.12)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 347

mpfi (version: 1.5.3)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

mrustc (version: 0.8.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 105 is way too long (95 characters)
Resolved warningpatch-file-names

Validate file names and availability of patches

mrustc-0.8.0-fix-variable-length-integer-receiving.patch: file name is too long

mrustc (version: 0.9)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 177 is way too long (123 characters)

mtr (version: 0.93)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

multiqc (version: 1.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-nose' should probably be a native input

musl-cross (version: 0.1-3.a8a6649)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 152 is way too long (92 characters)

nanovg-for-extempore (version: 0.7.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

netcdf (version: 4.7.4)

LinterMessage
New warningpatch-headers

Validate patch headers

netcdf-date-time.patch: patch lacks comment and upstream status

netcdf-parallel-openmpi (version: 4.7.4)

LinterMessage
New warningpatch-headers

Validate patch headers

netcdf-date-time.patch: patch lacks comment and upstream status

netdde (version: 2.6.32.65-1.4a1016f)

LinterMessage
New warningderivation

Report failure to compile a package to a derivation

failed to create i686-gnu derivation: could not find bootstrap binary 'tar' for system 'i686-gnu'

nethogs (version: 0.8.5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

netsurf (version: 3.10)

LinterMessage
New warningpatch-headers

Validate patch headers

netsurf-message-timestamp.patch: patch lacks comment and upstream status

network-manager (version: 1.18.4)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 5925 is way too long (110 characters)
Resolved warningformatting

Look for formatting issues in the source

line 5927 is way too long (117 characters)
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

newick-utils (version: 1.6-1.da121155)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'bison' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

ninja (version: 1.9.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

notifymuch (version: 0.1-1.9d4aaf5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

nototools (version: 20170925)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

nsis-i686 (version: 3.05)

LinterMessage
New warningpatch-headers

Validate patch headers

nsis-env-passthru.patch: patch lacks comment and upstream status

nsis-x86_64 (version: 3.05)

LinterMessage
New warningpatch-headers

Validate patch headers

nsis-env-passthru.patch: patch lacks comment and upstream status

nudoku (version: 1.0.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 5472, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 5471, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 5475, column 0

nzbget (version: 21.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

oath-toolkit (version: 2.6.2)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

ocaml4.07-sedlex (version: 2.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 2255 is way too long (97 characters)

ocaml-ctypes (version: 0.14.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

ocaml-dose3 (version: 5.0.1)

LinterMessage
New warningpatch-headers

Validate patch headers

ocaml-dose3-dont-make-printconf.patch: patch lacks comment and upstream status

ocamlify (version: 0.0.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2162 is way too long (98 characters)

ocaml-lwt (version: 4.1.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

ocaml-ocplib-endian (version: 1.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

ocaml-piqi (version: 0.7.7)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

ocaml-qcheck (version: 0.11)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infractions at 52, 165

ocaml-qcheck (version: 0.12)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infractions at 52, 156

ocaml-sedlex (version: 2.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1992 is way too long (97 characters)

ocaml-sexplib (version: 0.11.0)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 50

octave (version: 6.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'texinfo' should probably be a native input

octave-cli (version: 6.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'texinfo' should probably be a native input

omnitux (version: 1.2.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 578 is way too long (99 characters)

opencascade-occt (version: 7.3.0p3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'doxygen' should probably be a native input

openfoam (version: 4.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input

openjdk (version: 13.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 2344, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2351, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2350, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2345, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2349, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2346, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2347, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2348, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2341, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2343, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2342, column 0

openjdk (version: 14.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 2388, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2389, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2386, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2390, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2385, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2391, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2384, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2396, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2397, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2383, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 2387, column 0

openjpeg-data (version: 2020.05.19)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 116

openmw (version: 0.45.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

openspin (version: 1.00.78)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

openssh-sans-x (version: 8.4p1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

openssl (version: 1.0.2u)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 506, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 525, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 524, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 523, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 522, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 520, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 519, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 518, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 517, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 516, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 514, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 513, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 512, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 511, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 510, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 509, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 508, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 507, column 0

osm-gps-map (version: 1.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

pandoc (version: 2.7.3)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

pass-git-helper (version: 0.3.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

pass-rotate (version: 0.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

pelican (version: 4.2.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

perl-extutils-pkgconfig (version: 1.16)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'pkg-config' should probably be a native input

perl-test-object (version: 0.08)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

pflask (version: 0.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

phast (version: 1.5)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 15350, column 30

pidentd (version: 3.0.19)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

pigx-scrnaseq (version: 0.0.8)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 12775, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 12773, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 12774, column 0

pinball (version: 0.3.1)

LinterMessage
New warningpatch-headers

Validate patch headers

pinball-const-fix.patch: patch lacks comment and upstream status
New warningpatch-headers

Validate patch headers

pinball-system-ltdl.patch: patch lacks comment and upstream status

pjproject (version: 2.9)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 651 is way too long (103 characters)

pjproject-jami (version: 2.9)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 773 is way too long (103 characters)

pjproject-jami (version: 2.10)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

plasma-framework (version: 5.70.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 3397 is way too long (93 characters)
New warningpatch-file-names

Validate file names and availability of patches

plasma-framework-fix-KF5PlasmaMacros.cmake.patch: file name is too long

plotutils (version: 2.6)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

trailing white space on line 79

plymouth (version: 0.9.4)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1927 is way too long (91 characters)

poetry (version: 1.1.4)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-pip' should probably not be an input at all

poezio (version: 0.13.1)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all

ponymix (version: 5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

powertabeditor (version: 2.0.0-alpha10)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1306 is way too long (94 characters)

ppp (version: 2.4.7)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

ppsspp (version: 1.10.3)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

presentty (version: 0.2.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input
New warningformatting

Look for formatting issues in the source

line 45 is way too long (117 characters)

procenv (version: 0.51)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

pulsemixer (version: 1.4.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

pypy3 (version: 7.3.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 862 is way too long (91 characters)

python (version: 3.7.4)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 396 is way too long (92 characters)

python (version: 3.8.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 480 is way too long (93 characters)

python2-anaconda-client (version: 1.6.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-apispec (version: 0.25.3)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 64

python2-apsw (version: 3.20.1-r1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-argcomplete (version: 1.11.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-axolotl (version: 0.1.39)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-cairocffi (version: 0.9.0)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-capstone (version: 3.0.5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-cffi (version: 1.11.5)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-clf (version: 0.5.7)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-nose' should probably be a native input

python2-cloudpickle (version: 0.6.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 15823 is way too long (97 characters)
Resolved warningformatting

Look for formatting issues in the source

line 15822 is way too long (97 characters)

python2-conda (version: 4.3.16)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-cov-core (version: 1.15.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-coverage' should probably be a native input

python2-coverage-test-runner (version: 1.15)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-coverage' should probably be a native input

python2-debtcollector (version: 1.19.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pbr' should probably be a native input

python2-djvulibre (version: 0.8.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-cython' should probably be a native input

python2-docopt (version: 0.6.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-faker (version: 0.7.9)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-file (version: 5.33)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-fixtures (version: 3.0.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pbr' should probably be a native input

python2-gevent (version: 1.3.7)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python2-guzzle-sphinx-theme (version: 0.7.11)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python2-hy (version: 0.17.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 8520, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 8521, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 8522, column 0

python2-ipython-cluster-helper (version: 0.6.4)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python2-setuptools' should probably not be an input at all

python2-jsonpatch (version: 0.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-jsonpatch (version: 1.16)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-keystoneclient (version: 1.8.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 801 is way too long (102 characters)

python2-langkit (version: 0.0.0-0.fe0bc8b)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-docutils' should probably be a native input

python2-larch (version: 1.20151025)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

python2-larch-coverage-4.0a6-compatibility.patch: file name is too long

python2-libxml2 (version: 2.9.10)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-lmdb (version: 0.95)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python2-m2r (version: 0.2.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-docutils' should probably be a native input

python2-matplotlib (version: 2.2.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

python2-mox3 (version: 0.24.0)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-mwclient (version: 0.8.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-nose2 (version: 0.9.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest-cov' should probably be a native input

python2-nose-timer (version: 0.7.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-nose' should probably be a native input

python2-nosexcover (version: 1.0.11)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-coverage' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-nose' should probably be a native input

python2-numpy (version: 1.8.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-numpydoc (version: 0.8.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python2-packaging (version: 20.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-pbcore (version: 1.2.10)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-cython' should probably be a native input

python2-pydot (version: 1.4.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-pygobject (version: 2.28.7)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

python2-pygobject (version: 3.34.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 803 is way too long (95 characters)
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

python2-pytest-cache (version: 1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input

python2-pytest-capturelog (version: 0.7)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input

python2-pytest-catchlog (version: 1.2.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input

python2-pytest-cov (version: 2.8.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-coverage' should probably be a native input

python2-pytest-mock (version: 1.10.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-mock' should probably be a native input

python2-pytest-subtesthack (version: 0.1.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input

python2-pytest-warnings (version: 0.2.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input

python2-pytest-xdist (version: 2.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pytest' should probably be a native input

python2-renpy (version: 7.3.5)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-seaborn (version: 0.9.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 6025 is way too long (99 characters)
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python2-setuptools-scm-git-archive (version: 1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-setuptools-scm' should probably be a native input

python2-sphinxcontrib-programoutput (version: 0.15)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python2-sphinx-repoze-autointerface (version: 0.8)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python2-sphinx-rtd-theme (version: 0.2.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python2-sure (version: 1.4.11)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-mock' should probably be a native input

python2-testresources (version: 2.0.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pbr' should probably be a native input

python2-testscenarios (version: 0.5.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pbr' should probably be a native input

python2-testtools (version: 2.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-pbr' should probably be a native input

python2-unicodecsv (version: 0.14.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-unittest2 (version: 1.1.0)

LinterMessage
New warningpatch-headers

Validate patch headers

python-unittest2-remove-argparse.patch: patch lacks comment and upstream status

python2-urwidtrees (version: 1.0.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-virtualenv (version: 20.2.1)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python2-setuptools' should probably not be an input at all

python2-whatever (version: 0.6)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python2-xopen (version: 0.5.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-setuptools-scm' should probably be a native input

python2-xsge (version: 2018.02.26)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python-anaconda-client (version: 1.6.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-apispec (version: 0.25.3)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 64

python-apsw (version: 3.20.1-r1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-arcp (version: 0.2.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python-argh (version: 0.26.2-1.dcd3253)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest-cov' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-mock' should probably be a native input

python-axolotl (version: 0.1.39)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-bbknn (version: 1.3.6)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

python-binwalk (version: 2.1.1-0.64201ac)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 11149 is way too long (106 characters)

python-boto3 (version: 1.16.22)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 11327, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 11325, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 11326, column 0

python-breathe (version: 4.22.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-capstone (version: 3.0.5)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-case (version: 1.5.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-mock' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-nose' should probably be a native input

python-cffi-documentation (version: 1.11.5)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python-clf (version: 0.5.7)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-nose' should probably be a native input

python-cloudpickle (version: 0.6.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 15822 is way too long (97 characters)
Resolved warningformatting

Look for formatting issues in the source

line 15823 is way too long (97 characters)

python-codecov (version: 2.0.15)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-coverage' should probably be a native input

python-conda (version: 4.3.16)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-conda (version: 4.8.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-cov-core (version: 1.15.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-coverage' should probably be a native input

python-coveralls (version: 1.11.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-coverage' should probably be a native input

python-debtcollector (version: 1.19.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-djvulibre (version: 0.8.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

python-doc8 (version: 0.8.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-docopt (version: 0.6.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-docusign-esign (version: 3.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-nose' should probably be a native input

python-eliot (version: 1.12.0)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 153

python-faiss (version: 1.5.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'swig' should probably be a native input

python-file (version: 5.33)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python-fixtures (version: 3.0.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-fpylll (version: 0.5.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-get-version (version: 2.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest-cov' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all

python-gevent (version: 1.3.7)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python-guzzle-sphinx-theme (version: 0.7.11)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-hy (version: 0.17.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 8520, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 8522, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 8521, column 0

python-hyperkitty (version: 1.3.3)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs python-django@2.2.17 and python-django@3.1.3 collide

python-iocapture (version: 0.1.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest-cov' should probably be a native input

python-ipython-cluster-helper (version: 0.6.4)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all

python-jaraco-packaging (version: 6.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-setuptools-scm' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-jsonpatch (version: 0.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-jsonpatch (version: 1.16)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-jsonrpc-server (version: 0.4.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-mock' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-keystoneclient (version: 1.8.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-legacy-api-wrap (version: 1.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest-cov' should probably be a native input
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all

python-libfreenect (version: 0.6.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python-llvmlite (version: 0.30.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 727 is way too long (92 characters)

python-m2r (version: 0.2.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-mailman-hyperkitty (version: 1.1.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 3341 is way too long (168 characters)
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python-mamba (version: 0.11.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-coverage' should probably be a native input

python-matplotlib (version: 3.1.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

python-moto (version: 1.3.16.dev134)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-mock' should probably be a native input

python-mox3 (version: 0.24.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-mwclient (version: 0.8.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-mypy (version: 0.790)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

python-nbsphinx (version: 0.7.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-nose2 (version: 0.9.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest-cov' should probably be a native input

python-nose-timer (version: 0.7.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-nose' should probably be a native input

python-nosexcover (version: 1.0.11)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-coverage' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-nose' should probably be a native input

python-numpydoc (version: 0.8.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-openstackdocstheme (version: 1.18.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-oslo.config (version: 5.2.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-oslo.log (version: 3.36.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-pifpaf (version: 2.5.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-pygenometracks (version: 3.3)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs python-distlib@0.3.1 and python-distlib@0.3.0 collide

python-pygobject (version: 3.28.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 701 is way too long (95 characters)

python-pygobject (version: 3.34.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

python-pypandoc (version: 1.5)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python-pyqt (version: 5.14.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 2061 is way too long (105 characters)

python-pytest-black (version: 0.3.8)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-cache (version: 1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-capturelog (version: 0.7)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-catchlog (version: 1.2.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-checkdocs (version: 1.2.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-pytest-check-links (version: 0.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-pytest-cov (version: 2.8.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-coverage' should probably be a native input

python-pytest-django (version: 3.10.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-forked (version: 1.1.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-httpbin (version: 0.2.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-isort (version: 0.3.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-lazy-fixture (version: 0.6.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-mock (version: 1.10.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-sanic (version: 1.6.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-subtesthack (version: 0.1.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-sugar (version: 0.9.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-timeout (version: 1.3.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-vcr (version: 1.0.2-1.4d6c7b3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-warnings (version: 0.2.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-xdist (version: 2.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytest-xprocess (version: 0.9.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pytest' should probably be a native input

python-pytools (version: 2020.4)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

python-pywinrm (version: 0.4.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

python-readme-renderer (version: 26.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-reno (version: 2.7.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-requests (version: 2.20.1)

LinterMessage
New warningprofile-collisions

Report collisions that would occur due to propagated inputs

propagated inputs python-urllib3@1.24.3 and python-urllib3@1.25.9 collide

python-restructuredtext-lint (version: 1.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-robber (version: 1.1.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-mock' should probably be a native input

python-rpy2 (version: 3.3.5)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 5713 is way too long (104 characters)
New warningformatting

Look for formatting issues in the source

line 5720 is way too long (104 characters)

python-rst2ansi (version: 0.1.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-seaborn (version: 0.9.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 6025 is way too long (99 characters)
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

python-setuptools-scm-git-archive (version: 1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-setuptools-scm' should probably be a native input

python-sphinx (version: 3.2.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-sphinxcontrib-newsfeed (version: 0.1.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sphinxcontrib-programoutput (version: 0.15)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sphinxcontrib-svg2pdfconverter (version: 1.0.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sphinx-copybutton (version: 0.2.6)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sphinx-intl (version: 2.0.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sphinx-repoze-autointerface (version: 0.8)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sphinx-rtd-theme (version: 0.2.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-sphinx' should probably be a native input

python-sure (version: 1.4.11)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-mock' should probably be a native input

python-tempest-lib (version: 1.0.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-testresources (version: 2.0.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-testscenarios (version: 0.5.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-testtools (version: 2.3.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-pbr' should probably be a native input

python-trezor-agent (version: 0.13.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

python-unittest2 (version: 1.1.0)

LinterMessage
New warningpatch-headers

Validate patch headers

python-unittest2-remove-argparse.patch: patch lacks comment and upstream status

python-urwidtrees (version: 1.0.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-velocyto (version: 0.17.17)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

python-virtualenv (version: 20.2.1)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python-setuptools' should probably not be an input at all

python-whatever (version: 0.6)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

python-xopen (version: 0.5.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-setuptools-scm' should probably be a native input

qemu (version: 4.1.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 122 is way too long (97 characters)

qemu-minimal (version: 4.1.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 265 is way too long (103 characters)

qemu-minimal (version: 5.1.0)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

qtbase (version: 5.12.6)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 538 is way too long (105 characters)
Resolved warningformatting

Look for formatting issues in the source

line 541 is way too long (117 characters)
Resolved warningformatting

Look for formatting issues in the source

line 536 is way too long (99 characters)

qtbase (version: 5.14.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 445 is way too long (96 characters)

qtox (version: 1.16.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

qtremoteobjects (version: 5.14.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1516 is way too long (94 characters)

qucs (version: 0.0.19-0.b4f27d9)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'libtool' should probably be a native input

qucs-s (version: 0.0.21)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'libtool' should probably be a native input

queen (version: 1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9415 is way too long (184 characters)
New warningformatting

Look for formatting issues in the source

line 9416 is way too long (205 characters)

queen-de (version: 1.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9416 is way too long (205 characters)
New warningformatting

Look for formatting issues in the source

line 9415 is way too long (184 characters)

queen-fr (version: 1.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9416 is way too long (205 characters)
New warningformatting

Look for formatting issues in the source

line 9415 is way too long (184 characters)

queen-it (version: 1.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9416 is way too long (205 characters)
New warningformatting

Look for formatting issues in the source

line 9415 is way too long (184 characters)

racket (version: 7.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

racket-minimal (version: 7.9)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

raspi-arm64-chainloader (version: 0.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 211 is way too long (139 characters)
New warningformatting

Look for formatting issues in the source

line 224 is way too long (97 characters)

raspi-arm-chainloader (version: 0.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 131 is way too long (129 characters)
New warningformatting

Look for formatting issues in the source

line 137 is way too long (102 characters)

rav1e (version: 0.3.4)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'nasm' should probably be a native input

r-aws-signature (version: 0.6.0)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

r-biocio (version: 1.0.1)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

r-brms (version: 2.14.4)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infractions at 109, 532, 653, 784
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

r-clusterr (version: 1.2.2)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infractions at 606, 945

rcm (version: 1.3.3)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 183

readline (version: 7.0.5)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

rhash (version: 1.3.8)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

r-iheatmapr (version: 0.5.1)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

r-iml (version: 0.10.0)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

r-lpme (version: 1.1.1)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 153

r-oai (version: 0.3.0)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

robin-map (version: 0.6.3)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 281

rosegarden (version: 18.12)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 4070 is way too long (93 characters)

rosegarden (version: 20.12)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 4639 is way too long (94 characters)

r-rhdf5lib (version: 1.8.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 10527 is way too long (102 characters)
Resolved warningformatting

Look for formatting issues in the source

line 10528 is way too long (104 characters)

r-rstan (version: 2.21.2)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

rseqc (version: 2.6.1)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'python2-cython' should probably be a native input

rseqc (version: 3.0.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

r-squarem (version: 2017.10-1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2650 is way too long (97 characters)

r-survminer (version: 0.4.8)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

rtl-sdr (version: 0.6.0)

LinterMessage
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

r-topicmodels (version: 0.2-11)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 151

ruby-asciidoctor-pdf (version: 1.5.3-1.d257440)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1737 is way too long (99 characters)

ruby-asciimath (version: 1.0.4)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2398 is way too long (100 characters)

ruby-haml (version: 5.0.4)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

ruby-mimemagic (version: 0.3.3)

LinterMessage
Resolved warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

ruby-sanitize (version: 4.6.3)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

rust (version: 1.30.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 899, column 0

rust (version: 1.31.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 927, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 928, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 930, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 929, column 0

rust-async-compression (version: 0.3.5)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 1219 is way too long (92 characters)

rust-bitstream-io (version: 0.8.5)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 2386 is way too long (111 characters)
New warningformatting

Look for formatting issues in the source

line 2388 is way too long (111 characters)

rust-gimli (version: 0.20.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 11002 is way too long (91 characters)

rust-inflections (version: 1.1.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 36971 is way too long (107 characters)
New warningformatting

Look for formatting issues in the source

line 36973 is way too long (107 characters)

rust-libnghttp2-sys (version: 0.1.4+1.41.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'pkg-config' should probably be a native input

rust-nix (version: 0.15.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 17593 is way too long (93 characters)

rust-packed-struct (version: 0.3.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 36872, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 36873, column 0
New warningformatting

Look for formatting issues in the source

tabulation on line 36870, column 0

rust-parking-lot (version: 0.11.0)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 19645 is way too long (102 characters)

rust-rustc-tools-util (version: 0.2.0)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

rust-winit (version: 0.20.0-alpha6)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 2217 is way too long (114 characters)

sbcl-caveman (version: 2.4.0-1.faa5f7e)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 11396 is way too long (97 characters)
New warningformatting

Look for formatting issues in the source

line 11397 is way too long (110 characters)
New warningformatting

Look for formatting issues in the source

line 11394 is way too long (140 characters)

sbcl-cl-cffi-gtk-glib (version: 0.11.2-1.29443c5)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2580 is way too long (91 characters)

sbcl-cl-gobject-introspection (version: 0.3-0.7b703e2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

sbcl-cl-sqlite (version: 0.2-1.c738e66)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2334 is way too long (130 characters)

sbcl-cl-string-match (version: 0-1.5048480)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2024 is way too long (96 characters)

sbcl-fare-quasiquote (version: 20171130)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 5637 is way too long (97 characters)

sbcl-graph-dot (version: 0.0.0-0.78bf9ec)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

sbcl-graph-json (version: 0.0.0-0.78bf9ec)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

sbcl-md5 (version: 2.0.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

sbcl-portable-threads (version: 2.3-1.c0e61a1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 2905 is way too long (94 characters)

sbcl-static-dispatch (version: 0.3)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 11744 is way too long (93 characters)

sbcl-trivia.trivial (version: 0.0.0-1.902e0c6)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 5791 is way too long (104 characters)

scummvm (version: 2.1.0)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'nasm' should probably be a native input

sdl-pango (version: 0.1.2)

LinterMessage
New warningpatch-headers

Validate patch headers

sdl-pango-header-guard.patch: patch lacks comment and upstream status

sdsl-lite (version: 2.1.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

sendmail (version: 8.15.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'm4' should probably be a native input

shogun (version: 6.1.3)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'swig' should probably be a native input

sky (version: 1.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 9519 is way too long (118 characters)
New warningdescription

Validate package descriptions

use @code or similar ornament instead of quotes

snakemake (version: 5.7.1)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-docutils' should probably be a native input

sonata (version: 1.7b1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

spacefm (version: 1.0.6)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

sparql-query (version: 1.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

spice-gtk (version: 0.37)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

spin2cpp (version: 3.6.4)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

steghide (version: 0.5.1)

LinterMessage
New warningpatch-headers

Validate patch headers

steghide-fixes.patch: patch lacks comment and upstream status

stlink (version: 1.5.1)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

straw-viewer (version: 0.1.2)

LinterMessage
New warningformatting

Look for formatting issues in the source

trailing white space on line 1038

stumpwm-with-slynk (version: 19.11)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1622 is way too long (94 characters)

symmetrica (version: 2.0)

LinterMessage
New warningpatch-headers

Validate patch headers

symmetrica-bruch.patch: patch lacks comment and upstream status

syncthing-gtk (version: 0.9.4.4)

LinterMessage
New warninginputs-should-not-be-input

Identify inputs that shouldn't be inputs at all

'python2-setuptools' should probably not be an input at all

synthv1 (version: 0.9.11)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

system-config-printer (version: 1.5.13)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

tao (version: 1.0-beta-10May2006)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'flex' should probably be a native input
New warninginputs-should-be-native

Identify inputs that should be native inputs

'bison' should probably be a native input

tcsh (version: 6.22.02)

LinterMessage
New warningpatch-headers

Validate patch headers

tcsh-fix-autotest.patch: patch lacks comment and upstream status

telepathy-glib (version: 0.24.1)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

telepathy-mission-control (version: 5.16.5)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gtk-doc' should probably be a native input

template-glib (version: 3.34.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

terminator (version: 1.91)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

tesseract-ocr (version: 3.04.01)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

texlive-bin (version: 20180414)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 270 is way too long (91 characters)
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

texlive-hyphen-ethiopic (version: 49435)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1574 is way too long (91 characters)

texlive-latex-base (version: 51265)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 2414, column 22

tigervnc-server (version: 1.9.0)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 180 is way too long (99 characters)

tlp (version: 1.2.2)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

tor (version: 0.4.4.6)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 574

tuxguitar (version: 1.5.2)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1761 is way too long (92 characters)
Resolved warningformatting

Look for formatting issues in the source

line 1769 is way too long (92 characters)

tuxmath (version: 2.0.3)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

tuxpaint (version: 0.9.23)

LinterMessage
New warningpatch-headers

Validate patch headers

tuxpaint-stamps-path.patch: patch lacks comment and upstream status

txt2man (version: 1.6.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

ublock-origin-chromium (version: 1.32.4)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

u-boot-a20-olinuxino-lime (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-a20-olinuxino-lime2 (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-a20-olinuxino-micro (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-am335x-boneblack (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-am335x-evm (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-bananapi-m2-ultra (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-cubieboard (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-cubietruck (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-malta (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-mx6cuboxi (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-nintendo-nes-classic-edition (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-novena (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-pine64-lts (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-pine64-plus (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-pinebook (version: 2019.04)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-pinebook (version: 2020.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 758 is way too long (127 characters)

u-boot-pinebook-pro-rk3399 (version: 2020.10)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 49

u-boot-puma-rk3399 (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-qemu-riscv64 (version: 2020.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 668 is way too long (93 characters)
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 49

u-boot-qemu-riscv64-smode (version: 2020.10)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 49
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-rockpro64-rk3399 (version: 2020.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 902 is way too long (91 characters)
New warningformatting

Look for formatting issues in the source

line 903 is way too long (102 characters)

u-boot-sifive-fu540 (version: 2020.10)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 49
New warningformatting

Look for formatting issues in the source

line 668 is way too long (93 characters)

u-boot-tools (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-tools (version: 2020.10)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 558 is way too long (97 characters)
New warningformatting

Look for formatting issues in the source

line 536 is way too long (91 characters)

u-boot-vexpress-ca9x4 (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

u-boot-wandboard (version: 2019.04)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

ucsim (version: 0.6-pre67)

LinterMessage
New warningdescription

Validate package descriptions

description should start with an upper-case letter or digit

udiskie (version: 2.1.0)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

udisks (version: 2.7.7)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 819 is way too long (97 characters)

unionfs-fuse (version: 2.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

unionfs-fuse-static (version: 2.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

upower (version: 0.99.11)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 5256 is way too long (110 characters)

upx (version: 3.94)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line
Resolved warningformatting

Look for formatting issues in the source

line 1925 is way too long (104 characters)

util-linux-with-udev (version: 2.35.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

variant-tools (version: 3.1.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'python-cython' should probably be a native input

vcflib (version: 1.0.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 15064 is way too long (92 characters)

vim-full (version: 8.2.2067)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 230 is way too long (94 characters)

virt-manager (version: 2.2.1)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 625, column 0
Resolved warningformatting

Look for formatting issues in the source

tabulation on line 624, column 0
New warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

vlc (version: 3.0.8)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 1217 is way too long (107 characters)
Resolved warningformatting

Look for formatting issues in the source

line 1103 is way too long (109 characters)

vmpk (version: 0.7.2)

LinterMessage
Resolved warninginputs-should-be-native

Identify inputs that should be native inputs

'qttools' should probably be a native input

vowpal-wabbit (version: 8.5.0)

LinterMessage
Resolved warningsource-unstable-tarball

Check for autogenerated tarballs

the source URI should not be an autogenerated tarball

warzone2100 (version: 3.2.3)

LinterMessage
Resolved warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 76

wavemon (version: 0.9.2)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

wgetpaste (version: 2.29)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

line 99 is way too long (113 characters)

wine (version: 4.0.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

wine64 (version: 4.0.3)

LinterMessage
Resolved warningformatting

Look for formatting issues in the source

parentheses feel lonely, move to the previous or next line

wine64-staging (version: 5.13)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'autoconf' should probably be a native input

wine-staging (version: 5.13)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'autoconf' should probably be a native input

xcalib (version: 0.10)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

xfce4-clipman-plugin (version: 1.6.1)

LinterMessage
New warningformatting

Look for formatting issues in the source

line 506 is way too long (91 characters)

xorg-server (version: 1.20.6)

LinterMessage
Resolved warningpatch-file-names

Validate file names and availability of patches

file names of patches should start with the package name

xplanet (version: 1.3.1)

LinterMessage
New warningpatch-file-names

Validate file names and availability of patches

xplanet-1.3.1-xpUtil-Add2017LeapSecond.cpp.patch: file name is too long
New warningpatch-file-names

Validate file names and availability of patches

xplanet-1.3.1-libdisplay_DisplayOutput.cpp.patch: file name is too long

xpra (version: 4.0.5)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 6329, column 0

xwallpaper (version: 0.6.5)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 72

yelp-tools (version: 3.32.2)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'itstool' should probably be a native input

yelp-xsl (version: 3.34.2)

LinterMessage
New warningdescription

Validate package descriptions

sentences in description should be followed by two spaces; possible infraction at 300

zbar (version: 0.23)

LinterMessage
New warninginputs-should-be-native

Identify inputs that should be native inputs

'gobject-introspection' should probably be a native input

zeitgeist (version: 1.0.3)

LinterMessage
New warningformatting

Look for formatting issues in the source

tabulation on line 750, column 18
New warningformatting

Look for formatting issues in the source

tabulation on line 753, column 18