From Fedora Project Wiki

Revision as of 22:28, 16 December 2013 by Till (talk | contribs) (→‎Ruby- W: fix vzctl)

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Fedora Upstream Release Monitoring

General Information

This page is about a service for package maintainers to get notified in case rawhide does not contain the latest upstream release of their packages. In case upstream appears to be newer that the package currently in rawhide, a new bug like bug 733828 is filed.

Warning.png
Please only add your own packages here!
If you are not the maintainer or co-maintainer of a package, please do not add it here unless you were explicitly requested to do so by a maintainer/co-maintainer.

Software

cnucnu the software that monitors upstream releases is available at a fedorapeople public git repository.

The Basics

How To Enable Version Checking for My Packages?

It is fairly simple. All you need to do is to add your package to the list at the end of this page, in the List Of Packages section. Also you can add your package name to Check My Package Section and someone will eventually add your package to the list of packages.

What Is The Format Of The List?

It contains three fields: <package name>, <version regex> and <url>.

  • <package name> - the name of your package
  • <version regex> - The regular expression used to find the upstream versions of a package. An example is \b<package name>[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?\.(?:tar|t[bglx]z|tbz2|zip)\b, which usually works for packages distributed by sourceforge. An alias for this regular expression is DEFAULT. An alternative value for the package name can be set using a colon: DEFAULT:foo, e.g. if the tarball is called pam-mount-1.33.tar.bz2, but the Fedora package is pam_mount.
  • <url> - contains an URL, where the upstream publishes release tarballs or mentions the latest version. For packages from sourceforge, https://sourceforge.net/projects/<package name>/files/ with the above example regular expression often works. An alias for this URL is SF-DEFAULT. This alias will be updated in case future changes to sourceforge require a change. The name override works here, too. An attempt to replace all occurrences of /*/ in the URL with the newest subdirectory at that level is made as well, which is useful for versioned subdirectories.

URL Aliases

There are some URL aliases supported, that you can use instead of the normal URL. The "%s" formatstring is replaced by the package name or by the value specified after a colon, e.g. for the package pam_mount SF-DEFAULT:pam-mount is used. This is called "name-override".


How can I develop a regex?

cnucnu shell can be used to interactively develop a regular expression. If your package is hosted at sourceforge, run it and try name <package-name>, then it will show you the results for the default sourceforge URL and regular expression. If this does not work for your package or if your package is not hosted at sourceforge, you will be prompted for a URL and a regular expression.

Here is an example session for bugzilla:

$ cnucnu shell
 None None  URL:> http://ftp.mozilla.org/pub/mozilla.org/webtools/
 None http://ftp.mozilla.org/pub/mozilla.org/webtools/  Regex:> bugzilla-(.*?).tar.gz
Versions: ['2.22.1', '2.22.1', '2.22.2', '2.22.2', '2.22.3', '2.22.3', '2.22.4', '2.22.4', '2.22.5', '2.22.5', '2.22.6', '2.22.6', '2.22.7', '2.22.7', '3.0.1', '3.0.1', '3.0.2', '3.0.2', '3.0.3', '3.0.3', '3.0.4', '3.0.4', '3.0.5', '3.0.5', '3.0.6', '3.0.6', '3.0.8', '3.0.8', '3.0', '3.0', '3.0rc1', '3.0rc1', '3.1.1', '3.1.1', '3.1.2', '3.1.2', '3.1.3', '3.1.3', '3.1.4', '3.1.4', '3.2.2', '3.2.2', '3.2.3', '3.2.3', '3.2.4', '3.2.4', '3.2', '3.2', '3.2rc1', '3.2rc1', '3.2rc2', '3.2rc2', '3.3.1', '3.3.1', '3.3.3', '3.3.3', '3.3.4', '3.3.4', '3.4rc1', '3.4rc1', 'LATEST', 'LATEST', 'STABLE', 'STABLE', 'submit-0.5', 'submit-0.5', 'submit-0.6', 'submit-0.6']
Latest: 3.4rc1
 bugzilla-(.*?).tar.gz http://ftp.mozilla.org/pub/mozilla.org/webtools/  Regex:>

It looks pretty good, but as you can see there are records like 'submit-0.5' or 'STABLE', which are not good version strings. To improve it, you can make a simple change. Version always start with a number, so let's try to put it into the regex:

 bugzilla-(.*?).tar.gz http://ftp.mozilla.org/pub/mozilla.org/webtools/  Regex:> bugzilla-([0-9.]*?).tar.gz
Versions: ['2.22.1', '2.22.1', '2.22.2', '2.22.2', '2.22.3', '2.22.3', '2.22.4', '2.22.4', '2.22.5', '2.22.5', '2.22.6', '2.22.6', '2.22.7', '2.22.7', '3.0.1', '3.0.1', '3.0.2', '3.0.2', '3.0.3', '3.0.3', '3.0.4', '3.0.4', '3.0.5', '3.0.5', '3.0.6', '3.0.6', '3.0.8', '3.0.8', '3.0', '3.0', '3.1.1', '3.1.1', '3.1.2', '3.1.2', '3.1.3', '3.1.3', '3.1.4', '3.1.4', '3.2.2', '3.2.2', '3.2.3', '3.2.3', '3.2.4', '3.2.4', '3.2', '3.2', '3.3.1', '3.3.1', '3.3.3', '3.3.3', '3.3.4', '3.3.4']
Latest: 3.3.4
 bugzilla-([0-9.]*?).tar.gz http://ftp.mozilla.org/pub/mozilla.org/webtools/  Regex:>

Now it looks much better. Another way to check bugzilla version is to use the download site. You can use a heading: Stable Release (2.22.1). Example:

$ cnucnu shell
 None None  URL:> http://www.bugzilla.org/download/
 None http://www.bugzilla.org/download/  Regex:> Stable Release \((.*?)\)
Versions: ['3.2.4', '3.0.8']
Latest: 3.2.4
 Stable Release \((.*?)\) http://www.bugzilla.org/download/  Regex:>
Warning.png
Don't forget to escape ( and ) chars!
You need to escape ( and ) chars because they are used on the page. Unescaped parenthesis are used by regex parser as grouping chars. So if you don't escape parenthesis, they will be included in version string (and this is unwanted). Read Regular Expressions Syntax for more information.

Regex Aliases

Like there are aliases for URLs, there are also some for regexes:

  • DEFAULT - a complex regex to match usual tarballs, supports name-override
  • CPAN-DEFAULT - if name-override is not used, a "perl-" prefix is removed from the name and the DEFAULT regexp is used for matching
  • PEAR-DEFAULT - if name-override is not used, a "php-pear-" prefix is removed from the name and the DEFAULT regexp is used for matching
  • PECL-DEFAULT - if name-override is not used, a "php-pecl-" prefix is removed from the name and the DEFAULT regexp is used for matching
  • FM-DEFAULT - a regex to work with the respective URL alias
  • HACKAGE-DEFAULT - a regex to work with the respective URL alias
  • RUBYGEMS-DEFAULT - a regexp to match the version of gem in JSON, provided by respective URL alias

Bugzilla bugs by upstream-release-monitoring

OPEN bugs

CLOSED bugs

Last output log

cnucnu-last.log

Feedback

If you have any questions or suggestions, you can contact Till Maas.

Check My Package, please!

If you have no time to create your regex or you simple don't understand how to create it, you can add your package's name below and I will add your package to List Of Packages section. It would be nice, if you added URL aside of your package name.

* PKGNAME URL
* svxlink http://sourceforge.net/projects/svxlink/files/svxlink/
* gimp-paint-studio http://code.google.com/p/gps-gimp-paint-studio/
* campivisivi-titillium-fonts http://www.campivisivi.net/titillium/
* ghasher http://asgaard.homelinux.org/code/ghasher/
* libmx http://source.clutter-project.org/sources/mx/
* six http://six.retes.hu/download/
* swing-layout https://swing-layout.dev.java.net/servlets/ProjectNewsList
* lockdev http://alioth.debian.org/projects/lockdev/
* libcap http://sites.google.com/site/fullycapable/
* wvdial http://alumnit.ca/wiki/index.php?page=DownloadReleases
* azureus(vuze) https://www.vuze.com/
* drupal6-features_extra http://drupal.org/project/features_extra
* arptables http://ebtables.sf.net
* ebtables http://ebtables.sf.net
* latencytop http://latencytop.org
* bltk http://www.lesswatts.org/patches/bltk/
* firebird http://www.firebirdsql.org/en/server-packages/

It would be terrific to monitor these, but many of their upstreams have bad release practices (archives without versions, stealth replace-in-place, or even multiple raw files outside an archive)

* aajohan-comfortaa-fonts http://aajohan.deviantart.com/art/Comfortaa-font-105395949
* aspell-af aspell-af-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/af/
* aspell-ar aspell6-ar-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ar/
* aspell-bg aspell6-bg-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bg/
* aspell-bn aspell6-bn-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bn/
* aspell-br aspell-br-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/br/
* aspell-ca aspell6-ca-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ca/
* aspell-cs aspell6-cs-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cs/
* aspell-cy aspell-cy-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cy/
* aspell-da aspell5-da-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/da/
* aspell-de aspell6-de-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/de/
* aspell-el aspell-el-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/el/
* aspell-en aspell6-en-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/en/
* aspell-es aspell6-es-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/es/
* aspell-fi aspell6-fi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fi/
* aspell-fo aspell5-fo-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fo/
* aspell-fr aspell-fr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fr/
* aspell-ga aspell5-ga-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ga/
* aspell-gd aspell5-gd-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gd/
* aspell-gl aspell6-gl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gl/
* aspell-gu aspell6-gu-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gu/
* aspell-he aspell6-he-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/he/
* aspell-hi aspell6-hi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hi/
* aspell-hr aspell-hr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hr/
* aspell-id aspell5-id-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/id/
* aspell-is aspell-is-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/is/
* aspell-it aspell6-it-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/it/
* aspell-ml aspell6-ml-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ml/
* aspell-mr aspell6-mr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/mr/
* aspell-nl aspell-nl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nl/
* aspell-no aspell-nb-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nb/
* aspell-or aspell6-or-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/or/
* aspell-pa aspell6-pa-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pa/
* aspell-pl aspell6-pl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pl/
* aspell-pt_BR aspell6-pt_BR-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_BR/
* aspell-pt_PT aspell6-pt_PT-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_PT/
* aspell-ru aspell6-ru-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ru/
* aspell-sk aspell6-sk-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sk/
* aspell-sr aspell6-sr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sr/
* aspell-sv aspell-sv-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sv/
* aspell-ta aspell6-ta-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ta/
* aspell-te aspell6-te-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/te/
* ecolier-court-fonts
* gfs-ambrosia-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-artemisia-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-baskerville-fonts http://www.greekfontsociety.gr/pages/en_typefaces18th.html
* gfs-bodoni-classic-fonts http://www.greekfontsociety.gr/pages/en_typefaces18th.html
* gfs-bodoni-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-complutum-fonts http://www.greekfontsociety.gr/pages/en_typefaces16th.html
* gfs-decker-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-didot-classic-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-didot-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-eustace-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-fleischman-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-garaldus-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-gazis-fonts http://www.greekfontsociety.gr/pages/en_typefaces18th.html
* gfs-jackson-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-neohellenic-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-nicefore-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-olga-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-porson-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-pyrsos-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-solomos-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-theokritos-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* google-droid-fonts http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts
* jabberpy http://downloads.sf.net/sourceforge/%{name}/%{name}-%{version}-0.tar.gz
* nawk http://www.cs.princeton.edu/~bwk/btl.mirror/index.html
* perl-Frontier-RPC http://search.cpan.org/CPAN/authors/id/R/RT/RTFIREFLY/Frontier-RPC-%{version}.tar.gz
* python-debian http://ftp.debian.org/debian/pool/main/p/python-debian/python-debian_%{version}.tar.gz
* superiotool http://www.coreboot.org/Superiotool
* yanone-kaffeesatz-fonts http://www.yanone.de/typedesign/kaffeesatz/

Packages need feedback from maintainers

Here I'll list some packages from my system that still need feedback from the maintainers if it's useful to monitor upstream. I am not the maintainer of any listed package!

A

B

C

U

Get a list of unmonitored installed packages

bash

Script:

#!/bin/bash

packages=`rpm -qa --qf "%{PACKAGER} %{SOURCERPM}\n" |awk '{ if ( $1 == "Fedora" ) { print $3 } }' |rev |cut -d- -f3- |rev |sort -u`
wget https://fedoraproject.org/wiki/Upstream_release_monitoring -O /tmp/urm.html -q
for p in $packages ; do if [ `grep -c $p /tmp/urm.html` == "0" ]; then echo -n $p ; repoquery -q $p --qf " %{URL}" |uniq ; fi ; done |grep -v "None"

python

#!/usr/bin/python -tt
# vim: fileencoding=utf8
# {{{ License header: GPLv2+
#    This file is part of cnucnu.
#
#    Cnucnu is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    Cnucnu is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with cnucnu.  If not, see <http://www.gnu.org/licenses/>.
# }}}

from collections import OrderedDict
import sys

import yum
from cnucnu.package_list import PackageList

if __name__ == "__main__":
    sys.stderr.write("Getting package list...")
    pl = PackageList()
    sys.stderr.write("done\n")

    yb = yum.YumBase()
    installed_pkgs = yb.rpmdb.returnPackages()
    srpms = OrderedDict()
    missing = OrderedDict()
    for package in sorted(installed_pkgs):
        if package.vendor == "Fedora Project":
            srpm = package.sourcerpm
            srpm_name = srpm.split(".src.rpm")[0].rsplit("-", 2)[0]
            if pl.get(srpm_name, None) is None:
                missing[srpm_name] = package.url

    print("Installed packages, that are not monitored")
    for package, url in missing.iteritems():
        print("{0} {1}".format(package, url))

List Of Packages

A

 * a2ps DEFAULT GNU-DEFAULT
 * abcde DEFAULT GOOGLE-DEFAULT
 * abiword >([.0-9]+?)/< http://www.abisource.com/downloads/abiword/
 * abi-compliance-checker DEFAULT http://ispras.linuxbase.org/index.php/ABI_compliance_checker_Downloads
 * abi-dumper ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/lvc/abi-dumper/releases
 * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
 * access-modifier-annotation access-modifier-(\d+[\d\.]*).tar.gz https://github.com/kohsuke/access-modifier/tags
 * ack DEFAULT CPAN-DEFAULT
 * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
 * acpi DEFAULT SF-DEFAULT:acpiclient
 * acpica-tools DEFAULT:acpica-unix http://www.acpica.org/downloads
 * acpid DEFAULT http://sourceforge.net/projects/acpid2/
 * acpitool DEFAULT http://freeunix.dyndns.org:8000/site2/acpitool.shtml
 * adcli DEFAULT http://www.freedesktop.org/software/realmd/releases/
 * adf-accanthis-fonts (?s)>\s*Accanthis-Std.*?>(\d+\.\d+) http://arkandis.tuxfamily.org/adffonts.html
 * adjtimex DEFAULT DEBIAN-DEFAULT
 * adanaxisgpl DEFAULT http://www.mushware.com/files/
 * adns DEFAULT GNU-DEFAULT
 * adonthell >adonthell(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
 * afpfs-ng DEFAULT SF-DEFAULT
 * Agda HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ahcpd ahcpd-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
 * aircrack-ng aircrack-ng-(.*?)\.tar.\gz http://download.aircrack-ng.org/
 * alltray DEFAULT https://edge.launchpad.net/alltray/old-maintenance
 * alpine DEFAULT http://patches.freeiz.com/alpine/release/index.html
 * alsa-utils DEFAULT ftp://ftp.alsa-project.org/pub/utils/
 * alsa-lib DEFAULT ftp://ftp.alsa-project.org/pub/lib/
 * alsa-tools DEFAULT ftp://ftp.alsa-project.org/pub/tools/
 * alsa-firmware DEFAULT ftp://ftp.alsa-project.org/pub/firmware/
 * alsa-plugins DEFAULT ftp://ftp.alsa-project.org/pub/plugins/
 * altermime DEFAULT http://www.pldaniels.com/altermime/
 * akuma akuma-(\d+[\d\.]*).tar.gz https://github.com/kohsuke/akuma/tags
 * amavisd-new amavisd-new-([0-9.]*?).tar.xz http://www.ijs.si/software/amavisd/
 * amiri-fonts DEFAULT:amiri SF-DEFAULT:amiri
 * anet DEFAULT:libanet http://www.codelabs.ch/download/
 * animal-sniffer animal-sniffer-([0-9\.]+)\.jar http://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer/*/
 * anki DEFAULT http://ankisrs.net/download/mirror/
 * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
 * ant-contrib DEFAULT SF-DEFAULT
 * ant-antunit DEFAULT:apache-ant-antunit http://www.apache.org/dist/ant/antlibs/antunit/source/
 * antlr-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/antlr-maven-plugin/
 * antlr3 DEFAULT:antlr http://www.antlr3.org/download/
 * antlrworks DEFAULT http://www.antlr3.org/download/
 * annotation-indexer DEFAULT https://github.com/jenkinsci/lib-annotation-indexer/releases
 * apache-commons-beanutils DEFAULT:commons-beanutils http://www.apache.org/dist/commons/beanutils/source/
 * apache-commons-cli DEFAULT:commons-cli http://www.apache.org/dist/commons/cli/source/
 * apache-commons-codec DEFAULT:commons-codec http://www.apache.org/dist/commons/codec/source/
 * apache-commons-collections DEFAULT:commons-collections http://www.apache.org/dist/commons/collections/source/
 * apache-commons-compress DEFAULT:commons-compress http://www.apache.org/dist/commons/compress/source/
 * apache-commons-configuration DEFAULT:commons-configuration http://www.apache.org/dist/commons/configuration/source/
 * apache-commons-daemon DEFAULT:commons-daemon http://www.apache.org/dist/commons/daemon/source/
 * apache-commons-dbcp DEFAULT:commons-dbcp http://www.apache.org/dist/commons/dbcp/source/
 * apache-commons-dbutils DEFAULT:commons-dbutils http://www.apache.org/dist/commons/dbutils/source/
 * apache-commons-digester DEFAULT:commons-digester http://www.apache.org/dist/commons/digester/source/
 * apache-commons-discovery DEFAULT:commons-discovery http://www.apache.org/dist/commons/discovery/source/
 * apache-commons-el DEFAULT:commons-el http://www.apache.org/dist/commons/el/source/
 * apache-commons-exec DEFAULT:commons-exec http://www.apache.org/dist/commons/exec/source/
 * apache-commons-fileupload DEFAULT:commons-fileupload http://www.apache.org/dist/commons/fileupload/source/
 * apache-commons-io DEFAULT:commons-io http://www.apache.org/dist/commons/io/source/
 * apache-commons-jexl DEFAULT:commons-jexl http://www.apache.org/dist/commons/jexl/source/
 * apache-commons-jxpath DEFAULT:commons-jxpath http://www.apache.org/dist/commons/jxpath/source/
 * apache-commons-lang DEFAULT:commons-lang http://www.apache.org/dist/commons/lang/source/
 * apache-commons-lang3 DEFAULT:commons-lang3 http://archive.apache.org/dist/commons/lang/source/
 * apache-commons-launcher DEFAULT:commons-launcher http://www.apache.org/dist/commons/launcher/source/
 * apache-commons-logging DEFAULT:commons-logging http://www.apache.org/dist/commons/logging/source/
 * apache-commons-math DEFAULT:commons-math3 http://www.apache.org/dist/commons/math/source/
 * apache-commons-modeler DEFAULT:commons-modeler http://www.apache.org/dist/commons/modeler/source/
 * apache-commons-net DEFAULT:commons-net http://www.apache.org/dist/commons/net/source/
 * apache-commons-parent commons-parent-(\d+)[^-] http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/
 * apache-commons-pool DEFAULT:commons-pool http://www.apache.org/dist/commons/pool/source/
 * apache-commons-validator DEFAULT:commons-validator http://www.apache.org/dist/commons/validator/source/
 * apache-commons-vfs DEFAULT:commons-vfs http://archive.apache.org/dist/commons/vfs/source/
 * apache-james-project james-parent-([0-9\.]+)-source-release\.zip http://repo1.maven.org/maven2/org/apache/james/james-parent/*/
 * apache-juddi juddi-([^/]+)/ http://svn.apache.org/repos/asf/juddi/tags/
 * apache-mime4j DEFAULT http://james.apache.org/download.cgi
 * apache-rat DEFAULT http://www.apache.org/dist/creadur/*/
 * apache-resource-bundles <version>([^<]+)</version> http://repo1.maven.org/maven2/org/apache/apache-resource-bundles/maven-metadata.xml
 * apanov-edrip-fonts DEFAULT:edrip ftp://ftp.dvo.ru/pub/Font/edrip/
 * apanov-heuristica-fonts DEFAULT:heuristica GOOGLE-DEFAULT:evristika
 * api-sanity-checker ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/lvc/api-sanity-checker/releases
 * apr DEFAULT http://www.apache.org/dist/apr/
 * apr-util DEFAULT http://www.apache.org/dist/apr/
 * apvlv DEFAULT http://naihe2010.github.com/apvlv/
 * aqute-bnd \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bnd/
 * aqute-bndlib \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bndlib/
 * arch-install-scripts archive/v(.*?)\.zip https://github.com/falconindy/arch-install-scripts/releases
 * archimedes DEFAULT GNU-DEFAULT
 * archivemount DEFAULT http://www.cybernoia.de/software/archivemount/
 * archlinux-keyring archlinux-keyring-([0-9]+)\.tar\..* https://projects.archlinux.org/archlinux-keyring.git/refs/
 * ardour3 [Aa]rdour\ (3\.(?:[0-9]+\.)[0-9]+)\ source\ code http://community.ardour.org/s/buy_anon
 * arduino DEFAULT GOOGLE-DEFAULT
 * args4j args4j-site-([0-9.]*?)\" https://github.com/kohsuke/args4j/tags
 * argus DEFAULT http://www.qosient.com/argus/
 * argyllcms DEFAULT:hargyllcms http://people.freedesktop.org/~hughsient/releases/
 * aria2 DEFAULT SF-DEFAULT
 * arp-scan DEFAULT http://www.nta-monitor.com/tools-resources/security-tools/arp-scan-archive
 * arpack DEFAULT:arpack-ng http://forge.scilab.org/index.php/p/arpack-ng/
 * asc DEFAULT SF-DEFAULT:asc-hq
 * ascii-design DEFAULT SF-DEFAULT
 * askbot DEFAULT PYPI-DEFAULT
 * aspell DEFAULT GNU-DEFAULT
 * ast DEFAULT http://www.starlink.ac.uk/download/ast/
 * astronomy-menus DEFAULT https://git.fedorahosted.org/git/astronomy.git
 * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
 * asunder asunder-([0-9.]*?).tar.bz2 http://littlesvr.ca/asunder/releases/
 * async-http-client DEFAULT https://github.com/AsyncHttpClient/async-http-client/tags
 * at DEFAULT DEBIAN-DEFAULT
 * atinject >(\d[^/]*)/< http://atinject.googlecode.com/svn/tags/
 * atk DEFAULT GNOME-DEFAULT
 * atlas atlas([0-9].\d*[0248].[0-9].*?).tar.bz2 SF-DEFAULT:math-atlas
 * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
 * atomix DEFAULT GNOME-DEFAULT
 * atool DEFAULT http://download.savannah.gnu.org/releases/atool/
 * atop DEFAULT http://www.atoptool.nl/downloadatop.php
 * ATpy DEFAULT https://github.com/atpy/atpy/downloads
 * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
 * audacious DEFAULT http://audacious-media-player.org/downloads
 * audacity audacity-minsrc-(.*?)\.tar\.xz GOOGLE-DEFAULT
 * autofs DEFAULT http://kernel.org/pub/linux/daemons/autofs/v*/
 * autoconf DEFAULT GNU-DEFAULT
 * autoconf-archive DEFAULT GNU-DEFAULT
 * autogen "rel([^/]+)/" GNU-DEFAULT
 * automake DEFAULT GNU-DEFAULT
 * autossh autossh-(.+?)\.t.*z http://www.harding.motd.ca/autossh/
 * autokey DEFAULT GOOGLE-DEFAULT
 * avahi DEFAULT http://avahi.org/download/
 * avogadro avogadro-([0-9]\.[0-9]*[02468]\.[0-9.]*)\.tar.bz2 SF-DEFAULT
 * avra DEFAULT SF-DEFAULT
 * awesome DEFAULT http://awesome.naquadah.org/download/
 * awstats awstats-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=13764&package_id=11481

B

 * b43-fwcutter DEFAULT http://bues.ch/b43/fwcutter/
 * babel DEFAULT:Babel http://ftp.edgewall.com/pub/babel/
 * babeld babeld-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
 * backintime DEFAULT http://backintime.le-web.org/download_page/
 * bam DEFAULT http://matricks.github.io/bam/
 * bamf DEFAULT LP-DEFAULT
 * banner DEFAULT http://software.cedar-solutions.com/ftp/software/
 * banshee DEFAULT http://banshee.fm/download/
 * barcode DEFAULT GNU-DEFAULT
 * base64coder ([0-9]{4}-[0-9]{2}-[0-9]{2}) http://repo2.maven.org/maven2/biz/source_code/base64coder/
 * bash DEFAULT GNU-DEFAULT
 * batik "batik-src-([^"]+).zip" http://archive.apache.org/dist/xmlgraphics/batik/
 * batti DEFAULT GOOGLE-DEFAULT:batti-gtk
 * bc DEFAULT GNU-DEFAULT
 * bcel DEFAULT http://www.apache.org/dist/commons/bcel/source/
 * bcrypt DEFAULT SF-DEFAULT
 * be DEFAULT http://download.bugseverywhere.org/releases/
 * beecrypt DEFAULT SF-DEFAULT
 * bea-stax stax-src-([0-9.]*?)\.zip http://dist.codehaus.org/stax/distributions/
 * BEDTools \bBEDTools\.v(.*?)\.t GOOGLE-DEFAULT:bedtools
 * beep beep-([0-9\.]+).tar.gz http://www.johnath.com/beep/
 * beust-jcommander jcommander-([0-9.]*?)\" https://github.com/cbeust/jcommander/tags
 * bfast DEFAULT SF-DEFAULT
 * bibus DEFAULT SF-DEFAULT:bibus-biblio
 * bibutils DEFAULT SF-DEFAULT
 * bigloo Current version is <font color="red">(.*?)</font> http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html
 * bijiben DEFAULT GNOME-DEFAULT 
 * billiards DEFAULT http://download.savannah.gnu.org/releases/billiards/
 * bindfs DEFAULT http://bindfs.org/downloads/
 * biosdevname DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/biosdevname.git/
 * bird DEFAULT http://bird.network.cz/?download
 * bison DEFAULT GNU-DEFAULT
 * bitbake DEFAULT SF-DEFAULT:bitbake.berlios
 * bitlyclip DEFAULT PYPI-DEFAULT
 * bitmap DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * bitstream-vera-fonts DEFAULT:ttf-bitstream-vera GNOME-DEFAULT:ttf-bitstream-vera
 * blackbox DEFAULT SF-DEFAULT:blackboxwm
 * bleachbit DEFAULT SF-DEFAULT
 * blender blender-(.[^-]*?)\.tar\.gz http://download.blender.org/source/
 * blktrace blktrace-([0-9\.].*?).tar.bz2 http://brick.kernel.dk/snaps/
 * blobby DEFAULT:blobby2-linux SF-DEFAULT
 * blobwars \bblobwars-([\d.]+)(?:-dfsg)?\.t SF-DEFAULT
 * blosc archive/v(.*?)\.zip https://github.com/FrancescAlted/blosc/releases
 * bluefish DEFAULT SF-DEFAULT
 * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bmon DEFAULT http://www.carisma.slowglass.com/~tgr/bmon/files/
 * bodr DEFAULT SF-DEFAULT
 * boswars DEFAULT http://www.boswars.org/dist/releases/
 * botan Botan-([0-9]*\.[0-9]*[02468]\.[0-9.]*)\.tbz http://botan.randombit.net/download.html
 * bouncycastle (?i)Java\s+Release\s+([\d.]+) http://www.bouncycastle.org/
 * brainfuck HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bridge-utils DEFAULT SF-DEFAULT:bridge
 * bridge-method-injector DEFAULT https://github.com/infradna/bridge-method-injector/tags
 * brise DEFAULT GOOGLE-DEFAULT:rimeime
 * bsd-games DEFAULT ftp://metalab.unc.edu/pub/Linux/games/
 * bsh DEFAULT http://www.beanshell.org/developer.html
 * bsf DEFAULT http://archive.apache.org/dist/jakarta/bsf/source/
 * bti (\d\d\d)\.zip https://github.com/gregkh/bti/tags
 * btkbdd \bv([\d+\.]+)\b https://github.com/lkundrak/virtkbd/tags
 * btrfs-progs btrfs-progs-v(.*?)\.tar http://kernel.org/pub/linux/kernel/people/mason/btrfs-progs/
 * buildbot DEFAULT https://github.com/buildbot/buildbot/releases
 * buildnumber-maven-plugin buildnumber-maven-plugin-([0-9.]*?.*)\/\" http://svn.codehaus.org/mojo/tags/
 * busybox DEFAULT http://www.busybox.net/downloads/
 * bvi DEFAULT SF-DEFAULT
 * byacc DEFAULT ftp://invisible-island.net/byacc/
 * byaccj \bbyaccj([\d.]*?)_src\.t SF-DEFAULT
 * bygfoot DEFAULT SF-DEFAULT
 * byobu DEFAULT LP-DEFAULT
 * bzip2 DEFAULT http://www.bzip.org/downloads.html
 * bzr DEFAULT LP-DEFAULT
 * bzr-fastimport DEFAULT LP-DEFAULT
 * bzrtools bzrtools-(.*?).tar.gz http://bazaar-vcs.org/BzrTools

C

 * cab HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-dev HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-rpm HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabextract DEFAULT http://www.cabextract.org.uk/
 * cacti DEFAULT http://www.cacti.net/downloads/
 * cairo DEFAULT http://cairographics.org/releases/
 * cal10n DEFAULT http://cal10n.qos.ch/dist/
 * calc DEFAULT http://www.isthe.com/chongo/src/calc/
 * calligra DEFAULT http://download.kde.org/stable/calligra-latest/
 * cantata DEFAULT GOOGLE-DEFAULT
 * cardpeek DEFAULT GOOGLE-DEFAULT
 * caribou DEFAULT GNOME-DEFAULT
 * carto NPM-DEFAULT NPM-DEFAULT
 * ccache DEFAULT http://samba.org/ftp/ccache/
 * CCfits DEFAULT http://heasarc.gsfc.nasa.gov/fitsio/CCfits/
 * ccrtp DEFAULT GNU-DEFAULT
 * cd-discid DEFAULT http://linukz.org/cd-discid.shtml
 * cdk cdk-5.0-(.*?)\.tgz ftp://invisible-island.net/cdk/
 * cdlabelgen cdlabelgen-(.*?).tgz http://www.aczoom.com/tools/cdinsert/
 * cdrdao DEFAULT SF-DEFAULT
 * cdrkit DEFAULT http://cdrkit.org/releases/
 * centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
 * ceph DEFAULT http://ceph.com/resources/downloads/
 * cfengine DEFAULT GNU-DEFAULT
 * cfitsio cfitsio([0-9.]*?).tar.gz http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/
 * cflow DEFAULT GNU-DEFAULT
 * cgnslib cgnslib_(.*?).tar.gz http://sourceforge.net/projects/cgns/
 * CGAL CGAL-([0-9.]*)\.tar.xz https://gforge.inria.fr/frs/?group_id=52
 * checkstyle DEFAULT SF-DEFAULT
 * checkpolicy DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * chemical-mime-data DEFAULT SF-DEFAULT:chemical-mime
 * chemtool DEFAULT http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
 * cherrytree DEFAULT http://www.giuspen.com/cherrytree/
 * chicken DEFAULT http://code.call-cc.org/
 * childsplay DEFAULT SF-DEFAULT
 * chinese-calendar DEFAULT LP-DEFAULT
 * chirp chirp-([0-9]+\.[0-9]+\.*[0-9]?).tar.gz http://chirp.danplanet.com/projects/chirp/wiki/Download
 * chmsee DEFAULT GOOGLE-DEFAULT
 * choqok DEFAULT SF-DEFAULT
 * chromaprint DEFAULT https://github.com/lalinsky/chromaprint/downloads
 * cifs-utils DEFAULT http://www.samba.org/ftp/linux-cifs/cifs-utils/
 * cjkuni-ukai-fonts DEFAULT:ttf-arphic-ukai DEBIAN-DEFAULT:ttf-arphic-ukai
 * cjkuni-uming-fonts DEFAULT:ttf-arphic-uming DEBIAN-DEFAULT:ttf-arphic-uming
 * ckeditor CKEditor\s([0-9.]*) http://download.cksource.com/CKEditor/CKEditor/
 * clamav DEFAULT SF-DEFAULT
 * ClanLib DEFAULT http://clanlib.org/download/releases-*/
 * claws-mail DEFAULT SF-DEFAULT:sylpheed-claws
 * clean clean([0-9.]*?)_boot.tar.gz http://wiki.clean.cs.ru.nl/Download_Clean
 * clementine DEFAULT GOOGLE-DEFAULT:clementine-player
 * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
 * cloc DEFAULT SF-DEFAULT
 * clojure >(\d+\.\d+\.\d+)\/ http://repo1.maven.org/maven2/org/clojure/clojure/
 * clojure-maven-plugin DEFAULT https://github.com/talios/clojure-maven-plugin/tags
 * clusterPy DEFAULT GOOGLE-DEFAULT:clusterpy
 * clutter DEFAULT GNOME-DEFAULT
 * clutter-gtk DEFAULT GNOME-DEFAULT
 * clutter-gst DEFAULT GNOME-DEFAULT
 * cmake DEFAULT http://www.cmake.org/cmake/resources/software.html
 * cmdtest DEFAULT DEBIAN-DEFAULT
 * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd
 * coan DEFAULT SF-DEFAULT:coan2
 * cobertura DEFAULT SF-DEFAULT
 * cobertura-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/cobertura-maven-plugin
 * coda DEFAULT http://www.coda.cs.cmu.edu/pub/coda/src/
 * codeblocks DEFAULT SF-DEFAULT
 * coccinelle Current\sversion:\s([^,]*), http://coccinelle.lip6.fr/download.php
 * cogl DEFAULT GNOME-DEFAULT
 * collectl DEFAULT SF-DEFAULT
 * colord-gtk DEFAULT http://www.freedesktop.org/software/colord/releases/
 * colordiff DEFAULT http://www.colordiff.org/
 * compiz DEFAULT http://releases.compiz.org/*/
 * conduit DEFAULT GNOME-DEFAULT
 * console-setup DEFAULT DEBIAN-DEFAULT
 * conntrack-tools DEFAULT http://ftp.netfilter.org/pub/conntrack-tools/
 * ConsoleKit DEFAULT http://www.freedesktop.org/software/ConsoleKit/dist/
 * converseen DEFAULT SF-DEFAULT
 * convmv DEFAULT https://www.j3e.de/linux/convmv/
 * coreutils DEFAULT GNU-DEFAULT
 * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
 * corosync DEFAULT https://github.com/corosync/corosync/downloads
 * corrida DEFAULT http://corrida.pkim.org/releases
 * couchdb ([\d\.]+)(?=/") http://www.apache.org/dist/couchdb/source/
 * covered DEFAULT SF-DEFAULT
 * cowpatty DEFAULT http://www.willhackforsushi.com/?page_id=50
 * cowsay DEFAULT http://www.nog.net/~tony/warez/
 * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
 * cpl DEFAULT ftp://ftp.eso.org/pub/cpl/
 * cpio DEFAULT GNU-DEFAULT
 * cpphs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cppi DEFAULT GNU-DEFAULT
 * cppcheck DEFAULT SF-DEFAULT
 * cproto DEFAULT ftp://invisible-island.net/cproto/
 * cptutils DEFAULT http://soliton.vm.bytemark.co.uk/pub/jjg/code/
 * cpuid cpuid-(.*?)\.src\.tar\.gz http://www.etallen.com/cpuid.html
 * cracklib DEFAULT SF-DEFAULT
 * crda DEFAULT http://kernel.org/pub/software/network/crda/
 * CriticalMass DEFAULT SF-DEFAULT:criticalmass
 * crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
 * crtools criu-(.*?)\.tar\.bz2 http://download.openvz.org/criu/
 * cscope DEFAULT SF-DEFAULT
 * csmith csmith-([0-9.]*)\.tar\.gz https://github.com/csmith-project/csmith/tags
 * cssparser DEFAULT SF-DEFAULT
 * cssed DEFAULT SF-DEFAULT
 * csslint archive/v(.*?)\.zip https://github.com/stubbornella/csslint/releases
 * cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
 * ctags DEFAULT SF-DEFAULT
 * ctdb DEFAULT http://www.samba.org/ftp/ctdb/
 * ctstream ctstream-([^-/_\s]+)(?:\.asc)\b http://xpisar.wz.cz/ctstream/
 * ctorrent ctorrent-dnh(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
 * CUnit CUnit-(.*?).tar.bz2 http://sourceforge.net/projects/cunit/
 * cups cups-(\d\.\d\.\d)-source\.tar\.bz2 http://www.cups.org/software.php
 * curl DEFAULT http://curl.haxx.se/download/
 * curlpp DEFAULT GOOGLE-DEFAULT
 * cvs >(\d+(?:\.\d+)+)/< http://ftp.gnu.org/non-gnu/cvs/source/stable/
 * cvs2cl Revision:\s*([^\s$]+) http://www.red-bean.com/cvs2cl/cvs2cl.pl
 * cvsps DEFAULT http://www.cobite.com/cvsps/
 * cxxtools DEFAULT http://www.tntnet.org/download.html
 * cyphesis DEFAULT SF-DEFAULT:worldforge

D

 * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * darkhttpd DEFAULT http://unix4lyfe.org/darkhttpd/
 * darktable DEFAULT SF-DEFAULT
 * dash DEFAULT http://gondor.apana.org.au/~herbert/dash/files/
 * datanommer-commands DEFAULT:datanommer.commands PYPI-DEFAULT:datanommer.commands
 * dataquay DEFAULT http://breakfastquay.com/dataquay/
 * datefudge datefudge\_(.*?)\.(?:tar|t[bglx]z)\b http://packages.debian.org/testing/datefudge
 * datovka DEFAULT http://www.nic.cz/public_media/datove_schranky/releases/src/
 * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
 * dbh DEFAULT SF-DEFAULT
 * dblatex DEFAULT SF-DEFAULT
 * dbus-python DEFAULT http://dbus.freedesktop.org/releases/dbus-python/
 * dbus-sharp e/v(.*?)\.zip http://github.com/mono/dbus-sharp/releases
 * dclib DEFAULT SF-DEFAULT:wxdcgui
 * dcraw DEFAULT http://www.cybercom.net/~dcoffin/dcraw/archive/
 * dd_rescue DEFAULT http://www.garloff.de/kurt/linux/ddrescue/
 * ddclient DEFAULT SF-DEFAULT
 * ddd DEFAULT GNU-DEFAULT
 * ddpt DEFAULT http://sg.danny.cz/sg/ddpt.html
 * ddrescue DEFAULT GNU-DEFAULT
 * debmirror debmirror_([0-9.]*).tar.gz DEBIAN-DEFAULT
 * debootstrap DEFAULT DEBIAN-DEFAULT
 * decentxml DEFAULT GOOGLE-DEFAULT
 * decibel-audio-player decibel-audio-player-([0-9]+\..+?).tar.gz http://decibel.silent-blade.org/index.php?n=Main.Download
 * deja-dup DEFAULT LP-DEFAULT
 * dejagnu DEFAULT GNU-DEFAULT
 * dejavu-fonts DEFAULT SF-DEFAULT:dejavu
 * deluge DEFAULT http://download.deluge-torrent.org/source/
 * denemo DEFAULT GNU-DEFAULT
 * desktop-file-utils DEFAULT http://www.freedesktop.org/software/desktop-file-utils/releases/
 * detox DEFAULT SF-DEFAULT
 * dev86 DEFAULT:Dev86src http://v3.sk/~lkundrak/dev86/
 * device-mapper-multipath multipath-tools-(.*?)\.tar\.bz2 http://christophe.varoqui.free.fr/multipath-tools/
 * demorse DEFAULT http://www.qsl.net/5b4az/pages/morse.html
 * devtodo devtodo-([0-9.]*).tar.gz http://swapoff.org/devtodo1.html
 * dexter DEFAULT LP-DEFAULT:dexter-rolodex
 * dgc dgc-(.*?).tar.gz http://sourceforge.net/projects/dgc/
 * dia DEFAULT GNOME-DEFAULT
 * dialog dialog-(.*?)\.tgz ftp://invisible-island.net/dialog/
 * diction DEFAULT GNU-DEFAULT
 * diffmark DEFAULT http://www.mangrove.cz/diffmark/
 * diffstat DEFAULT ftp://invisible-island.net/diffstat/
 * diffuse DEFAULT SF-DEFAULT
 * diffutils DEFAULT GNU-DEFAULT
 * digikam DEFAULT SF-DEFAULT
 * dillo DEFAULT http://www.dillo.org/download/
 * dirmngr DEFAULT ftp://ftp.gnupg.org/gcrypt/dirmngr/
 * dkms DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/dkms.git/
 * dmenu DEFAULT http://tools.suckless.org/dmenu/
 * dmidecode DEFAULT http://download.savannah.gnu.org/releases/dmidecode/
 * dnsmasq dnsmasq-([0-9]+.[0-9]+).tar.xz http://www.thekelleys.org.uk/dnsmasq/
 * dnsyo DEFAULT PYPI-DEFAULT
 * docco NPM-DEFAULT NPM-DEFAULT
 * docker-io v([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/dotcloud/docker/releases
 * docky DEFAULT LP-DEFAULT
 * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
 * dom4j DEFAULT SF-DEFAULT
 * dopewars DEFAULT SF-DEFAULT
 * dos2unix DEFAULT http://waterlan.home.xs4all.nl/dos2unix.html
 * dosbox DEFAULT SF-DEFAULT
 * dosfstools DEFAULT http://www.daniel-baumann.ch/software/dosfstools/
 * dovecot DEFAULT http://www.dovecot.org/download.html
 * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
 * dot2tex DEFAULT GOOGLE-DEFAULT
 * dpsearch dpsearch-([0-9\.]+\-[0-9]+\-.*?).tar.bz2 GOOGLE-DEFAULT:dataparksearch
 * drawtiming DEFAULT SF-DEFAULT
 * drbd DEFAULT http://oss.linbit.com/drbd/
 * dreampie DEFAULT PYPI-DEFAULT
 * drobo-utils DEFAULT SF-DEFAULT
 * dropbear DEFAULT https://matt.ucc.asn.au/dropbear/
 * drraw DEFAULT http://web.taranis.org/drraw/dist
 * drumstick DEFAULT SF-DEFAULT
 * drupal6 (?s)Recommended releases.*?>(6.[^<]*) DRUPAL-DEFAULT:drupal
 * drupal6-addthis DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-admin_menu DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-advanced-help DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-auto_nodetitle DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-backup_migrate DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-better_formats DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-block_class DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-calendar DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-cck DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-comment_bonus_api DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-context DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-context_menu_block DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-ctools DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-custom_breadcrumbs DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-date DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-devel DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-diff DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-eazylaunch DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-emfield DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-faq DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-features DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-feeds DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-filefield DEFAULT:filefield-6.x DRUPAL-DEFAULT
 * drupal6-fivestar DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-flag DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-flexifilter DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-footnotes DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-freelinking DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-geshifilter DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-image DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-image_resize_filter DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-imageapi DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-imagecache DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-imagecache_profiles DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-imagefield DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-job_scheduler DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-login_destination DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-insert DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-link DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-markdown DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-media_vimeo DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-media_youku DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-menu_block DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-messaging DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-mobile_tools DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-notifications DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-og DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-pathauto (?s)Other releases.*?>6.x-([^<]*) DRUPAL-DEFAULT
 * drupal6-path_redirect DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-prepopulate DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-rules DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-service_links DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-stringoverrides DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-strongarm DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-token DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-user_badges DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-userpoints DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-userpoints_votingapi DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-vertical_tabs DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-views DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-views_bonus DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-views_bulk_operations DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-views_customfield DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-views_datasource DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-vote_up_down DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-workspace DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6-yubikey DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7 (?s)Recommended releases.*?>(7.[^<]*) DRUPAL-DEFAULT:drupal
 * drupal7-active_tags DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-advanced_help DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-auto_nodetitle DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-backup_migrate DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-boxes DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-calendar DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-cck (?s)Development releases.*?>7.x-([^<]*) DRUPAL-DEFAULT
 * drupal7-chosen DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-ckeditor DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-context DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-crumbs DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-ctools DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-date DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-date_ical DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-domain DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-domain_locale DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-drush_language DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-ds DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-eva DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-entity DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-entity_translation DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-features DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-features_extra DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-feeds DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-field_permissions DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-file_entity DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-fivestar DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-flexifilter DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-footnotes DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-i18n DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-i18n_boxes DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-job_scheduler DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-jquery_update DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-l10n_client DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-l10n_pconfig DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-l10n_update DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-lang_dropdown DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-language_cookie DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-language_switcher DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-languageicons DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-link DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-locale_cookie DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-libraries DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-markdown DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-mediawiki_api DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-menu_token DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-migrate DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-path_breadcrumbs DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-pathauto DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-potx DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-profiler DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-rules DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-stringoverrides DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-strongarm DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-theme-zen DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-title DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-tmgmt DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-token DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-translation_helpers DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-translation_overview DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-translation_table DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-transliteration DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-variable DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-views DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-views_bulk_operations DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-views_rss DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-votingapi DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal7-workbench DEFAULT:workbench-7.x DRUPAL-DEFAULT
 * drupal7-workbench_moderation DRUPAL-DEFAULT DRUPAL-DEFAULT
 * dsniff DEFAULT http://www.monkey.org/~dugsong/dsniff/
 * dstat latest <b>(.*?)<\/b> tarball http://dag.wieers.com/home-made/dstat/
 * dtach DEFAULT SF-DEFAULT
 * dtrx DEFAULT http://brettcsmith.org/2007/dtrx/
 * dumpasn1 version\s+(2\d{7})\b http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c
 * duplicity DEFAULT http://launchpad.net/duplicity/+download
 * duply DEFAULT SF-DEFAULT:ftplicity
 * dvb-apps DEFAULT:linuxtv-dvb-apps http://www.linuxtv.org/downloads/legacy/
 * dvd+rw-tools DEFAULT http://fy.chalmers.se/~appro/linux/DVD+RW/tools/
 * dvdauthor DEFAULT SF-DEFAULT
 * dvtm DEFAULT http://www.brain-dump.org/projects/dvtm/
 * dwb DEFAULT https://bitbucket.org/portix/dwb/downloads
 * dwm DEFAULT http://dwm.suckless.org/
 * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html

E

 * e2fsprogs DEFAULT SF-DEFAULT
 * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
 * earcandy DEFAULT LP-DEFAULT
 * easymock DEFAULT SF-DEFAULT
 * easystroke DEFAULT SF-DEFAULT
 * ecl DEFAULT SF-DEFAULT:ecls
 * eclipse >([0-9]\.[0-9])</a http://download.eclipse.org/eclipse/downloads/
 * eclipse-m2e-core releases/(.*?)/.*\.zip http://git.eclipse.org/c/m2e/m2e-core.git/refs/tags
 * eclipse-fedorapackager eclipse-fedorapackager-(\d.\d.\d).* https://fedorahosted.org/released/eclipse-fedorapackager/
 * eclipse-jbosstools DEFAULT:jbosstools https://github.com/jbosstools/jbosstools-build-sites/releases
 * eclipse-veditor VEditor (\d+\.\d+\.\d+) SF-DEFAULT:veditor
 * eclipse-wtp-jeetools R(\d_\d_\d)\.zip http://git.eclipse.org/c/jeetools/webtools.javaee.git/refs/tags
 * eclipse-wtp-jpa R(\d_\d_\d)\.zip http://git.eclipse.org/c/dali/webtools.dali.git/refs/tags
 * eclipse-wtp-jsf R(\d_\d_\d)\.zip http://git.eclipse.org/c/jsf/webtools.jsf.git/refs/tags
 * eclipse-wtp-webservices R(\d_\d_\d)\.zip http://git.eclipse.org/c/webservices/webtools.webservices.git/refs/tags
 * ed DEFAULT GNU-DEFAULT
 * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
 * edac-utils DEFAULT SF-DEFAULT
 * egd DEFAULT ftp://ftp.gnupg.org/gcrypt/egd/
 * efibootmgr DEFAULT http://linux.dell.com/efibootmgr/permalink/
 * efte DEFAULT SF-DEFAULT
 * ejabberd v([\d+\.]+)\.zip https://github.com/processone/ejabberd/tags
 * ekg2 DEFAULT https://github.com/leafnode/ekg2/tags
 * ekg ekg-(.{3,5}?).tar.gz http://ekg.chmurka.net/download.php
 * electric DEFAULT GNU-DEFAULT
 * elinks DEFAULT http://elinks.or.cz/download/
 * elixir \"v([0-9.]*?)\" https://api.github.com/repos/elixir-lang/elixir/tags
 * emacs DEFAULT GNU-DEFAULT
 * emacs-auctex DEFAULT:auctex GNU-DEFAULT:auctex
 * emacs-auto-complete DEFAULT:auto-complete http://cx4a.org/pub/auto-complete/
 * emacs-bbdb DEFAULT:bbdb http://download.savannah.gnu.org/releases/bbdb/
 * emacs-common-ddskk ddskk-([0-9]+\.[0-9.]+)\.tar\.gz http://openlab.ring.gr.jp/skk/maintrunk/
 * emacs-common-ess ess-(.*?).tgz http://stat.ethz.ch/ESS/downloads/ess/
 * emacs-common-muse muse-(.*?).tar.gz http://download.gna.org/muse-el/
 * emacs-haskell-mode (\d_\d_\d)\.zip https://github.com/haskell/haskell-mode/tags
 * emacs-ibus DEFAULT:ibus-el LP-DEFAULT:ibus.el
 * emacs-identica-mode identica-mode.tar.gz http://download.savannah.gnu.org/releases/identica-mode/
 * emacs-irsim-mode irsim-mode-version\s+"([^"]+)" http://irsim-mode.googlecode.com/files/irsim-mode.el
 * emacs-mew DEFAULT:mew http://www.mew.org/Release/
 * emacs-pymacs archive/v(.*?)\.zip https://github.com/pinard/Pymacs/tags
 * emacs-vm vm-(\d+\.\d+\.\d+)\.tgz LP-DEFAULT:vm
 * emacspeak DEFAULT GOOGLE-DEFAULT
 * email2trac DEFAULT ftp://ftp.sara.nl/pub/outgoing/
 * ember DEFAULT SF-DEFAULT:worldforge
 * ember-media DEFAULT SF-DEFAULT:worldforge
 * emesene v([.0-9]+)\.(?:tar|zip) https://github.com/emesene/emesene/tags
 * emma DEFAULT SF-DEFAULT
 * encuentro DEFAULT LP-DEFAULT
 * enet DEFAULT http://enet.bespin.org/download/
 * engine_pkcs11 DEFAULT https://github.com/OpenSC/engine_pkcs11/tags
 * enscript DEFAULT GNU-DEFAULT
 * environment-modules DEFAULT:modules SF-DEFAULT:modules
 * eot-utils >eot-utilities-(.*?)\.(?:tar) http://www.w3.org/Tools/eot-utils/
 * epic DEFAULT:epic4 http://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/
 * epic5 DEFAULT http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/
 * epydoc DEFAULT SF-DEFAULT
 * eqntott DEFAULT GOOGLE-DEFAULT
 * erfa DEFAULT http://liberfa.github.io/erfa/
 * eris DEFAULT SF-DEFAULT:worldforge
 * erlang otp_src_(.*?).tar\.gz http://www.erlang.org/download.html
 * erlang-basho_metrics (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_metrics/tags
 * erlang-basho_stats (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_stats/tags
 * erlang-bear (\d+\.\d+\.\d+)\.zip https://github.com/boundary/bear/tags
 * erlang-bitcask (\d+\.\d+\.\d+)\.zip https://github.com/basho/bitcask/tags
 * erlang-cluster_info ([\d+\.]+)\.zip https://github.com/basho/cluster_info/tags
 * erlang-ebloom (\d+\.\d+\.\d+)\.zip https://github.com/basho/ebloom/tags
 * erlang-edown ([\d+\.]+)\.zip https://github.com/esl/edown/tags
 * erlang-eleveldb (\d+\.\d+\.\d+)\.zip https://github.com/basho/eleveldb/tags
 * erlang-eradius (\d+\.\d+\.\d+)\.zip https://github.com/lemenkov/eradius/tags
 * erlang-erlando (\d+_\d+_\d+)\.zip https://github.com/rabbitmq/erlando/tags
 * erlang-erlsyslog (\d+\.\d+)\.zip https://github.com/lemenkov/erlsyslog/tags
 * erlang-esasl (\d+\.\d+)\.zip https://github.com/mikma/esasl/tags
 * erlang-esdl esdl-([\d+\.]+)\.zip https://github.com/dgud/esdl/tags
 * erlang-etap (\d+\.\d+\.\d+)\.zip https://github.com/ngerakines/etap/tags
 * erlang-folsom ([\d+\.]+)\.zip https://github.com/boundary/folsom/tags
 * erlang-getopt ([\d+\.]+)\.zip https://github.com/jcomellas/getopt/tags
 * erlang-gproc ([\d+\.]+)\.zip https://github.com/uwiger/gproc/tags
 * erlang-ibrowse ([\d+\.]+)\.zip https://github.com/cmullaparthi/ibrowse/tags
 * erlang-js (\d+\.\d+\.\d+)\.zip https://github.com/basho/erlang_js/tags
 * erlang-lager (\d+\.\d+\.\d+)\.zip https://github.com/basho/lager/tags
 * erlang-lfe ([\d+\.]+)\.zip https://github.com/rvirding/lfe/tags
 * erlang-luke (\d+\.\d+\.\d+)\.zip https://github.com/basho/luke/tags
 * erlang-meck (\d+\.\d+\.\d+)\.zip https://github.com/eproxus/meck/tags
 * erlang-merge_index (\d+\.\d+\.\d+)\.zip https://github.com/basho/merge_index/tags
 * erlang-misultin (\d+\.\d+\.\d+)\.zip https://github.com/ostinelli/misultin/tags
 * erlang-mochiweb (\d+\.\d+\.\d+)\.zip https://github.com/mochi/mochiweb/tags
 * erlang-mustache (\d+\.\d+\.\d+)\.zip https://github.com/mojombo/mustache.erl/tags
 * erlang-neotoma ([\d+\.]+)\.zip https://github.com/seancribbs/neotoma/tags
 * erlang-oauth (\d+\.\d+\.\d+)\.zip https://github.com/tim/erlang-oauth/tags
 * erlang-poolboy ([\d+\.]+)\.zip https://github.com/devinus/poolboy/tags
 * erlang-protobuffs (\d+\.\d+\.\d+)\.zip https://github.com/basho/erlang_protobuffs/tags
 * erlang-ranch ([\d+\.]+)\.zip https://github.com/extend/ranch/tags
 * erlang-rebar (\d+\.\d+\.\d+)\.zip https://github.com/basho/rebar/tags
 * erlang-riak_api ([\d+\.]+)\.zip https://github.com/basho/riak_api/tags
 * erlang-riak_client (?:riakc-|\/)([\d\.]+)\.tar.gz https://github.com/basho/riak-erlang-client/tags
 * erlang-riak_control (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_control/tags
 * erlang-riak_core (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_core/tags
 * erlang-riak_err riak_err-(\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_err/tags
 * erlang-riak_kv (?:riak_kv-|\/)([\d\.]+)\.tar.gz https://github.com/basho/riak_kv/tags
 * erlang-riak_pb ([\d\.]+)\.tar.gz https://github.com/basho/riak_pb/tags
 * erlang-riak_pipe (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_pipe/tags
 * erlang-riak_search (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_search/tags
 * erlang-riak_sysmon (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_sysmon/tags
 * erlang-riaknostic "name":\s*"*v([\d\.]+)" https://api.github.com/repos/basho/riaknostic/tags
 * erlang-rpm-macros ([\d+\.]+)\.zip https://github.com/lemenkov/erlang-rpm-macros/tags
 * erlang-sext ([\d+\.]+)\.zip https://github.com/uwiger/sext/tags
 * erlang-skerl (\d+\.\d+\.\d+)\.zip https://github.com/basho/skerl/tags
 * erlang-webmachine (\d+\.\d+\.\d+)\.zip https://github.com/basho/webmachine/tags
 * esniper http://sourceforge.net/projects/esniper/files/esniper/([0-9.]+)/ SF-DEFAULT
 * esound DEFAULT GNOME-DEFAULT
 * esorex DEFAULT ftp://ftp.eso.org/pub/cpl/
 * espeak DEFAULT http://espeak.sourceforge.net/download.html
 * espresso-ab DEFAULT GOOGLE-DEFAULT:eqntott
 * etcd "name":\s*"*v([\d\.]+)" https://api.github.com/repos/coreos/etcd/tags
 * etckeeper DEFAULT DEBIAN-DEFAULT
 * etherape DEFAULT http://sf.net/projects/etherape/
 * ethtool DEFAULT http://kernel.org/pub/software/network/ethtool/
 * etoys DEFAULT http://download.sugarlabs.org/sources/sucrose/glucose/etoys/
 * ettercap DEFAULT SF-DEFAULT
 * exaile DEFAULT http://www.exaile.org/download/
 * exempi exempi-([0-9\.]*?)\.tar.gz http://libopenraw.freedesktop.org/download/
 * exim DEFAULT ftp://ftp.exim.org/pub/exim/exim4/
 * exiv2 DEFAULT http://www.exiv2.org/download.html
 * expat DEFAULT SF-DEFAULT
 * expect \bexpect([\d.]+)\.t SF-DEFAULT
 * exec-maven-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/codehaus/mojo/exec-maven-plugin/
 * expresso NPM-DEFAULT NPM-DEFAULT
 * extremetuxracer DEFAULT:etr SF-DEFAULT
 * eyesight /v([\d+\.]+)\.tar\.gz https://github.com/hawaii-desktop/eyesight/tags

F

 * Falcon Falcon-([0-9\.]*)\.t.*gz http://falconpl.org/project_dl/_official_rel/
 * fabric DEFAULT:Fabric PYPI-DEFAULT:Fabric
 * fatrace DEFAULT http://launchpad.net/fatrace/+download
 * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
 * fatsort DEFAULT SF-DEFAULT
 * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
 * fbset DEFAULT http://users.telenet.be/geertu/Linux/fbdev/
 * fdm DEFAULT SF-DEFAULT
 * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
 * fedfs-utils fedfs-utils-([0-9.]*?).tar.gz http://oss.oracle.com/projects/fedfs-utils/files/
 * fedmsg DEFAULT PYPI-DEFAULT
 * fedora-review /FedoraReview/([^"]+).tar.gz http://githubredir.debian.net/github/timlau/FedoraReview
 * feh DEFAULT http://feh.finalrewind.org/
 * felix-bundlerepository org.apache.felix.bundlerepository-([0-9.]*).jar http://felix.apache.org/downloads.cgi
 * felix-gogo-command >org.apache.felix.gogo.command-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
 * felix-osgi-core >org.osgi.core-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
 * felix-osgi-obr >org.osgi.service.obr-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
 * felix-framework org.apache.felix.main.distribution-([0-9.]*?).tar.gz http://felix.apache.org/site/downloads.cgi
 * felix-osgi-compendium org.osgi.compendium-([0-9.]*?)-project.tar.gz http://www.apache.org/dist/felix/
 * felix-osgi-foundation org.osgi.foundation-([0-9.]*?)-bin.tar.gz http://www.apache.org/dist/felix/
 * felix-shell org.apache.felix.shell-([0-9.]*?).jar http://www.apache.org/dist/felix/
 * felix-utils org.apache.felix.utils-([0-9.]*?)-project.tar.gz http://www.apache.org/dist/felix/
 * fetchlog DEFAULT SF-DEFAULT
 * fetchmail DEFAULT SF-DEFAULT
 * ffsb DEFAULT SF-DEFAULT
 * fftw DEFAULT http://www.fftw.org/download.html
 * fido fido-([0-9\.]+).tar.gz http://www.joedog.org/pub/fido/
 * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
 * file DEFAULT ftp://ftp.astron.com/pub/file/
 * filebench DEFAULT SF-DEFAULT
 * findbugs findbugs-([0-9\.]*?)-source\.zip SF-DEFAULT
 * findutils DEFAULT GNU-DEFAULT
 * firehol DEFAULT http://firehol.org/download/latest/
 * fish DEFAULT http://fishshell.com/
 * flac DEFAULT SF-DEFAULT
 * flex DEFAULT SF-DEFAULT
 * flexdock DEFAULT http://forge.scilab.org/index.php/p/flexdock/downloads/
 * flterm DEFAULT:Release https://github.com/milkymist/milkymist/tags
 * fltk DEFAULT http://www.fltk.org/software.php
 * fluxbox DEFAULT http://fluxbox.org/download/
 * fontconfig DEFAULT http://www.fontconfig.org/release/
 * foomatic foomatic-db-engine-(.*?\.[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
 * fop DEFAULT http://archive.apache.org/dist/xmlgraphics/fop/source/
 * foxtrotgps foxtrotgps-(.*?).tar.xz http://www.foxtrotgps.org/releases/
 * fpc The latest release is <b>([\d.]+)</b> http://www.freepascal.org/download.var
 * fping DEFAULT http://www.fping.org/dist/
 * fprintd DEFAULT http://people.freedesktop.org/~hadess/
 * freecode-submit DEFAULT http://www.catb.org/~esr/freecode-submit/
 * freecol DEFAULT SF-DEFAULT
 * freeDiameter http://www.freediameter.net/hg/freeDiameter/archive/(\d+\.\d+\.\d+).tar.gz http://www.freediameter.net/trac/blog?format=rss
 * freedink DEFAULT GNU-DEFAULT
 * freedoom DEFAULT:freedoom-iwad http://download.savannah.gnu.org/releases/freedoom/freedoom-iwad/
 * freedoom-freedm DEFAULT:freedm http://download.savannah.gnu.org/releases/freedoom/freedm/
 * freedroidrpg DEFAULT SF-DEFAULT:freedroid
 * freefem++ freefem\+\+-(.*?).tar.gz http://www.freefem.org/ff++/ftp/
 * freeglut DEFAULT SF-DEFAULT
 * freehoo DEFAULT http://download.savannah.gnu.org/releases/freehoo/
 * freeipmi DEFAULT GNU-DEFAULT
 * freenx-server DEFAULT SF-DEFAULT:freenx.berlios
 * freemarker DEFAULT SF-DEFAULT
 * freemedforms DEFAULT:freemedformsfullsources GOOGLE-DEFAULT
 * freemind DEFAULT SF-DEFAULT
 * freeradius DEFAULT:freeradius-server ftp://ftp.freeradius.org/pub/freeradius/
 * freetype DEFAULT http://download.savannah.gnu.org/releases/freetype/
 * freexl DEFAULT http://www.gaia-gis.it/gaia-sins/freexl-sources/
 * fritzing /source-tarball/fritzing-([0-9a-z\.]+)?.source.tar\.bz2 http://fritzing.org/download/
 * fs_mark DEFAULT SF-DEFAULT:fsmark
 * f-spot DEFAULT GNOME-DEFAULT
 * fuse DEFAULT SF-DEFAULT
 * fusecompress archive/(.*?)\.zip https://github.com/tex/fusecompress/tags
 * fwsnort DEFAULT http://www.cipherdyne.org/fwsnort/download/

G

 * gabedit GabeditSrc(.*?)\.tar\.gz SF-DEFAULT
 * game-music-emu DEFAULT GOOGLE-DEFAULT
 * ganymed-ssh2 >ganymed-ssh2-build([^<]+).zip< http://www.ganymed.ethz.ch/ssh2/
 * gawk DEFAULT GNU-DEFAULT
 * g2clib g2clib-([0-9.]*).tar http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/
 * gajim gajim-(.*?)\.tar\.bz2 http://gajim.org/downloads.php
 * gamazons DEFAULT http://www.yorgalily.org/gamazons/src/
 * gambit-c Download latest release \(v([0-9.]+)\): http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page
 * gauche DEFAULT:Gauche SF-DEFAULT
 * gausssum DEFAULT:GaussSum SF-DEFAULT
 * gc DEFAULT http://www.hpl.hp.com/personal/Hans_Boehm/gc/
 * gcin DEFAULT http://www.csie.nctu.edu.tw/~cp76/gcin/download/
 * gcl DEFAULT GNU-DEFAULT
 * gcompris DEFAULT SF-DEFAULT
 * gd DEFAULT https://bitbucket.org/libgd/gd-libgd/downloads
 * gdbm DEFAULT GNU-DEFAULT
 * gdcm gdcm-([0-9.]*?)\.tar SF-DEFAULT
 * gdesklets DEFAULT http://www.gdesklets.de/
 * gdisk gptfdisk-(.*?)\.tar\.gz SF-DEFAULT:gptfdisk
 * gdome2 DEFAULT http://gdome2.cs.unibo.it/
 * geary DEFAULT http://yorba.org/download/geary/*/
 * geeqie DEFAULT SF-DEFAULT
 * genbackupdata DEFAULT http://code.liw.fi/debian/pool/main/g/genbackupdata/
 * gengetopt DEFAULT GNU-DEFAULT
 * genromfs DEFAULT SF-DEFAULT:romfs
 * gentoo DEFAULT SF-DEFAULT
 * getdata DEFAULT SF-DEFAULT
 * gettext DEFAULT GNU-DEFAULT
 * geronimo-jaspic-spec >([^/]+)/< http://repo1.maven.org/maven2/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/
 * geronimo-jms >geronimo-jms_1.1_spec-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * geronimo-jpa >geronimo-jpa_3.0_spec-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * geronimo-jta >geronimo-jta_1.1_spec-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * geronimo-parent-poms >specs-parent-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * gforth DEFAULT GNU-DEFAULT
 * gftp DEFAULT http://gftp.seul.org/
 * ghc GHC (.*) Released! http://haskell.org/ghc/
 * ghc-aeson HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ansi-terminal HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-arrows HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attempt HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attoparsec-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attoparsec-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base-unicode-symbols HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base16-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base64-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-binary-shared HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-html HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-markup HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-textual HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bloomfilter HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-Boolean HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-byteorder HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bytestring-nums HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bytestring-trie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cabal-file-th HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cairo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cautious-file HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cereal HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-chalmers-lava2000 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-citeproc-hs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cmdargs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-colour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-concatenative HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-concrete-typerep HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ConfigFile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cookie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-crypto-api HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cryptohash HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-csv HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-css-text HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-accessor HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-default HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-default-class HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-inttrie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-reify HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-memocombinators HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dataenc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-date-cache HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-derive HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-Diff HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-digest HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dlist HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dotgen HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-edit-distance HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-entropy HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-executable-path HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-failure HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-fast-logger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ForSyDe HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-geniplate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ghc-mtl HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ghc-paths HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-gio HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-glade HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-glib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-gtk HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-gtksourceview2 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hakyll HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hamlet HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-happstack-server HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hashed-storage HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hashtables HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskeline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskell-src-exts HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hinotify HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hjsmin HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hledger-lib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hs-bibutils HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-HSH HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hslogger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-http-types HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-IfElse HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-indents HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-IOSpec HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-json HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-lambdabot-utils HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-language-c HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-language-ecmascript HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-language-java HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-language-javascript HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-lazysmallcheck HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-libffi HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-libmpd HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-lifted-base HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-logict HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-lrucache HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ltk HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-maccatcher HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MemoTrie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MissingH HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mmap HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mmorph HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MonadCatchIO-mtl HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MonadCatchIO-transformers HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-monad-control HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-monad-logger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MonadRandom HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mtlparse HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mwc-random HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-netlist HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-netlist-to-vhdl HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-network-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-numbers HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-NumInstances HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-oeis HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pandoc-types HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pango HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-parameterized-data HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-path-pieces HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pcre-light HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pureMD5 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ranges HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-readline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regex-pcre HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regex-tdfa HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regexpr HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-resourcet HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-rosezipper HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-safe HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-SafeSemaphore HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-semigroups HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-sendfile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-setenv HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-SHA HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-scotty HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-Stream HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-shakespeare HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-shakespeare-text HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-show HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-simple-sendfile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-sized-types HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-smallcheck HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-snap-core HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-strict HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-stringsearch HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-system-filepath HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tagged HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tagsoup HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-temporary HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-terminfo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-texmath HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-threads HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-transformers-base HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-type-level HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-union-find HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-uniplate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-unix-compat HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-unix-time HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-utf8-light HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-utf8-string HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-vault HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-vector-binary-instances HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-vector-space HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-void HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-wai HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-wai-extra HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-wai-logger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-warp HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11-xft HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xdg-basedir HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xml HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xml-types HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xmonad-contrib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xss-sanitize HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-yaml HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-yesod-routes HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zip-archive HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-bindings HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-enum HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://downloads.ghostscript.com/public/
 * giflib DEFAULT SF-DEFAULT
 * gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
 * giggle DEFAULT GNOME-DEFAULT
 * gimp DEFAULT ftp://ftp.gimp.org/pub/gimp/stable/
 * gimp-help DEFAULT ftp://ftp.gimp.org/pub/gimp/help/
 * gimp-separate+ DEFAULT:separate+ http://sourceforge.jp/projects/separate-plus/releases/?package_id=8879
 * git-annex HACKAGE-DEFAULT HACKAGE-DEFAULT
 * git-cola >v([0-9.]*)< https://github.com/git-cola/git-cola/releases
 * git-extras ([0-9.]*?)\.tar.* https://github.com/visionmedia/git-extras/tags
 * gitifyhg DEFAULT PYPI-DEFAULT
 * gkrellm DEFAULT http://www.gkrellm.net/
 * gkrellm-freq DEFAULT:gkrellm-gkfreq SF-DEFAULT:gkrellm-gkfreq
 * gkrellm-top DEFAULT:gkrelltop SF-DEFAULT:gkrelltop
 * glade DEFAULT GNOME-DEFAULT
 * glade3 DEFAULT GNOME-DEFAULT
 * glances /v(.+?)\.zip https://github.com/nicolargo/glances/tags
 * glassfish-jsp >javax.servlet.jsp-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
 * glassfish-jsp-api >javax.servlet.jsp-api-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
 * gle \bgle-graphics-(.*?)f-src\.tar SF-DEFAULT:glx
 * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
 * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
 * gmp DEFAULT http://gmplib.org/
 * gmpy DEFAULT GOOGLE-DEFAULT
 * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
 * gnome-gmail DEFAULT SF-DEFAULT
 * gnome-icon-theme DEFAULT GNOME-DEFAULT
 * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
 * gnome-shell-extensions DEFAULT GNOME-DEFAULT
 * gnome-subtitles DEFAULT SF-DEFAULT
 * gnome-tweak-tool DEFAULT GNOME-DEFAULT
 * gnomeradio DEFAULT LP-DEFAULT
 * gnote DEFAULT GNOME-DEFAULT
 * gnotime DEFAULT SF-DEFAULT:gttr
 * gnu-efi DEFAULT SF-DEFAULT
 * gnu-getopt java-getopt-([0-9.]*?).tar.gz http://www.urbanophile.com/arenn/hacking/download.html
 * gnucap DEFAULT GNU-DEFAULT
 * gnucash DEFAULT SF-DEFAULT
 * gnuchess DEFAULT GNU-DEFAULT:chess
 * gnu-smalltalk DEFAULT:smalltalk GNU-DEFAULT:smalltalk
 * gnubik DEFAULT GNU-DEFAULT
 * gnugo DEFAULT GNU-DEFAULT
 * gnujump DEFAULT GNU-DEFAULT
 * gnumed gnumed-client\.(.*?)\.tgz http://www.gnumed.de/downloads/client/*/
 * gnumed-server gnumed-server\.(.*?)\.tgz http://www.gnumed.de/downloads/server/*/
 * gnumeric DEFAULT GNOME-DEFAULT
 * gnupg gnupg-(1.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnupg2 gnupg-(2.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnuplot DEFAULT SF-DEFAULT
 * gnuradio DEFAULT http://gnuradio.org/releases/gnuradio/
 * gnurobots DEFAULT GNU-DEFAULT
 * gnusim8085 gnusim8085-([0-9.]*).tar.gz http://gnusim8085.org/downloads.php
 * gnustep-make DEFAULT ftp://ftp.gnustep.org/pub/gnustep/core/
 * gnutls DEFAULT ftp://ftp.gnutls.org/gcrypt/gnutls/v*/
 * goaccess DEFAULT SF-DEFAULT
 * gobject-introspection DEFAULT GNOME-DEFAULT
 * gocl ([0-9.]*?)\.tar.* https://github.com/elima/gocl/tags
 * goffice DEFAULT GNOME-DEFAULT
 * gold DEFAULT http://www.clusterresources.com/downloads/gold/
 * gooddata-cl /([\d+\.]+)\.tar\.gz https://github.com/gooddata/gooddata-cl/tags
 * googlecl DEFAULT GOOGLE-DEFAULT
 * google-guice (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/sonatype/sisu/sisu-guice/
 * google-gson google-gson-([0-9.]*?)-release\.zip GOOGLE-DEFAULT
 * gource [^-]gource-([0-9.]+)\.tar GOOGLE-DEFAULT
 * gourmet DEFAULT SF-DEFAULT:grecipe-manager
 * gparted DEFAULT SF-DEFAULT
 * gpaste gpaste-([0-9.]*?).tar.xz https://github.com/Keruspe/GPaste/downloads
 * gperf DEFAULT GNU-DEFAULT
 * gperftools DEFAULT GOOGLE-DEFAULT
 * gpgme DEFAULT ftp://ftp.gnupg.org/gcrypt/gpgme/
 * gpick DEFAULT GOOGLE-DEFAULT
 * gplcver gplcver-(.*?).tar.bz2 http://sourceforge.net/projects/gplcver/
 * gpm DEFAULT http://www.nico.schottelius.org/software/gpm/archives/
 * gpredict DEFAULT SF-DEFAULT
 * gprolog DEFAULT GNU-DEFAULT
 * gpsbabel gpsbabel-([0-9.]+)\.tar\.gz http://www.gpsbabel.org/download.html
 * gpscorrelate /tag/([0-9.]*) https://github.com/freefoote/gpscorrelate/releases
 * GraphicsMagick DEFAULT SF-DEFAULT:graphicsmagick
 * graphviz DEFAULT http://www.graphviz.org/pub/graphviz/stable/SOURCES/
 * grep DEFAULT GNU-DEFAULT
 * grib_api DEFAULT http://software.ecmwf.int/wiki/display/GRIB/Releases
 * groff DEFAULT GNU-DEFAULT
 * gromacs DEFAULT ftp://ftp.gromacs.org/pub/gromacs/
 * groonga DEFAULT http://packages.groonga.org/source/groonga/
 * groovy groovy-src-([0-9].[0-9].[0-9]).zip http://groovy.codehaus.org/Download
 * grub2 DEFAULT:grub GNU-DEFAULT:grub
 * grub2 DEFAULT:grub http://alpha.gnu.org/gnu/grub/
 * gscan2pdf DEFAULT SF-DEFAULT
 * gspiceui gspiceui-(.*?).tar.gz http://sourceforge.net/projects/gspiceui/
 * gssdp DEFAULT GNOME-DEFAULT
 * gstreamer gstreamer-(0\.10\..*?)\.tar\.bz2 http://gstreamer.freedesktop.org/src/gstreamer/
 * gstreamer1 DEFAULT:gstreamer http://gstreamer.freedesktop.org/src/gstreamer/
 * gstreamer-rtsp DEFAULT:gst-rtsp http://gstreamer.freedesktop.org/src/gst-rtsp/
 * gsl DEFAULT GNU-DEFAULT
 * gtatool DEFAULT http://download.savannah.gnu.org/releases/gta/
 * gtkhash DEFAULT SF-DEFAULT
 * gthumb DEFAULT GNOME-DEFAULT
 * gtk-murrine-engine DEFAULT:murrine GNOME-DEFAULT:murrine
 * gtk-unico-engine DEFAULT:unico LP-DEFAULT:unico
 * gtk2hs-buildtools HACKAGE-DEFAULT HACKAGE-DEFAULT
 * gtranslator DEFAULT GNOME-DEFAULT
 * gtypist DEFAULT GNU-DEFAULT
 * gucharmap DEFAULT GNOME-DEFAULT
 * guile DEFAULT GNU-DEFAULT
 * guilt DEFAULT http://guilt.31bits.net/src/
 * guitone DEFAULT https://guitone.thomaskeller.biz/g/download
 * gupnp DEFAULT GNOME-DEFAULT
 * gupnp-av DEFAULT GNOME-DEFAULT
 * gupnp-dlna DEFAULT GNOME-DEFAULT
 * gupnp-tools DEFAULT GNOME-DEFAULT
 * gutenprint Gutenprint (.*?) is released http://gimp-print.sourceforge.net/
 * gv DEFAULT GNU-DEFAULT
 * gwsmhg DEFAULT SF-DEFAULT
 * gxmessage DEFAULT GNU-DEFAULT
 * gyachi DEFAULT SF-DEFAULT
 * gzip DEFAULT GNU-DEFAULT

H

 * haddock HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hamlib DEFAULT SF-DEFAULT
 * hamcrest DEFAULT GOOGLE-DEFAULT
 * hardening-check DEFAULT:hardening-wrapper DEBIAN-DEFAULT:hardening-wrapper
 * hawtjni DEFAULT https://github.com/fusesource/hawtjni/tags
 * hanazono-fonts DEFAULT:hanazono http://sourceforge.jp/projects/hanazono-font/releases/
 * haproxy DEFAULT http://haproxy.1wt.eu/download/1.4/src/
 * harfbuzz DEFAULT http://www.freedesktop.org/software/harfbuzz/release/
 * haskell-platform DEFAULT http://www.haskell.org/platform/linux.html
 * hawaii-widget-styles /v([\d+\.]+)\.tar\.gz https://github.com/hawaii-desktop/widget-styles/tags
 * hct hct-(.*?).tar.gz http://sourceforge.net/projects/hct/files/  
 * hdparm DEFAULT SF-DEFAULT
 * hdapsd DEFAULT SF-DEFAULT:hdaps
 * heatclient DEFAULT PYPI-DEFAULT
 * hedgewars DEFAULT http://download.gna.org/hedgewars/
 * help2man DEFAULT GNU-DEFAULT
 * herbstluftwm DEFAULT http://herbstluftwm.org/tarballs/
 * hercules DEFAULT http://www.hercules-390.eu/
 * hercstudio herculesstudio-(.*?)-src\.tar\.gz http://www.jacobdekel.com/hercstudio/
 * hexchat DEFAULT http://dl.hexchat.net/hexchat/
 * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
 * highlighting-kate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hiredis archive/v(.*?)\.zip https://github.com/redis/hiredis/tags
 * hledger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hoard Hoard-(.*?)-source\.tar\.gz http://www.hoard.org/download-hoard/
 * hop DEFAULT ftp://ftp-sop.inria.fr/indes/fp/Hop
 * horde DEFAULT ftp://ftp.horde.org/pub/horde/
 * hostapd DEFAULT http://w1.fi/releases/
 * hping3 DEFAULT http://www.hping.org/download.php
 * hplip DEFAULT SF-DEFAULT
 * hscolour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hsqldb hsqldb-([0-9.]*?).zip SF-DEFAULT
 * html-xml-utils DEFAULT http://www.w3.org/Tools/HTML-XML-utils/
 * htmlcleaner DEFAULT SF-DEFAULT
 * htop DEFAULT SF-DEFAULT
 * httpcomponents-core DEFAULT http://www.apache.org/dist/httpcomponents/httpcore/source/
 * httpcomponents-client DEFAULT http://www.apache.org/dist/httpcomponents/httpclient/source/
 * httpd DEFAULT http://archive.apache.org/dist/httpd/
 * httperf DEFAULT GOOGLE-DEFAULT
 * httpie DEFAULT PYPI-DEFAULT
 * httptunnel DEFAULT GNU-DEFAULT
 * httrack httrack-(.*?).tar.gz http://www.httrack.com/page/2/en/index.html
 * hugin DEFAULT SF-DEFAULT
 * humanity-icon-theme DEFAULT:humanity LP-DEFAULT:humanity
 * hunspell DEFAULT SF-DEFAULT
 * hxtools DEFAULT http://jftp.inai.de/hxtools/
 * hydra DEFAULT http://www.thc.org/thc-hydra/
 * hyena DEFAULT GNOME-DEFAULT
 * hyperestraier DEFAULT http://fallabs.com/hyperestraier/

I

 * ibus-handwrite DEFAULT GOOGLE-DEFAULT
 * ibus-hangul DEFAULT GOOGLE-DEFAULT:ibus
 * ibus-libpinyin DEFAULT SF-DEFAULT:libpinyin
 * ibus-m17n DEFAULT GOOGLE-DEFAULT:ibus
 * ibus-pinyin DEFAULT GOOGLE-DEFAULT:ibus
 * ibus-rime DEFAULT GOOGLE-DEFAULT:rimeime
 * ibus-unikey DEFAULT GOOGLE-DEFAULT
 * ibus-xkbc DEFAULT https://github.com/sun-im/ibus-xkbc/downloads
 * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
 * icewm DEFAULT SF-DEFAULT
 * icon-naming-utils DEFAULT http://tango.freedesktop.org/releases/
 * icoutils DEFAULT http://download.savannah.gnu.org/releases/icoutils/
 * id3v2 DEFAULT SF-DEFAULT
 * idris HACKAGE-DEFAULT HACKAGE-DEFAULT
 * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
 * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
 * ikarus DEFAULT http://ikarus-scheme.org/
 * ike \bike-(.*?)-release\.t https://www.shrew.net/download/ike
 * ikiwiki DEFAULT DEBIAN-DEFAULT
 * ImageMagick ImageMagick-([0-9]\.[0-9]\.[0-9]-.*?[0-9]).tar.bz2 ftp://ftp.imagemagick.org/pub/ImageMagick/
 * imake DEFAULT http://xorg.freedesktop.org/archive/individual/util/
 * imp DEFAULT:imp-h3 ftp://ftp.horde.org/pub/imp/
 * impressive DEFAULT:Impressive SF-DEFAULT
 * imvirt DEFAULT SF-DEFAULT
 * indent DEFAULT GNU-DEFAULT
 * iniparser iniparser-([0-9.]*)\.tar\.gz http://ndevilla.free.fr/iniparser/
 * inkscape DEFAULT http://www.inkscape.org/en/download/source/
 * innotop DEFAULT GOOGLE-DEFAULT
 * InsightToolkit DEFAULT http://sourceforge.net/api/file/index/project-name/itk/mtime/desc/limit/20/rss
 * intltool DEFAULT LP-DEFAULT
 * iotop DEFAULT http://guichaz.free.fr/iotop/
 * iperf DEFAULT SF-DEFAULT
 * iperf3 DEFAULT:iperf http://stats.es.net/software/
 * ipmitool DEFAULT SF-DEFAULT
 * ipmiutil DEFAULT SF-DEFAULT
 * iproute DEFAULT:iproute2 http://kernel.org/pub/linux/utils/net/iproute2/
 * ipset DEFAULT http://ftp.netfilter.org/pub/ipset/
 * iptables DEFAULT http://ftp.netfilter.org/pub/iptables/
 * iputils iputils-s(.*?)\.tar\.bz2 SF-DEFAULT
 * ipv6calc DEFAULT ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc
 * ipvsadm DEFAULT http://www.kernel.org/pub/linux/utils/kernel/ipvsadm/
 * ipython DEFAULT https://github.com/ipython/ipython/downloads
 * ircd-ratbox DEFAULT http://www.ratbox.org/download.php
 * ircp-tray DEFAULT LP-DEFAULT
 * irqbalance ve/v(.*).tar.gz http://github.com/Irqbalance/irqbalance/releases
 * irrlicht DEFAULT SF-DEFAULT
 * irssi DEFAULT http://irssi.org/files
 * isic DEFAULT SF-DEFAULT
 * iso-codes DEFAULT http://pkg-isocodes.alioth.debian.org/downloads/
 * isomaster isomaster-([0-9.]*?).tar.bz2 http://littlesvr.ca/isomaster/releases/
 * isync DEFAULT SF-DEFAULT
 * iverilog v(\d_\d_\d)\.tar.gz https://github.com/steveicarus/iverilog/tags
 * iw DEFAULT http://kernel.org/pub/software/network/iw/

J

 * jacoco DEFAULT http://www.eclemma.org/jacoco/
 * jakarta-oro DEFAULT http://archive.apache.org/dist/jakarta/oro/source/
 * jakarta-taglibs-standard DEFAULT http://archive.apache.org/dist/jakarta/taglibs/standard/source/
 * jansi jansi-([0-9.]*?).jar http://jansi.fusesource.org/download.html
 * jarjar DEFAULT:jarjar-src GOOGLE-DEFAULT
 * jasmine NPM-DEFAULT NPM-DEFAULT
 * jasmine-node NPM-DEFAULT NPM-DEFAULT
 * jasper DEFAULT http://www.ece.uvic.ca/~frodo/jasper/
 * javacc javacc-([0-9.]*?).tar.gz http://java.net/projects/javacc/downloads/download/
 * javacc-maven-plugin javacc-maven-plugin-([0-9.]*?)/ http://svn.codehaus.org/mojo/tags/
 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
 * java-gnome DEFAULT GNOME-DEFAULT
 * java-service-wrapper yaja-wrapper-(.*?)-dist https://bitbucket.org/ivertex/yaja-wrapper/downloads
 * javaewah DEFAULT https://github.com/lemire/javaewah/releases
 * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
 * jaxen jaxen-(\d+\.\d+[\.\d+]*)-src.tar.gz http://dist.codehaus.org/jaxen/distributions/
 * jbig2dec DEFAULT SF-DEFAULT
 * jbigkit DEFAULT http://www.cl.cam.ac.uk/~mgk25/jbigkit/
 * jblas jblas-(.*?)\.tar\.gz https://github.com/mikiobraun/jblas/releases
 * jcifs DEFAULT http://jcifs.samba.org/src/
 * jdependency DEFAULT https://github.com/tcurdt/jdependency/tags
 * jdom jdom-([0-9.]*?)\.tar.gz https://github.com/hunterhacker/jdom/tags
 * jdepend ([0-9.]*?)\.zip https://github.com/clarkware/jdepend/tags
 * jdf-stacks-client (\d\.\d\.\d).*.tar.gz https://github.com/jboss-jdf/jdf-stacks-client/releases
 * jed jed-(.*?)\.tar\.gz ftp://space.mit.edu/pub/davis/jed/*/
 * jemalloc DEFAULT http://www.canonware.com/download/jemalloc/
 * jenkins-crypto-util crypto-util-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-crypto-util/tags
 * jenkins-extras-memory-monitor memory-monitor-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/extras-memory-monitor/tags
 * jenkins-remoting remoting-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/remoting/tags
 * jenkins-task-reactor task-reactor-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-task-reactor/tags
 * jenkins-version-number version-number-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-version-number/tags
 * jetty (9\.\d+\.\d+\.v\d+) http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-project/
 * jettison jettison-([0-9.]*?)-sources.jar http://jettison.codehaus.org/Download
 * jflex jflex-([0-9.]*?)\.zip http://jflex.de/download.html
 * jfsutils DEFAULT http://jfs.sf.net/source.html
 * jgoodies-animation jgoodies-animation-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-common jgoodies-common-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-forms jgoodies-forms-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-looks jgoodies-looks-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgraphx jgraphx-(.*?).zip http://downloads.jgraph.com/downloads/jgraphx/archive/
 * jhdf5 DEFAULT:hdf-java http://www.hdfgroup.org/ftp/HDF5/hdf-java/src/
 * jhighlight >release-(.*)/< http://svn.rifers.org/jhighlight/tags/
 * jibx jibx-([0-9].[0-9].[0-9]) http://sourceforge.net/projects/jibx/files/jibx/
 * jimtcl e/(.*?)\.tar\.gz http://github.com/msteveb/jimtcl/releases
 * jing-trang DEFAULT:jing GOOGLE-DEFAULT
 * jlatexmath jlatexmath-src-all-(.*).zip http://forge.scilab.org/index.php/p/jlatexmath/downloads/
 * jline DEFAULT SF-DEFAULT
 * jmol Jmol-([^-]+?\.[02468]+\.[^-]+?)-full.tar.gz SF-DEFAULT
 * jna ([0-9.]*?).tar.gz https://github.com/twall/jna/tags
 * joda-convert v([0-9.]*?).tar.gz https://github.com/JodaOrg/joda-convert/tags
 * joda-time DEFAULT SF-DEFAULT
 * joe DEFAULT SF-DEFAULT:joe-editor
 * john DEFAULT http://www.openwall.com/john/
 * joni ([0-9]+\.[0-9\.]+)/ http://svn.codehaus.org/jruby/joni/tags/
 * jpathwatch jpathwatch-([0-9\-]*?).zip SF-DEFAULT
 * jsch DEFAULT http://www.jcraft.com/jsch/
 * jsl jsl-([\d+\.]+)-src\.tar\.gz http://javascriptlint.com/download.htm
 * json-c DEFAULT https://github.com/json-c/json-c/downloads
 * jsoup jsoup-([0-9.]*)\.jar http://jsoup.org/download
 * junit r([0-9.]+).tar.gz https://github.com/junit-team/junit/tags
 * jvyamlb DEFAULT GOOGLE-DEFAULT
 * jwhois DEFAULT GNU-DEFAULT
 * jwm DEFAULT http://joewing.net/projects/jwm/releases/
 * jython jython(?:_installer)-([0-9.]+)\.jar SF-DEFAULT
 * jzlib DEFAULT http://www.jcraft.com/jzlib/

K

 * k3b DEFAULT SF-DEFAULT
 * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
 * kasumi DEFAULT http://sourceforge.jp/projects/kasumi/releases/
 * kawa DEFAULT GNU-DEFAULT
 * kbd DEFAULT http://ftp.altlinux.org/pub/people/legion/kbd/
 * kBuild DEFAULT ftp://ftp.netlabs.org/pub/kbuild
 * kbibtex DEFAULT http://home.gna.org/kbibtex/download.html
 * kchmviewer DEFAULT SF-DEFAULT
 * kcm-gtk DEFAULT LP-DEFAULT
 * kdbg DEFAULT SF-DEFAULT
 * kde-partitionmanager DEFAULT:partitionmanager SF-DEFAULT:partitionman
 * kdesrc-build >([.0-9]+?)/< http://download.kde.org/stable/kdesrc-build/
 * kdesvn DEFAULT http://kdesvn.alwins-world.de/downloads/
 * kdevelop \s(\d+\.[\d.]+\d+) ftp://ftp.kde.org/pub/kde/stable/kdevelop/
 * kdiff3 DEFAULT SF-DEFAULT
 * keepalived DEFAULT http://www.keepalived.org/software/
 * keybinder DEFAULT http://kaizer.se/publicfiles/keybinder/
 * keychain DEFAULT http://www.funtoo.org/wiki/Keychain
 * keytool-maven-plugin keytool-maven-plugin-([0-9.]*?)\/ http://svn.codehaus.org/mojo/tags/
 * kid3 DEFAULT SF-DEFAULT
 * kile Latest available stable version for KDE4: <a href="download.php">(.*?)</a>\. http://kile.sourceforge.net/
 * kio_gopher stable/extragear/kio-gopher-([0-9.]*)\.tar\.bz2 http://userbase.kde.org/Kio_gopher
 * kmetronome DEFAULT SF-DEFAULT
 * kmid2 DEFAULT:kmid SF-DEFAULT
 * kmymoney DEFAULT SF-DEFAULT:kmymoney2
 * kohsuke-pom pom-(\d+).tar.gz https://github.com/kohsuke/pom/tags
 * kmod DEFAULT http://kernel.org/pub/linux/utils/kernel/kmod/
 * komparator DEFAULT SF-DEFAULT
 * koules koules(.*?)-src.tar.gz http://www.ucw.cz/~hubicka/koules/English/distribution.html
 * krename the last stable release is: <.*?> (.*?) </a> http://www.krename.net/
 * ksh ast-ksh\.([0-9]*\-[0-9]*-[0-9]*)\.tgz http://www2.research.att.com/~astopen/cgi-bin/download.cgi?action=list&name=ast-ksh
 * ksshaskpass (?i)\(\s*ksshaskpass\s+([^)]+)\s*\) http://www.kde-apps.org/content/show.php?content=50971
 * ktechlab DEFAULT SF-DEFAULT
 * ktikz ktikz[_-](.*?)\.tar\.gz http://www.hackenberger.at/ktikz/
 * ktorrent DEFAULT http://ktorrent.org/?q=downloads
 * kwooty DEFAULT SF-DEFAULT
 * kyotocabinet DEFAULT http://fallabs.com/kyotocabinet/pkg/
 * kxml DEFAULT:kxml2 SF-DEFAULT

L

 * LabPlot DEFAULT:labplot SF-DEFAULT:labplot
 * ladvd DEFAULT GOOGLE-DEFAULT
 * lapack DEFAULT http://www.netlib.org/lapack/
 * latex2rtf DEFAULT SF-DEFAULT
 * latex-mk DEFAULT SF-DEFAULT
 * lazarus /Lazarus ([0-9.-]*)/ http://sourceforge.net/projects/lazarus/files/Lazarus%20Zip%20_%20GZip/
 * lbrickbuster2 DEFAULT:lbreakout2 http://sourceforge.net/api/file/index/project-name/lgames/mtime/desc/limit/50/rss
 * lbzip2 DEFAULT https://github.com/kjn/lbzip2/downloads
 * lcms2 DEFAULT SF-DEFAULT:lcms
 * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
 * leafpad DEFAULT http://download.savannah.gnu.org/releases/leafpad/
 * ledger archive/v(.*?)\.zip https://github.com/ledger/ledger/tags
 * leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
 * leksah-server HACKAGE-DEFAULT HACKAGE-DEFAULT
 * less DEFAULT http://www.greenwoodsoftware.com/less/download.html
 * libpam4j DEFAULT https://github.com/kohsuke/libpam4j/tags
 * localizer localizer-parent-([\d\.]+).tar.gz https://github.com/kohsuke/localizer/tags
 * lftp DEFAULT http://lftp.yar.ru/get.html
 * libaio DEFAULT http://git.fedorahosted.org/cgit/libaio.git/
 * libarchive DEFAULT http://www.libarchive.org/downloads/
 * libassuan DEFAULT ftp://ftp.gnupg.org/gcrypt/libassuan/
 * libass DEFAULT GOOGLE-DEFAULT
 * libavc1394 DEFAULT SF-DEFAULT
 * libgsasl DEFAULT GNU-DEFAULT:gsasl
 * libgta DEFAULT http://download.savannah.gnu.org/releases/gta/
 * libbluray DEFAULT http://www.videolan.org/developers/libbluray.html
 * libbs2b DEFAULT SF-DEFAULT:bs2b
 * libbsd DEFAULT http://libbsd.freedesktop.org/releases/
 * libburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
 * libcddb DEFAULT SF-DEFAULT
 * libcdio DEFAULT GNU-DEFAULT
 * libcdio-paranoia DEFAULT GNU-DEFAULT:libcdio
 * libcdr libcdr-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libcgroup DEFAULT SF-DEFAULT:libcg
 * libchamplain DEFAULT GNOME-DEFAULT
 * libclaw DEFAULT SF-DEFAULT
 * libcmis DEFAULT SF-DEFAULT
 * libconfig DEFAULT http://www.hyperrealm.com/libconfig/
 * libconfuse DEFAULT:confuse http://download.savannah.gnu.org/releases/confuse/
 * libcue DEFAULT SF-DEFAULT
 * libdb DEFAULT:db http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html
 * libdb4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index-082944.html
 * libdbi DEFAULT SF-DEFAULT
 * libdbi-drivers DEFAULT SF-DEFAULT
 * libdc1394 DEFAULT SF-DEFAULT
 * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
 * libdwarf libdwarf-([0-9]+)\.tar\.gz http://reality.sgiweb.org/davea/dwarf.html
 * libe-book DEFAULT SF-DEFAULT:libebook
 * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
 * libEMF DEFAULT SF-DEFAULT:libemf
 * libetonyek libetonyek-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libetpan DEFAULT SF-DEFAULT
 * libevent libevent-([^-]*?)(?:-stable)?.tar SF-DEFAULT:levent
 * libexif DEFAULT SF-DEFAULT
 * libextractor DEFAULT GNU-DEFAULT
 * libexttextcat libexttextcat-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libexttextcat
 * libfap DEFAULT http://pakettiradio.net/downloads/libfap/*/
 * libffi DEFAULT ftp://sourceware.org/pub/libffi/
 * libfontenc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/fplll/index.html
 * libfprint DEFAULT http://people.freedesktop.org/~hadess/
 * libfreehand libfreehand-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libFS DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libgadu DEFAULT http://libgadu.net/
 * libgaiagraphics DEFAULT http://www.gaia-gis.it/gaia-sins/gaiagraphics-sources/
 * libgcal DEFAULT GOOGLE-DEFAULT
 * libgcroots DEFAULT GOOGLE-DEFAULT:sigscheme
 * libgcrypt DEFAULT ftp://ftp.gnupg.org/gcrypt/libgcrypt/
 * libgdl DEFAULT:gdl GNOME-DEFAULT:gdl
 * libgee DEFAULT GNOME-DEFAULT
 * libgexiv2 DEFAULT http://yorba.org/download/gexiv2/*/
 * libgpg-error DEFAULT ftp://ftp.gnupg.org/gcrypt/libgpg-error/
 * libgxps DEFAULT GNOME-DEFAULT
 * libhangul DEFAULT GOOGLE-DEFAULT
 * libharu Latest stable release: <a href="https://github.com/libharu/libharu/archive/[^"]*">([^<]*)</a> http://libharu.org/
 * libHX DEFAULT SF-DEFAULT:libhx
 * libical DEFAULT SF-DEFAULT:freeassociation
 * libICE DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libidn DEFAULT GNU-DEFAULT
 * libiec61883 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
 * libinfinity DEFAULT http://releases.0x539.de/libinfinity/
 * libint DEFAULT SF-DEFAULT
 * libisds DEFAULT http://xpisar.wz.cz/libisds/dist/
 * libisoburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libisofs DEFAULT http://libburnia-project.org/wiki/Releases
 * libjpeg-turbo DEFAULT SF-DEFAULT
 * libksba DEFAULT ftp://ftp.gnupg.org/gcrypt/libksba/
 * liblangtag DEFAULT https://bitbucket.org/tagoh/liblangtag/downloads
 * libldb DEFAULT:ldb http://www.samba.org/ftp/pub/ldb/
 * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
 * libltc ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/x42/libltc/releases
 * libmatheval DEFAULT GNU-DEFAULT
 * libmatroska libmatroska-([.0-9]*?).tar.bz2 http://dl.matroska.org/downloads/libmatroska/
 * libmicrohttpd DEFAULT GNU-DEFAULT
 * libmng DEFAULT SF-DEFAULT
 * libmnl DEFAULT http://ftp.netfilter.org/pub/libmnl/
 * libmodelfile DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
 * libmodplug DEFAULT SF-DEFAULT:modplug-xmms
 * libmpc DEFAULT:mpc http://www.multiprecision.org/index.php?prog=mpc&page=download
 * libmspub libmspub-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
 * libmwaw DEFAULT SF-DEFAULT
 * libnet DEFAULT SF-DEFAULT:libnet-dev
 * libnetfilter_acct DEFAULT http://ftp.netfilter.org/pub/libnetfilter_acct/
 * libnetfilter_conntrack DEFAULT http://ftp.netfilter.org/pub/libnetfilter_conntrack/
 * libnetfilter_cttimeout DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cttimeout/
 * libnetfilter_cthelper DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cthelper/
 * libnetfilter_log DEFAULT http://ftp.netfilter.org/pub/libnetfilter_log/
 * libnetfilter_queue DEFAULT http://ftp.netfilter.org/pub/libnetfilter_queue/
 * libnfc DEFAULT GOOGLE-DEFAULT
 * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
 * libnftables DEFAULT http://ftp.netfilter.org/pub/libnftables/*/
 * libnice DEFAULT http://nice.freedesktop.org/releases/
 * libnl3 DEFAULT:libnl http://www.infradead.org/~tgr/libnl/files/
 * libntlm DEFAULT http://nongnu.org/libntlm/releases/
 * liboauth DEFAULT SF-DEFAULT
 * libodfgen libodfgen-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
 * liboping DEFAULT http://verplant.org/liboping/files
 * liborcus liborcus_(\d+\.\d+\.\d+)\.tar\.bz2 http://gitorious.org/orcus/pages/Download
 * liborigin DEFAULT SF-DEFAULT
 * libotf DEFAULT http://download.savannah.gnu.org/releases/m17n/
 * libp11 DEFAULT https://github.com/OpenSC/libp11/tags
 * libpcap DEFAULT http://www.tcpdump.org/release/
 * libpciaccess DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libpinyin DEFAULT:libpinyin/libpinyin SF-DEFAULT
 * libpipeline DEFAULT http://download.savannah.gnu.org/releases/libpipeline/
 * libpng DEFAULT http://www.libpng.org/pub/png/libpng.html
 * libpng10 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng10/
 * libpng15 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng15/
 * librasterlite DEFAULT http://www.gaia-gis.it/gaia-sins/librasterlite-sources/
 * LibRaw DEFAULT http://www.libraw.org/download
 * libraw1394 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
 * libreadline-java DEFAULT SF-DEFAULT:java-readline
 * libreoffice-gallery-vrt-network-equipment VRTnetworkequipment_(\d+\.\d+\.\d+)\.oxt http://www.vrt.com.au/downloads/vrt-network-equipment
 * libreswan DEFAULT http://download.libreswan.org/
 * librime DEFAULT GOOGLE-DEFAULT:rimeime
 * libsamplerate DEFAULT http://www.mega-nerd.com/SRC/download.html
 * libselinux DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * libsemanage DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * libsepol DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * libsidplayfp DEFAULT:libsidplayfp SF-DEFAULT:sidplay-residfp
 * libsigsegv DEFAULT GNU-DEFAULT
 * libspatialite DEFAULT http://www.gaia-gis.it/gaia-sins/libspatialite-sources/
 * libspectre DEFAULT http://libspectre.freedesktop.org/releases/
 * libspiro v(.*?)\.tar.gz https://github.com/fontforge/libspiro/
 * libSM DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libsmbios DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/libsmbios.git/
 * libssh DEFAULT https://red.libssh.org/projects/libssh/files
 * libssh2 DEFAULT http://www.libssh2.org/download/
 * libtaginfo DEFAULT https://bitbucket.org/shuerhaaken/libtaginfo/downloads
 * libtalloc talloc-(.*?)\.tar\.gz http://samba.org/ftp/talloc/
 * libtasn1 DEFAULT GNU-DEFAULT
 * libtdb DEFAULT:tdb http://www.samba.org/ftp/tdb/
 * libtevent DEFAULT:tevent http://www.samba.org/ftp/tevent/
 * libtiff DEFAULT:tiff http://download.osgeo.org/libtiff/
 * libtirpc DEFAULT SF-DEFAULT
 * libtool DEFAULT GNU-DEFAULT
 * libtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
 * libtsm DEFAULT http://freedesktop.org/software/kmscon/releases/
 * libumberlog DEFAULT https://github.com/deirf/libumberlog/tags
 * libunicap DEFAULT http://unicap-imaging.org/download.htm
 * libuninameslist (0\.*?)\.tar.* https://github.com/fontforge/libuninameslist/releases
 * libunistring DEFAULT GNU-DEFAULT
 * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
 * libusb DEFAULT:libusb-compat SF-DEFAULT
 * libusbx DEFAULT SF-DEFAULT
 * libutempter libutempter-(.*?)\.tar ftp://ftp.altlinux.org/pub/people/ldv/utempter
 * libva DEFAULT http://cgit.freedesktop.org/libva/
 * libvdpau DEFAULT http://people.freedesktop.org/~aplattner/vdpau/
 * libvncserver DEFAULT:LibVNCServer SF-DEFAULT
 * libvisio libvisio-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libvorbis DEFAULT http://downloads.xiph.org/releases/vorbis/
 * libwbxml DEFAULT SF-DEFAULT
 * libwfut DEFAULT SF-DEFAULT:worldforge
 * libwpd DEFAULT SF-DEFAULT
 * libwpg DEFAULT SF-DEFAULT
 * libwps DEFAULT SF-DEFAULT
 * libX11 DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXau DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXaw DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxcb DEFAULT http://xcb.freedesktop.org/dist/
 * libXcomposite DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXcursor DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXdamage DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXdmcp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXevie DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXext DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfixes DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfont DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXft DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXi DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXinerama DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxkbcommon DEFAULT http://xkbcommon.org/download/
 * libxkbfile DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxklavier DEFAULT GNOME-DEFAULT
 * libxml2 DEFAULT ftp://xmlsoft.org/libxml2/
 * libXmu DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXpm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrandr DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrender DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXres DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXScrnSaver DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXt DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXtst DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXv DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXvMC DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86dga DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86misc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86vm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libyaml DEFAULT:yaml http://pyyaml.org/download/libyaml/
 * libyubikey DEFAULT GOOGLE-DEFAULT:yubico-c
 * libyui libyui/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui/tags
 * libyui-bindings libyui-bindings/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-bindings/tags
 * libyui-gtk libyui-gtk/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-gtk/tags
 * libyui-ncurses libyui-ncurses/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-ncurses/tags
 * libyui-qt libyui-qt/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-qt/tags
 * libyui-qt-graph libyui-qt-graph/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-qt-graph/tags
 * licq DEFAULT SF-DEFAULT
 * light-themes DEFAULT https://launchpad.net/ubuntu/quantal/+source/light-themes
 * lightdm DEFAULT LP-DEFAULT
 * lightdm-gtk DEFAULT:lightdm-gtk-greeter LP-DEFAULT:lightdm-gtk-greeter
 * lightdm-kde lightdm-kde-([0-9.]+) http://download.kde.org/unstable/lightdm-kde/src/
 * lightning DEFAULT GNU-DEFAULT
 * lighttpd DEFAULT http://www.lighttpd.net/download/
 * linbox DEFAULT http://www.linalg.org/download.html
 * lingot DEFAULT http://download.savannah.gnu.org/releases/lingot/
 * links DEFAULT http://links.twibright.com/download/
 * linpsk DEFAULT SF-DEFAULT
 * linsmith DEFAULT SF-DEFAULT
 * linux-libertine-fonts LinLibertineSRC-(.*?).tgz SF-DEFAULT:linuxlibertine
 * linuxconsoletools DEFAULT SF-DEFAULT:linuxconsole
 * lis DEFAULT http://www.ssisc.org/lis/index.en.html
 * llvm llvm-(.*?).src.tar.gz http://www.llvm.org/releases/download.html
 * lm_sensors DEFAULT http://dl.lm-sensors.org/lm-sensors/releases/
 * lmms DEFAULT SF-DEFAULT
 * log4cplus DEFAULT SF-DEFAULT
 * log4j (1.[0-9.]+)/ http://www.apache.org/dist/logging/log4j
 * loggerhead DEFAULT LP-DEFAULT
 * logserial DEFAULT http://www.ibiblio.org/pub/Linux/system/serial/
 * lonote DEFAULT https://bitbucket.org/civalin/lonote/downloads
 * lrmi DEFAULT SF-DEFAULT
 * lrzip DEFAULT http://lrzip.kolivas.org/
 * lsnipes DEFAULT http://www.ugcs.caltech.edu/~boultonj/snipes/
 * lsof DEFAULT ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
 * lsscsi DEFAULT http://sg.danny.cz/scsi/lsscsi.html
 * lsyncd DEFAULT GOOGLE-DEFAULT
 * lua DEFAULT http://www.lua.org/ftp/
 * lua-alt-getopt DEFAULT SF-DEFAULT
 * lua-filesystem DEFAULT:luafilesystem http://luarocks.org/repositories/rocks/
 * lua-lpeg DEFAULT:lpeg http://www.inf.puc-rio.br/~roberto/lpeg/
 * lua-moonscript archive/v(.*?)\.zip https://github.com/leafo/moonscript/tags
 * lua-penlight (\d+[\d\.]*).tar.gz https://github.com/stevedonovan/Penlight/releases
 * lua-rex \brel-([\d+\-]+)\b https://github.com/rrthomas/lrexlib/tags
 * luarocks DEFAULT http://luarocks.org/releases/
 * luckybackup DEFAULT SF-DEFAULT
 * luma DEFAULT SF-DEFAULT
 * lxc DEFAULT SF-DEFAULT
 * lxsplit DEFAULT SF-DEFAULT
 * lynis lynis-(.*)\.tar\.gz http://cisofy.com/downloads/
 * lynx lynx(.*?)/index http://lynx.isc.org/
 * lyx DEFAULT http://www.lyx.org/Download
 * lzip DEFAULT http://download.savannah.gnu.org/releases/lzip/
 * lziprecover DEFAULT http://download.savannah.gnu.org/releases/lzip/
 * lzo DEFAULT http://www.oberhumer.com/opensource/lzo/download/

M

 * m17n-db DEFAULT http://download.savannah.gnu.org/releases/m17n/
 * m17n-contrib http://download.savannah.gnu.org/releases/m17n/
 * m17n-lib DEFAULT http://download.savannah.gnu.org/releases/m17n/
 * m4 DEFAULT GNU-DEFAULT
 * maatkit DEFAULT GOOGLE-DEFAULT
 * macchanger DEFAULT GNU-DEFAULT
 * MagicPoint DEFAULT:magicpoint ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/
 * mailman DEFAULT GNU-DEFAULT
 * mailx DEFAULT SF-DEFAULT:heirloom
 * make DEFAULT GNU-DEFAULT
 * makeself release-([0-9.]+) https://github.com/megastep/makeself/releases
 * manchu-fonts DEFAULT:Manchu_Font_2005 SF-DEFAULT:manchufont
 * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
 * man-pages DEFAULT http://kernel.org/pub/linux/docs/man-pages/
 * man-pages-fr man-pages-fr[^0-9]*([0-9]+\.[0-9]+-[0-9]+) http://alioth.debian.org/projects/perkamon/
 * man-pages-pl DEFAULT:manpages-pl SF-DEFAULT:manpages-pl
 * marked NPM-DEFAULT NPM-DEFAULT
 * mate-desktop DEFAULT http://pub.mate-desktop.org/releases/*/
 * matio /matio/([0-9.]*?)/matio-[0-9.]*.tar.gz SF-DEFAULT:matio
 * maven DEFAULT:apache-maven http://www.apache.org/dist/maven/maven-3/*/source/
 * maven-ant-tasks (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-ant-tasks/
 * maven-archiver (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-archiver/
 * maven-artifact-resolver (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/shared/maven-artifact-resolver/
 * maven-dependency-analyzer (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/
 * maven-assembly-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/
 * maven-archetype (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/archetype/maven-archetype/
 * maven-changes-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-changes-plugin/
 * maven-checkstyle-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-checkstyle-plugin/
 * maven-dependency-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/
 * maven-doxia (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/doxia/doxia
 * maven-downloader maven-downloader-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-doxia-sitetools (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/
 * maven-doxia-tools maven-doxia-tools-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-ear-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-ear-plugin/ 
 * maven-eclipse-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-eclipse-plugin/
 * maven-enforcer (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/enforcer/enforcer/
 * maven-gpg-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-gpg-plugin/
 * maven-help-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-help-plugin/
 * maven-file-management file-management-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-idea-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-idea-plugin/
 * maven-indexer (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/indexer/maven-indexer/
 * maven-install-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-install-plugin/
 * maven-invoker-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-invoker-plugin/
 * maven-jar-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-jar-plugin/
 * maven-javadoc-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/
 * maven-jarsigner-plugin maven-jarsigner-plugin-([0-9.]*?)\/ http://svn.apache.org/viewvc/maven/plugins/tags/
 * maven-jxr (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/jxr/jxr/
 * maven-pmd-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/
 * maven-plugin-bundle (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/maven-bundle-plugin/
 * maven-verifier (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-verifier/
 * maven-plugin-testing maven-plugin-testing-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/plugin-testing/tags/
 * maven-plugin-tools (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/
 * maven-plugin-build-helper build-helper-maven-plugin-([0-9.]*?.*)\/\" https://svn.codehaus.org/mojo/tags/
 * maven-project-info-reports-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-project-info-reports-plugin/
 * maven-release maven-release-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/release/tags/
 * maven-antrun-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/
 * maven-reporting-exec (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-exec/
 * maven-reporting-api (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-api/
 * maven-reporting-impl (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-impl/
 * maven-resources-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/
 * maven-scm (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/scm/maven-scm/
 * maven-script-interpreter (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/shared/maven-script-interpreter/
 * maven-shade-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-shade-plugin/
 * maven-site-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-site-plugin/
 * maven-shared maven-shared-components-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-shared-jar maven-shared-jar-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-shared-utils (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-utils/
 * maven-shared-incremental (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-incremental/
 * maven-shared-io maven-shared-io-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-source-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-source-plugin/
 * maven-surefire (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/surefire/surefire/
 * maven-war-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/
 * maven-toolchains-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-toolchains-plugin/
 * maven-wagon (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/wagon/wagon/
 * maven-wagon-ahc DEFAULT https://github.com/sonatype/wagon-ahc/releases
 * maven-clean-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/
 * maven-compiler-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/
 * maven-deploy-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/
 * maven-docck-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-docck-plugin/
 * maven-remote-resources-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/
 * mawk DEFAULT ftp://invisible-island.net/mawk/
 * mc DEFAULT http://ftp.midnight-commander.org/
 * mcabber DEFAULT http://mcabber.com/
 * mcu8051ide DEFAULT SF-DEFAULT
 * mdadm DEFAULT http://kernel.org/pub/linux/utils/raid/mdadm/
 * mediawiki DEFAULT http://www.mediawiki.org/wiki/Download
 * media-player-info DEFAULT http://www.freedesktop.org/software/media-player-info/
 * methane DEFAULT SF-DEFAULT
 * mdds mdds_(\d+\.\d+.\d+)\.tar\.bz2 http://code.google.com/p/multidimalgorithm/wiki/Downloads
 * mdk DEFAULT http://ftp.gnu.org/gnu/mdk/*/
 * medusa DEFAULT http://www.foofus.net/~jmk/medusa/medusa.html
 * memcached DEFAULT GOOGLE-DEFAULT
 * memtest86+ memtest86\+-(.*?)\.tar\.gz http://www.memtest.org/download/*/
 * memtester DEFAULT http://pyropus.ca/software/memtester/
 * mercator DEFAULT SF-DEFAULT:worldforge
 * mercurial DEFAULT http://mercurial.selenic.com/release/
 * mesa DEFAULT:MesaLib ftp://ftp.freedesktop.org/pub/mesa/current/
 * mg href="mg-(.*?).tar.gz" http://homepage.boetes.org/software/mg/
 * mgetty \bmgetty([^-]+) ftp://mgetty.greenie.net/pub/mgetty/source/*.*/
 * mhddfs DEFAULT http://mhddfs.uvw.ru/downloads/
 * midori DEFAULT https://launchpad.net/midori
 * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
 * mingw-dbus-glib DEFAULT:dbus-glib http://dbus.freedesktop.org/releases/dbus-glib/
 * mingw-libgsf DEFAULT:libgsf GNOME-DEFAULT:libgsf
 * mingw-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
 * mingw-nsis DEFAULT:nsis http://nsis.sourceforge.net/Download
 * minicom DEFAULT http://alioth.debian.org/frs/?group_id=30018
 * minimodem DEFAULT http://www.whence.com/minimodem/
 * mj DEFAULT http://mahjong.julianbradfield.org/Source/
 * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
 * mldonkey DEFAULT SF-DEFAULT
 * mmapper DEFAULT SF-DEFAULT
 * mocha NPM-DEFAULT NPM-DEFAULT
 * mod_perl DEFAULT CPAN-DEFAULT
 * mod_qos DEFAULT http://sourceforge.net/projects/mod-qos/files/
 * mod_suphp DEFAULT:suphp http://www.suphp.org/Home.html
 * mod_wsgi DEFAULT GOOGLE-DEFAULT:modwsgi
 * modplugtools DEFAULT SF-DEFAULT:modplug-xmms
 * modello "(\d[^/]*)/" http://repo1.maven.org/maven2/org/codehaus/modello/modello/
 * moe DEFAULT GNU-DEFAULT
 * mojomojo DEFAULT:MojoMojo CPAN-DEFAULT:MojoMojo
 * mojo-parent (\d+)/ http://repo2.maven.org/maven2/org/codehaus/mojo/mojo-parent/
 * moksha DEFAULT PYPI-DEFAULT
 * mon DEFAULT ftp://ftp.kernel.org/pub/software/admin/mon
 * monkeysphere monkeysphere_([0-9.]*).orig.tar.gz http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/
 * monitorix DEFAULT http://www.monitorix.org/downloads.html
 * monochrome-icon-theme DEFAULT:ubuntu-mono https://launchpad.net/ubuntu/quantal/+source/ubuntu-mono
 * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
 * most DEFAULT ftp://space.mit.edu/pub/davis/most/*/
 * mot-adms DEFAULT:adms SF-DEFAULT
 * mozc DEFAULT GOOGLE-DEFAULT
 * mozilla-adblockplus DEFAULT:adblockplus http://hg.adblockplus.org/downloads/raw-file/tip/
 * mozilla-noscript v (\d+\.\d+\.\d+\.\d+) http://noscript.net/changelog
 * mpfr DEFAULT GNU-DEFAULT
 * mpi4py DEFAULT GOOGLE-DEFAULT
 * mpir DEFAULT http://www.mpir.org/
 * mrbs DEFAULT SF-DEFAULT
 * mrtg DEFAULT http://oss.oetiker.ch/mrtg/pub/
 * msmtp DEFAULT SF-DEFAULT
 * msr-tools DEFAULT http://01.org/msr-tools/downloads
 * mtd-utils DEFAULT ftp://ftp.infradead.org/pub/mtd-utils/
 * mtn-browse DEFAULT SF-DEFAULT
 * mtools DEFAULT GNU-DEFAULT
 * mtr DEFAULT ftp://ftp.bitwizard.nl/mtr/
 * mtx DEFAULT SF-DEFAULT
 * multitail DEFAULT http://www.vanheusden.com/multitail/download.php
 * mumble DEFAULT SF-DEFAULT
 * muParser Version ([0-9]\.[0-9.]*).*muparser SF-DEFAULT:muparser
 * mupdf DEFAULT http://mupdf.com/download/
 * mutt DEFAULT ftp://ftp.mutt.org/mutt/
 * mypaint mypaint-([0-9]\.[0-9]\.[0-9]).tar.bz2 http://download.gna.org/mypaint/
 * mysqltuner archive/v(.*?)\.zip https://github.com/rackerhacker/MySQLTuner-perl/tags
 * mysql-connector-java DEFAULT http://dev.mysql.com/downloads/connector/j/
 * mysql-proxy DEFAULT http://dev.mysql.com/downloads/mysql-proxy/?upcoming_os=src
 * mysql-workbench DEFAULT:mysql-workbench-gpl http://dev.mysql.com/downloads/workbench/?current_os=src
 * maven-hpi-plugin DEFAULT https://github.com/jenkinsci/maven-hpi-plugin/tags
 * metainf-services DEFAULT https://github.com/kohsuke/metainf-services/tags

N - Perl

 * nagios DEFAULT SF-DEFAULT
 * nagios-plugins DEFAULT https://www.nagios-plugins.org/download.html
 * nano DEFAULT GNU-DEFAULT
 * nas DEFAULT SF-DEFAULT
 * nasm DEFAULT http://www.nasm.us/pub/nasm/releasebuilds/*/
 * NaturalDocs DEFAULT SF-DEFAULT:naturaldocs
 * nautilus DEFAULT GNOME-DEFAULT
 * nautilus-open-terminal DEFAULT GNOME-DEFAULT
 * ncdu DEFAULT http://dev.yorhel.nl/ncdu
 * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
 * ncompress DEFAULT SF-DEFAULT
 * ncurses DEFAULT GNU-DEFAULT
 * ncview DEFAULT ftp://cirrus.ucsd.edu/pub/ncview/
 * nekohtml DEFAULT SF-DEFAULT
 * nesc nesc-(.*?).tar.gz http://sourceforge.net/projects/nescc/
 * net-snmp /files/net-snmp/([\d.]+)/ http://net-snmp.sourceforge.net/download.html
 * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
 * netbsd-iscsi DEFAULT http://www.alistaircrooks.co.uk/src/
 * nethogs DEFAULT SF-DEFAULT
 * netlabel_tools DEFAULT SF-DEFAULT:netlabel
 * netmask DEFAULT DEBIAN-DEFAULT
 * netmonitor DEFAULT SF-DEFAULT
 * netpbm DEFAULT SF-DEFAULT
 * netsniff-ng DEFAULT http://www.netsniff-ng.org/pub/netsniff-ng/
 * nettle DEFAULT http://www.lysator.liu.se/~nisse/archive/
 * netty netty-([0-9.]*?).Final https://github.com/netty/netty/tags
 * newlisp DEFAULT http://www.newlisp.org/downloads/
 * newsbeuter DEFAULT http://newsbeuter.org/download.html
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nfacct DEFAULT http://ftp.netfilter.org/pub/nfacct/
 * nfs-utils DEFAULT SF-DEFAULT:nfs
 * nftables DEFAULT http://ftp.netfilter.org/pub/nftables/*/
 * ngircd DEFAULT http://ngircd.barton.de/download.php.en
 * ngrep DEFAULT SF-DEFAULT
 * nickle DEFAULT http://nickle.org/release/
 * nicotine+ DEFAULT SF-DEFAULT:nicotine-plus
 * nightview DEFAULT ftp://integral.physics.muni.cz/pub/nightview
 * njam DEFAULT SF-DEFAULT
 * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/
 * nip2 DEFAULT http://www.vips.ecs.soton.ac.uk/supported/current/
 * nkf DEFAULT http://sourceforge.jp/projects/nkf/releases/
 * nload DEFAULT http://www.roland-riegel.de/nload/
 * nmap DEFAULT http://nmap.org/dist/
 * nmon lmon(.*?)\.c http://nmon.sourceforge.net/pmwiki.php?n=Site.CompilingNmon
 * nodejs-agentkeepalive NPM-DEFAULT NPM-DEFAULT
 * nodejs-abbrev NPM-DEFAULT NPM-DEFAULT
 * nodejs-ain2 NPM-DEFAULT NPM-DEFAULT
 * nodejs-ansi NPM-DEFAULT NPM-DEFAULT
 * nodejs-archy NPM-DEFAULT NPM-DEFAULT
 * nodejs-argparse NPM-DEFAULT NPM-DEFAULT
 * nodejs-asn1 NPM-DEFAULT NPM-DEFAULT
 * nodejs-assert-plus NPM-DEFAULT NPM-DEFAULT
 * nodejs-async NPM-DEFAULT NPM-DEFAULT
 * nodejs-aws-sign NPM-DEFAULT NPM-DEFAULT
 * nodejs-bindings NPM-DEFAULT NPM-DEFAULT
 * nodejs-block-stream NPM-DEFAULT NPM-DEFAULT
 * nodejs-boom NPM-DEFAULT NPM-DEFAULT
 * nodejs-buffer-crc32 NPM-DEFAULT NPM-DEFAULT
 * nodejs-buffer-equal NPM-DEFAULT NPM-DEFAULT
 * nodejs-bunker NPM-DEFAULT NPM-DEFAULT
 * nodejs-burrito NPM-DEFAULT NPM-DEFAULT
 * nodejs-bytes NPM-DEFAULT NPM-DEFAULT
 * nodejs-charm NPM-DEFAULT NPM-DEFAULT
 * nodejs-chmodr NPM-DEFAULT NPM-DEFAULT
 * nodejs-chownr NPM-DEFAULT NPM-DEFAULT
 * nodejs-chrono NPM-DEFAULT NPM-DEFAULT
 * nodejs-cli NPM-DEFAULT NPM-DEFAULT
 * nodejs-collections NPM-DEFAULT NPM-DEFAULT
 * nodejs-colors NPM-DEFAULT NPM-DEFAULT
 * nodejs-combined-stream NPM-DEFAULT NPM-DEFAULT
 * nodejs-commander NPM-DEFAULT NPM-DEFAULT
 * nodejs-config-chain NPM-DEFAULT NPM-DEFAULT
 * nodejs-connect NPM-DEFAULT NPM-DEFAULT
 * nodejs-cookie NPM-DEFAULT NPM-DEFAULT
 * nodejs-cookie-jar NPM-DEFAULT NPM-DEFAULT
 * nodejs-cookie-signature NPM-DEFAULT NPM-DEFAULT
 * nodejs-couch-login NPM-DEFAULT NPM-DEFAULT
 * nodejs-cryptiles NPM-DEFAULT NPM-DEFAULT
 * nodejs-cssom NPM-DEFAULT NPM-DEFAULT
 * nodejs-ctype NPM-DEFAULT NPM-DEFAULT
 * nodejs-cycle NPM-DEFAULT NPM-DEFAULT
 * nodejs-debug NPM-DEFAULT NPM-DEFAULT
 * nodejs-deep-equal NPM-DEFAULT NPM-DEFAULT
 * nodejs-defined NPM-DEFAULT NPM-DEFAULT
 * nodejs-delayed-stream NPM-DEFAULT NPM-DEFAULT
 * nodejs-dep-graph NPM-DEFAULT NPM-DEFAULT
 * nodejs-detective NPM-DEFAULT NPM-DEFAULT
 * nodejs-diff NPM-DEFAULT NPM-DEFAULT
 * nodejs-difflet NPM-DEFAULT NPM-DEFAULT
 * nodejs-dryice NPM-DEFAULT NPM-DEFAULT
 * nodejs-ejs NPM-DEFAULT NPM-DEFAULT
 * nodejs-escodegen NPM-DEFAULT NPM-DEFAULT
 * nodejs-esprima NPM-DEFAULT NPM-DEFAULT
 * nodejs-estraverse NPM-DEFAULT NPM-DEFAULT
 * nodejs-eventemitter2 NPM-DEFAULT NPM-DEFAULT
 * nodejs-express NPM-DEFAULT NPM-DEFAULT
 * nodejs-eyes NPM-DEFAULT NPM-DEFAULT
 * nodejs-fileset NPM-DEFAULT NPM-DEFAULT
 * nodejs-findup-sync NPM-DEFAULT NPM-DEFAULT
 * nodejs-forever-agent NPM-DEFAULT NPM-DEFAULT
 * nodejs-form-data NPM-DEFAULT NPM-DEFAULT
 * nodejs-formidable NPM-DEFAULT NPM-DEFAULT
 * nodejs-fresh NPM-DEFAULT NPM-DEFAULT
 * nodejs-fstream NPM-DEFAULT NPM-DEFAULT
 * nodejs-fstream-ignore NPM-DEFAULT NPM-DEFAULT
 * nodejs-fstream-npm NPM-DEFAULT NPM-DEFAULT
 * nodejs-gaze NPM-DEFAULT NPM-DEFAULT
 * nodejs-generic-pool NPM-DEFAULT NPM-DEFAULT
 * nodejs-get NPM-DEFAULT NPM-DEFAULT
 * nodejs-glob NPM-DEFAULT NPM-DEFAULT
 * nodejs-graceful-fs NPM-DEFAULT NPM-DEFAULT
 * nodejs-grip NPM-DEFAULT NPM-DEFAULT
 * nodejs-growl NPM-DEFAULT NPM-DEFAULT
 * nodejs-hawk NPM-DEFAULT NPM-DEFAULT
 * nodejs-hoek NPM-DEFAULT NPM-DEFAULT
 * nodejs-hooker NPM-DEFAULT NPM-DEFAULT
 * nodejs-http-signature NPM-DEFAULT NPM-DEFAULT
 * nodejs-i NPM-DEFAULT NPM-DEFAULT
 * nodejs-i2c NPM-DEFAULT NPM-DEFAULT
 * nodejs-iconv-lite NPM-DEFAULT NPM-DEFAULT
 * nodejs-inherits NPM-DEFAULT NPM-DEFAULT
 * nodejs-ini NPM-DEFAULT NPM-DEFAULT
 * nodejs-init-package-json NPM-DEFAULT NPM-DEFAULT
 * nodejs-iso8601 NPM-DEFAULT NPM-DEFAULT
 * nodejs-isodate NPM-DEFAULT NPM-DEFAULT
 * nodejs-jade NPM-DEFAULT NPM-DEFAULT
 * nodejs-jasmine-reporters NPM-DEFAULT NPM-DEFAULT
 * nodejs-joose NPM-DEFAULT NPM-DEFAULT
 * nodejs-jscoverage NPM-DEFAULT NPM-DEFAULT
 * nodejs-jsonify NPM-DEFAULT NPM-DEFAULT
 * nodejs-json-stringify-safe NPM-DEFAULT NPM-DEFAULT
 * nodejs-js-yaml NPM-DEFAULT NPM-DEFAULT
 * nodejs-jwt-simple NPM-DEFAULT NPM-DEFAULT
 * nodejs-JSV NPM-DEFAULT NPM-DEFAULT
 * nodejs-keypress NPM-DEFAULT NPM-DEFAULT
 * nodejs-less NPM-DEFAULT NPM-DEFAULT
 * nodejs-libxmljs NPM-DEFAULT NPM-DEFAULT
 * nodejs-lockfile NPM-DEFAULT NPM-DEFAULT
 * nodejs-lodash NPM-DEFAULT NPM-DEFAULT
 * nodejs-lru-cache NPM-DEFAULT NPM-DEFAULT
 * nodejs-ltx NPM-DEFAULT NPM-DEFAULT
 * nodejs-mapnik NPM-DEFAULT NPM-DEFAULT
 * nodejs-mapnik-reference NPM-DEFAULT NPM-DEFAULT
 * nodejs-mapnik-vector-tile NPM-DEFAULT NPM-DEFAULT
 * nodejs-markdown NPM-DEFAULT NPM-DEFAULT
 * nodejs-mbtiles NPM-DEFAULT NPM-DEFAULT
 * nodejs-methods NPM-DEFAULT NPM-DEFAULT
 * nodejs-millstone NPM-DEFAULT NPM-DEFAULT
 * nodejs-mime NPM-DEFAULT NPM-DEFAULT
 * nodejs-mimeparse NPM-DEFAULT NPM-DEFAULT
 * nodejs-minimatch NPM-DEFAULT NPM-DEFAULT
 * nodejs-minimist NPM-DEFAULT NPM-DEFAULT
 * nodejs-mkdirp NPM-DEFAULT NPM-DEFAULT
 * nodejs-ms NPM-DEFAULT NPM-DEFAULT
 * nodejs-muffin NPM-DEFAULT NPM-DEFAULT
 * nodejs-mute-stream NPM-DEFAULT NPM-DEFAULT
 * nodejs-ncp NPM-DEFAULT NPM-DEFAULT
 * nodejs-node-expat NPM-DEFAULT NPM-DEFAULT
 * nodejs-node-markdown NPM-DEFAULT NPM-DEFAULT
 * nodejs-node-stringprep NPM-DEFAULT NPM-DEFAULT
 * nodejs-node-uuid NPM-DEFAULT NPM-DEFAULT
 * nodejs-node-xmpp NPM-DEFAULT NPM-DEFAULT
 * nodejs-nopt NPM-DEFAULT NPM-DEFAULT
 * nodejs-npmconf NPM-DEFAULT NPM-DEFAULT
 * nodejs-npmlog NPM-DEFAULT NPM-DEFAULT
 * nodejs-npm-registry-client NPM-DEFAULT NPM-DEFAULT
 * nodejs-oauth NPM-DEFAULT NPM-DEFAULT
 * nodejs-oauth-sign NPM-DEFAULT NPM-DEFAULT
 * nodejs-once NPM-DEFAULT NPM-DEFAULT
 * nodejs-opener NPM-DEFAULT NPM-DEFAULT
 * nodejs-optimist NPM-DEFAULT NPM-DEFAULT
 * nodejs-opts NPM-DEFAULT NPM-DEFAULT
 * nodejs-osenv NPM-DEFAULT NPM-DEFAULT
 * nodejs-package NPM-DEFAULT NPM-DEFAULT
 * nodejs-paperboy NPM-DEFAULT NPM-DEFAULT
 * nodejs-passport NPM-DEFAULT NPM-DEFAULT
 * nodejs-passport-oauth NPM-DEFAULT NPM-DEFAULT
 * nodejs-pause NPM-DEFAULT NPM-DEFAULT
 * nodejs-pedding NPM-DEFAULT NPM-DEFAULT
 * nodejs-pg NPM-DEFAULT NPM-DEFAULT
 * nodejs-pkginfo NPM-DEFAULT NPM-DEFAULT
 * nodejs-prompt NPM-DEFAULT NPM-DEFAULT
 * nodejs-promzard NPM-DEFAULT NPM-DEFAULT
 * nodejs-proto-list NPM-DEFAULT NPM-DEFAULT
 * nodejs-pubcontrol NPM-DEFAULT NPM-DEFAULT
 * nodejs-q NPM-DEFAULT NPM-DEFAULT
 * nodejs-q-io NPM-DEFAULT NPM-DEFAULT
 * nodejs-qs NPM-DEFAULT NPM-DEFAULT
 * nodejs-range-parser NPM-DEFAULT NPM-DEFAULT
 * nodejs-read NPM-DEFAULT NPM-DEFAULT
 * nodejs-read-installed NPM-DEFAULT NPM-DEFAULT
 * nodejs-read-package-json NPM-DEFAULT NPM-DEFAULT
 * nodejs-repl NPM-DEFAULT NPM-DEFAULT
 * nodejs-request NPM-DEFAULT NPM-DEFAULT
 * nodejs-requirejs NPM-DEFAULT NPM-DEFAULT
 * nodejs-resolve NPM-DEFAULT NPM-DEFAULT
 * nodejs-retry NPM-DEFAULT NPM-DEFAULT
 * nodejs-revalidator NPM-DEFAULT NPM-DEFAULT
 * nodejs-rimraf NPM-DEFAULT NPM-DEFAULT
 * nodejs-ronn NPM-DEFAULT NPM-DEFAULT
 * nodejs-runforcover NPM-DEFAULT NPM-DEFAULT
 * nodejs-sax NPM-DEFAULT NPM-DEFAULT
 * nodejs-semver NPM-DEFAULT NPM-DEFAULT
 * nodejs-send NPM-DEFAULT NPM-DEFAULT
 * nodejs-should NPM-DEFAULT NPM-DEFAULT
 * nodejs-showdown NPM-DEFAULT NPM-DEFAULT
 * nodejs-sigmund NPM-DEFAULT NPM-DEFAULT
 * nodejs-slide NPM-DEFAULT NPM-DEFAULT
 * nodejs-snockets NPM-DEFAULT NPM-DEFAULT
 * nodejs-sntp NPM-DEFAULT NPM-DEFAULT
 * nodejs-source-map NPM-DEFAULT NPM-DEFAULT
 * nodejs-sphericalmercator NPM-DEFAULT NPM-DEFAULT
 * nodejs-sqlite3 NPM-DEFAULT NPM-DEFAULT
 * nodejs-srs NPM-DEFAULT NPM-DEFAULT
 * nodejs-step NPM-DEFAULT NPM-DEFAULT
 * nodejs-stack-trace NPM-DEFAULT NPM-DEFAULT
 * nodejs-stylus NPM-DEFAULT NPM-DEFAULT
 * nodejs-tap NPM-DEFAULT NPM-DEFAULT
 * nodejs-tape NPM-DEFAULT NPM-DEFAULT
 * nodejs-tar NPM-DEFAULT NPM-DEFAULT
 * nodejs-temp NPM-DEFAULT NPM-DEFAULT
 * nodejs-temporary NPM-DEFAULT NPM-DEFAULT
 * nodejs-through NPM-DEFAULT NPM-DEFAULT
 * nodejs-tilejson NPM-DEFAULT NPM-DEFAULT
 * nodejs-tilelive NPM-DEFAULT NPM-DEFAULT
 * nodejs-tilelive-mapnik NPM-DEFAULT NPM-DEFAULT
 * nodejs-traverse NPM-DEFAULT NPM-DEFAULT
 * nodejs-tunnel-agent NPM-DEFAULT NPM-DEFAULT
 * nodejs-uid2 NPM-DEFAULT NPM-DEFAULT
 * nodejs-uid-number NPM-DEFAULT NPM-DEFAULT
 * nodejs-underscore NPM-DEFAULT NPM-DEFAULT
 * nodejs-uri-js NPM-DEFAULT NPM-DEFAULT
 * nodejs-url2 NPM-DEFAULT NPM-DEFAULT
 * nodejs-utile NPM-DEFAULT NPM-DEFAULT
 * nodejs-vows NPM-DEFAULT NPM-DEFAULT
 * nodejs-walkdir NPM-DEFAULT NPM-DEFAULT
 * nodejs-watchit NPM-DEFAULT NPM-DEFAULT
 * nodejs-which NPM-DEFAULT NPM-DEFAULT
 * nodejs-winston NPM-DEFAULT NPM-DEFAULT
 * nodejs-wordwrap NPM-DEFAULT NPM-DEFAULT
 * nodejs-yamlish NPM-DEFAULT NPM-DEFAULT
 * nodejs-xml2js NPM-DEFAULT NPM-DEFAULT
 * nodejs-xmlbuilder NPM-DEFAULT NPM-DEFAULT
 * nodejs-zap NPM-DEFAULT NPM-DEFAULT
 * nodejs-zipfile NPM-DEFAULT NPM-DEFAULT
 * npush DEFAULT SF-DEFAULT
 * nspluginwrapper DEFAULT http://nspluginwrapper.org/download/
 * nss DEFAULT http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/*/src/
 * ntfs-3g >ntfs-3g_ntfsprogs-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
 * npth DEFAULT ftp://ftp.gnupg.org/gcrypt/npth/
 * ntop DEFAULT SF-DEFAULT
 * ntopng DEFAULT SF-DEFAULT:ntop
 * ntp http://www.ntp.org/downloads.html
 * numactl DEFAULT ftp://oss.sgi.com/projects/libnuma/download
 * numatop numatop_linux_(.*?)\.tar\.gz http://01.org/numatop
 * numlockx DEFAULT http://home.kde.org/~seli/numlockx/
 * numpy numpy-([0-9.]*?).tar.gz SF-DEFAULT
 * nuttcp DEFAULT http://lcp.nrl.navy.mil/nuttcp/
 * nx-libs nx-libs-(.*?)-full\.tar\.gz http://code.x2go.org/releases/source/nx-libs/
 * nzbget DEFAULT SF-DEFAULT
 * oath-toolkit DEFAULT http://download.savannah.gnu.org/releases/oath-toolkit/
 * obexftp DEFAULT SF-DEFAULT:openobex
 * obnam DEFAULT http://code.liw.fi/debian/pool/main/o/obnam/
 * ocaml DEFAULT http://caml.inria.fr/download.en.html
 * ocrad DEFAULT GNU-DEFAULT
 * octave DEFAULT GNU-DEFAULT
 * octave-audio DEFAULT:audio SF-DEFAULT:octave
 * octave-control control-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-image image-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-miscellaneous miscellaneous-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-octcdf octcdf-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-optim optim-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-quaternion DEFAULT:quaternion SF-DEFAULT:octave
 * octave-signal signal-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-specfun specfun-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-struct struct-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-symbolic DEFAULT:symbolic SF-DEFAULT:octave
 * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
 * offlineimap v([0-9.]+).zip https://github.com/OfflineIMAP/offlineimap/tags
 * OmegaT DEFAULT SF-DEFAULT:omegat
 * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
 * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
 * openblas archive/v(.*?)\.zip https://github.com/xianyi/OpenBLAS/tags
 * openbox DEFAULT http://openbox.org/wiki/Openbox:Download
 * opencc DEFAULT GOOGLE-DEFAULT
 * opencsg OpenCSG-([0-9.]*?).tar.gz http://www.opencsg.org/
 * opendkim \bopendkim[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?(?<!Beta\d)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * opengrok DEFAULT http://opengrok.github.io/OpenGrok/
 * OpenImageIO Release-([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/OpenImageIO/oiio/releases
 * OpenIPMI DEFAULT SF-DEFAULT:openipmi
 * openjpeg DEFAULT GOOGLE-DEFAULT
 * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
 * openlierox OpenLieroX_(.*?).src.tar.bz2 SF-DEFAULT
 * openmpi DEFAULT http://www.open-mpi.org/software/
 * openmsx DEFAULT SF-DEFAULT
 * openobex trees/(\d[\d.]+)\W http://gitorious.org/openobex/mainline/trees/master
 * openocd DEFAULT SF-DEFAULT
 * openrdate DEFAULT SF-DEFAULT
 * opensc archive/v?(.*?)\.zip https://github.com/OpenSC/OpenSC/tags
 * opensips (?<=\<a href=")([\d\.]+)(?=/"\>) https://opensips.org/pub/opensips/
 * openshift-java-client (\d+\.\d+\.\d+.*).tar.gz https://github.com/openshift/openshift-java-client/releases
 * opensp DEFAULT:OpenSP SF-DEFAULT:openjade
 * openssh DEFAULT http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/
 * openssl openssl-(.*?[a-z])\.tar\.gz http://www.openssl.org/source/
 * openvpn DEFAULT http://www.openvpn.net/index.php/open-source/downloads.html
 * openvswitch DEFAULT http://openvswitch.org/releases/
 * ophcrack DEFAULT http://ophcrack.sf.net/download.php
 * oprofile DEFAULT SF-DEFAULT
 * optipng DEFAULT SF-DEFAULT
 * orbited DEFAULT PYPI-DEFAULT
 * orc DEFAULT http://code.entropywave.com/download/orc/
 * os-prober DEFAULT DEBIAN-DEFAULT
 * osmo DEFAULT SF-DEFAULT:osmo-pim
 * osslsigncode DEFAULT SF-DEFAULT
 * ovaldi DEFAULT SF-DEFAULT
 * owasp-java-html-sanitizer owasp-java-html-sanitizer-r([0-9\.]*).zip GOOGLE-DEFAULT
 * owncloud Version ([0-9.]+) http://owncloud.org/changelog/
 * p0f DEFAULT http://lcamtuf.coredump.cx/p0f3/releases/
 * p11-kit DEFAULT http://p11-glue.freedesktop.org/releases/
 * p7zip p7zip_([0-9.]*?)_src_all.tar.bz2 SF-DEFAULT
 * pacemaker DEFAULT https://github.com/ClusterLabs/pacemaker/tags
 * paco DEFAULT SF-DEFAULT
 * pal DEFAULT SF-DEFAULT:palcal
 * pam_mount DEFAULT SF-DEFAULT:pam-mount
 * pam_yubico ([0-9.]+).zip https://github.com/Yubico/yubico-pam/releases
 * pandoc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * paprefs DEFAULT http://freedesktop.org/software/pulseaudio/paprefs/
 * paps DEFAULT SF-DEFAULT
 * parcellite DEFAULT SF-DEFAULT
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * patchutils DEFAULT http://cyberelk.net/tim/data/patchutils/stable/
 * pastebinit DEFAULT https://launchpad.net/pastebinit/+download
 * pax-utils \bpax-utils-([\w.]+)\.ebuild http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/pax-utils/
 * pbzip2 DEFAULT http://www.compression.ca/pbzip2/
 * pcb DEFAULT SF-DEFAULT
 * pcc DEFAULT http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/
 * pciutils DEFAULT ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
 * pcllib DEFAULT:pcl http://xmailserver.org/libpcl.html
 * pcmanfm DEFAULT SF-DEFAULT
 * pcmanx-gtk2 DEFAULT GOOGLE-DEFAULT
 * pcmciautils DEFAULT http://kernel.org/pub/linux/utils/kernel/pcmcia/
 * pcre DEFAULT SF-DEFAULT
 * pcsc-lite DEFAULT http://alioth.debian.org/frs/?group_id=30105
 * pcsc-lite-ccid DEFAULT:ccid http://alioth.debian.org/frs/?group_id=30105
 * pcsc-perl DEFAULT http://ludovic.rousseau.free.fr/softwares/pcsc-perl/
 * pdfchain DEFAULT SF-DEFAULT
 * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
 * pdftk DEFAULT http://www.pdflabs.com/tools/pdftk-server/
 * pem DEFAULT GNU-DEFAULT
 * pencil DEFAULT GOOGLE-DEFAULT:evoluspencil

Perl

 * perl-accessors DEFAULT:accessors CPAN-DEFAULT
 * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
 * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
 * perl-AI-DecisionTree DEFAULT:AI-DecisionTree CPAN-DEFAULT:AI-DecisionTree
 * perl-Algorithm-Annotate DEFAULT:Algorithm-Annotate CPAN-DEFAULT
 * perl-Algorithm-CheckDigits DEFAULT:Algorithm-CheckDigits CPAN-DEFAULT
 * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
 * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-SVM DEFAULT:Algorithm-SVM CPAN-DEFAULT
 * perl-Alien-ROOT DEFAULT:Alien-ROOT CPAN-DEFAULT
 * perl-Alien-SDL DEFAULT:Alien-SDL CPAN-DEFAULT
 * perl-Any-Moose DEFAULT:Any-Moose CPAN-DEFAULT
 * perl-AnyEvent-AIO DEFAULT:AnyEvent-AIO CPAN-DEFAULT
 * perl-AnyEvent-BDB DEFAULT:AnyEvent-BDB CPAN-DEFAULT
 * perl-AnyEvent-DBus DEFAULT:AnyEvent-DBus CPAN-DEFAULT:AnyEvent-DBus
 * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
 * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
 * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
 * perl-App-grindperl DEFAULT:App-grindperl CPAN-DEFAULT
 * perl-App-mymeta_requires DEFAULT:App-mymeta_requires CPAN-DEFAULT
 * perl-App-p DEFAULT:App-p CPAN-DEFAULT
 * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisect CPAN-DEFAULT
 * perl-Archive-Extract DEFAULT:Archive-Extract CPAN-DEFAULT
 * perl-Archive-RPM DEFAULT:Archive-RPM CPAN-DEFAULT
 * perl-Archive-Tar DEFAULT:Archive-Tar CPAN-DEFAULT
 * perl-Archive-Zip DEFAULT:Archive-Zip CPAN-DEFAULT
 * perl-Array-Base DEFAULT:Array-Base CPAN-DEFAULT
 * perl-Array-Diff DEFAULT:Array-Diff CPAN-DEFAULT
 * perl-Array-RefElem DEFAULT:Array-RefElem CPAN-DEFAULT
 * perl-Async-MergePoint DEFAULT:Async-MergePoint CPAN-DEFAULT
 * perl-AuthCAS DEFAULT:AuthCAS CPAN-DEFAULT
 * perl-Authen-OATH DEFAULT:Authen-OATH CPAN-DEFAULT
 * perl-autodie DEFAULT:autodie CPAN-DEFAULT
 * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
 * perl-B-Hooks-OP-Check-StashChange DEFAULT:B-Hooks-OP-Check-StashChange CPAN-DEFAULT
 * perl-B-Hooks-OP-PPAddr DEFAULT:B-Hooks-OP-PPAddr CPAN-DEFAULT
 * perl-B-Keywords DEFAULT:B-Keywords CPAN-DEFAULT
 * perl-B-Lint DEFAULT:B-Lint CPAN-DEFAULT
 * perl-Beanstalk-Client DEFAULT:Beanstalk-Client CPAN-DEFAULT
 * perl-Best DEFAULT:Best CPAN-DEFAULT
 * perl-Bio-SamTools DEFAULT:Bio-SamTools CPAN-DEFAULT
 * perl-Bisect-Perl-UsingGit DEFAULT:Bisect-Perl-UsingGit CPAN-DEFAULT
 * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
 * perl-Boost-Geometry-Utils DEFAULT:Boost-Geometry-Utils CPAN-DEFAULT
 * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
 * perl-Business-CreditCard DEFAULT:Business-CreditCard CPAN-DEFAULT
 * perl-Business-ISBN DEFAULT:Business-ISBN CPAN-DEFAULT
 * perl-Business-ISBN-Data DEFAULT:Business-ISBN-Data CPAN-DEFAULT
 * perl-Capture-Tiny DEFAULT:Capture-Tiny CPAN-DEFAULT
 * perl-Carp DEFAULT:Carp CPAN-DEFAULT
 * perl-Carp-Clan DEFAULT:Carp-Clan CPAN-DEFAULT
 * perl-Catalyst-Engine-PSGI DEFAULT:Catalyst-Engine-PSGI CPAN-DEFAULT
 * perl-CDB_File DEFAULT:CDB_File CPAN-DEFAULT
 * perl-CDDB_get DEFAULT:CDDB_get CPAN-DEFAULT
 * perl-CGI DEFAULT:CGI.pm CPAN-DEFAULT
 * perl-Chatbot-Eliza DEFAULT:Chatbot-Eliza CPAN-DEFAULT
 * perl-Check-ISA DEFAULT:Check-ISA CPAN-DEFAULT
 * perl-CLASS DEFAULT:CLASS CPAN-DEFAULT
 * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
 * perl-Class-Can DEFAULT:Class-Can CPAN-DEFAULT
 * perl-Class-CSV DEFAULT:Class-CSV CPAN-DEFAULT
 * perl-Class-Data-Accessor DEFAULT:Class-Data-Accessor CPAN-DEFAULT
 * perl-Class-Exporter DEFAULT:Class-Exporter CPAN-DEFAULT
 * perl-Class-Factory DEFAULT:Class-Factory CPAN-DEFAULT
 * perl-Class-Field DEFAULT:Class-Field CPAN-DEFAULT
 * perl-Class-Inner DEFAULT:Class-Inner CPAN-DEFAULT
 * perl-Class-ISA DEFAULT:Class-ISA CPAN-DEFAULT
 * perl-Class-Iterator DEFAULT:Class-Iterator CPAN-DEFAULT
 * perl-Class-MethodMaker DEFAULT:Class-MethodMaker CPAN-DEFAULT
 * perl-Class-Prototyped DEFAULT:Class-Prototyped CPAN-DEFAULT
 * perl-Class-Tiny DEFAULT:Class-Tiny CPAN-DEFAULT
 * perl-Class-Unload DEFAULT:Class-Unload CPAN-DEFAULT
 * perl-Class-XSAccessor DEFAULT:Class-XSAccessor CPAN-DEFAULT
 * perl-Classic-Perl DEFAULT:Classic-Perl CPAN-DEFAULT
 * perl-Compress-Bzip2 DEFAULT:Compress-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Bzip2 DEFAULT:Compress-Raw-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Zlib DEFAULT:Compress-Raw-Zlib CPAN-DEFAULT
 * perl-Config-Any DEFAULT:Config-Any CPAN-DEFAULT
 * perl-Config-General DEFAULT:Config-General CPAN-DEFAULT
 * perl-Config-IniFiles DEFAULT:Config-IniFiles CPAN-DEFAULT
 * perl-Config-Properties DEFAULT:Config-Properties CPAN-DEFAULT
 * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
 * perl-Config-Simple DEFAULT:Config-Simple CPAN-DEFAULT
 * perl-constant DEFAULT:constant CPAN-DEFAULT
 * perl-constant-defer DEFAULT:constant-defer CPAN-DEFAULT
 * perl-constant-tiny DEFAULT:constant-tiny CPAN-DEFAULT
 * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
 * perl-Convert-BER CPAN-DEFAULT CPAN-DEFAULT
 * perl-Convert-NLS_DATE_FORMAT DEFAULT:Convert-NLS_DATE_FORMAT CPAN-DEFAULT
 * perl-Coro DEFAULT:Coro CPAN-DEFAULT
 * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
 * perl-CPAN-FindDependencies DEFAULT:CPAN-FindDependencies CPAN-DEFAULT
 * perl-CPAN-Inject DEFAULT:CPAN-Inject CPAN-DEFAULT
 * perl-CPAN-Mini DEFAULT:CPAN-Mini CPAN-DEFAULT
 * perl-CPANPLUS DEFAULT:CPANPLUS CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-Changes DEFAULT:CPANPLUS-Shell-Default-Plugins-Changes CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-Diff DEFAULT:CPANPLUS-Shell-Default-Plugins-Diff CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-RT DEFAULT:CPANPLUS-Shell-Default-Plugins-RT CPAN-DEFAULT
 * perl-criticism DEFAULT:criticism CPAN-DEFAULT
 * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber CPAN-DEFAULT
 * perl-Crypt-GeneratePassword DEFAULT:Crypt-GeneratePassword CPAN-DEFAULT
 * perl-Crypt-OpenSSL-AES DEFAULT:Crypt-OpenSSL-AES CPAN-DEFAULT
 * perl-Crypt-OpenSSL-Bignum DEFAULT:Crypt-OpenSSL-Bignum CPAN-DEFAULT
 * perl-Crypt-OpenSSL-DSA DEFAULT:Crypt-OpenSSL-DSA CPAN-DEFAULT
 * perl-Crypt-OpenSSL-PKCS10 DEFAULT:Crypt-OpenSSL-PKCS10 CPAN-DEFAULT
 * perl-Crypt-OpenSSL-Random DEFAULT:Crypt-OpenSSL-Random CPAN-DEFAULT
 * perl-Crypt-OpenSSL-RSA DEFAULT:Crypt-OpenSSL-RSA CPAN-DEFAULT
 * perl-Crypt-OpenSSL-X509 DEFAULT:Crypt-OpenSSL-X509 CPAN-DEFAULT
 * perl-Crypt-PasswdMD5 DEFAULT:Crypt-PasswdMD5 CPAN-DEFAULT
 * perl-Crypt-RC4 DEFAULT:Crypt-RC4 CPAN-DEFAULT:Crypt-RC4
 * perl-Crypt-RC4-XS DEFAULT:Crypt-RC4-XS CPAN-DEFAULT:Crypt-RC4-XS
 * perl-Crypt-SSLeay DEFAULT:Crypt-SSLeay CPAN-DEFAULT
 * perl-CSS-Squish DEFAULT:CSS-Squish CPAN-DEFAULT
 * perl-Dancer DEFAULT:Dancer CPAN-DEFAULT
 * perl-Danga-Socket DEFAULT:Danga-Socket CPAN-DEFAULT
 * perl-Data-Dumper DEFAULT:Data-Dumper CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Float DEFAULT:Data-Float CPAN-DEFAULT
 * perl-Data-Flow DEFAULT:Data-Flow CPAN-DEFAULT
 * perl-Data-HexDump-XXD DEFAULT:Data-HexDump-XXD CPAN-DEFAULT
 * perl-Data-Hierarchy DEFAULT:Data-Hierarchy CPAN-DEFAULT
 * perl-Data-ICal DEFAULT:Data-ICal CPAN-DEFAULT
 * perl-Data-MessagePack DEFAULT:Data-MessagePack CPAN-DEFAULT
 * perl-Data-OptList DEFAULT:Data-OptList CPAN-DEFAULT
 * perl-Data-Peek DEFAULT:Data-Peek CPAN-DEFAULT
 * perl-Data-Report DEFAULT:Data-Report CPAN-DEFAULT
 * perl-Data-Rmap DEFAULT:Data-Rmap CPAN-DEFAULT
 * perl-Data-Section DEFAULT:Data-Section CPAN-DEFAULT
 * perl-Data-TreeDumper DEFAULT:Data-TreeDumper CPAN-DEFAULT
 * perl-Data-TreeDumper-Renderer-GTK DEFAULT:Data-TreeDumper-Renderer-GTK CPAN-DEFAULT
 * perl-Data-Types DEFAULT:Data-Types CPAN-DEFAULT
 * perl-Date-Calc DEFAULT:Date-Calc CPAN-DEFAULT
 * perl-Date-ICal DEFAULT:Date-ICal CPAN-DEFAULT
 * perl-Date-Leapyear DEFAULT:Date-Leapyear CPAN-DEFAULT
 * perl-Date-Manip DEFAULT:Date-Manip CPAN-DEFAULT
 * perl-Date-Pcalc DEFAULT:Date-Pcalc CPAN-DEFAULT
 * perl-DateTime DEFAULT:DateTime CPAN-DEFAULT
 * perl-DateTimeX-Easy DEFAULT:DateTimeX-Easy CPAN-DEFAULT
 * perl-DateTime-Format-DateManip DEFAULT:DateTime-Format-DateManip CPAN-DEFAULT
 * perl-DateTime-Format-DateParse DEFAULT:DateTime-Format-DateParse CPAN-DEFAULT
 * perl-DateTime-Format-DB2 DEFAULT:DateTime-Format-DB2 CPAN-DEFAULT
 * perl-DateTime-Format-DBI DEFAULT:DateTime-Format-DBI CPAN-DEFAULT
 * perl-DateTime-Format-Duration DEFAULT:DateTime-Format-Duration CPAN-DEFAULT
 * perl-DateTime-Format-Excel DEFAULT:DateTime-Format-Excel CPAN-DEFAULT
 * perl-DateTime-Format-Flexible DEFAULT:DateTime-Format-Flexible CPAN-DEFAULT
 * perl-DateTime-Format-ISO8601 DEFAULT:DateTime-Format-ISO8601 CPAN-DEFAULT
 * perl-DateTime-Format-Oracle DEFAULT:DateTime-Format-Oracle CPAN-DEFAULT
 * perl-DateTime-Precise DEFAULT:DateTime-Precise CPAN-DEFAULT
 * perl-DateTime-TimeZone DEFAULT:DateTime-TimeZone CPAN-DEFAULT
 * perl-DateTime-Tiny DEFAULT:DateTime-Tiny CPAN-DEFAULT
 * perl-DB_File DEFAULT:DB_File CPAN-DEFAULT
 * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
 * perl-DBD-Mock DEFAULT:DBD-Mock CPAN-DEFAULT
 * perl-DBD-Multi DEFAULT:DBD-Multi CPAN-DEFAULT
 * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
 * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
 * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
 * perl-DBI DEFAULT:DBI CPAN-DEFAULT
 * perl-DBI-Dumper DEFAULT:DBI-Dumper CPAN-DEFAULT
 * perl-DBIx-DBSchema DEFAULT:DBIx-DBSchema CPAN-DEFAULT
 * perl-DBIx-POS DEFAULT:DBIx-POS CPAN-DEFAULT
 * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
 * perl-DBM-Deep DEFAULT:DBM-Deep CPAN-DEFAULT
 * perl-Debug-Client DEFAULT:Debug-Client CPAN-DEFAULT
 * perl-Declare-Constraints-Simple DEFAULT:Declare-Constraints-Simple CPAN-DEFAULT
 * perl-DepGen-Perl-Tests perl-DepGen-Perl-Tests-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/perl-DepGen-Perl-Tests/
 * perl-Devel-Autoflush DEFAULT:Devel-Autoflush CPAN-DEFAULT
 * perl-Devel-CallChecker DEFAULT:Devel-CallChecker CPAN-DEFAULT
 * perl-Devel-CallParser DEFAULT:Devel-CallParser CPAN-DEFAULT
 * perl-Devel-CheckOS DEFAULT:Devel-CheckOS CPAN-DEFAULT
 * perl-Devel-Comments DEFAULT:Devel-Comments CPAN-DEFAULT
 * perl-Devel-Declare-Parser DEFAULT:Devel-Declare-Parser CPAN-DEFAULT
 * perl-Devel-Dumpvar DEFAULT:Devel-Dumpvar CPAN-DEFAULT
 * perl-Devel-GlobalDestruction DEFAULT:Devel-GlobalDestruction CPAN-DEFAULT
 * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
 * perl-Devel-Refcount DEFAULT:Devel-Refcount CPAN-DEFAULT
 * perl-Devel-Size DEFAULT:Devel-Size CPAN-DEFAULT
 * perl-Devel-StringInfo DEFAULT:Devel-StringInfo CPAN-DEFAULT
 * perl-Devel-Symdump DEFAULT:Devel-Symdump CPAN-DEFAULT
 * perl-Devel-Trace DEFAULT:Devel-Trace CPAN-DEFAULT:Devel-Trace
 * perl-Digest-CRC DEFAULT:Digest-CRC CPAN-DEFAULT
 * perl-Digest-HMAC DEFAULT:Digest-HMAC CPAN-DEFAULT
 * perl-Digest-MD5 DEFAULT:Digest-MD5 CPAN-DEFAULT
 * perl-Digest-SHA DEFAULT:Digest-SHA CPAN-DEFAULT
 * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
 * perl-Directory-Scratch-Structured DEFAULT:Directory-Scratch-Structured CPAN-DEFAULT
 * perl-DynaLoader-Functions DEFAULT:DynaLoader-Functions CPAN-DEFAULT
 * perl-Email-Address DEFAULT:Email-Address CPAN-DEFAULT
 * perl-Encode DEFAULT:Encode CPAN-DEFAULT
 * perl-Encode-JP-Mobile DEFAULT:Encode-JP-Mobile CPAN-DEFAULT
 * perl-Encode-Locale DEFAULT:Encode-Locale CPAN-DEFAULT
 * perl-Env DEFAULT:Env CPAN-DEFAULT
 * perl-EV DEFAULT:EV CPAN-DEFAULT:EV
 * perl-Eval-Context DEFAULT:Eval-Context CPAN-DEFAULT
 * perl-Event-RPC DEFAULT:Event-RPC CPAN-DEFAULT
 * perl-experimental DEFAULT:experimental CPAN-DEFAULT
 * perl-Exporter DEFAULT:Exporter CPAN-DEFAULT
 * perl-Exporter-Declare DEFAULT:Exporter-Declare CPAN-DEFAULT
 * perl-ExtUtils-CChecker DEFAULT:ExtUtils-CChecker CPAN-DEFAULT
 * perl-ExtUtils-CppGuess DEFAULT:ExtUtils-CppGuess CPAN-DEFAULT
 * perl-ExtUtils-H2PM DEFAULT:ExtUtils-H2PM CPAN-DEFAULT:ExtUtils-H2PM
 * perl-ExtUtils-InferConfig DEFAULT:ExtUtils-InferConfig CPAN-DEFAULT
 * perl-ExtUtils-InstallPAR DEFAULT:ExtUtils-InstallPAR CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker DEFAULT:ExtUtils-MakeMaker CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage http://backpan.perl.org/authors/id/S/SM/SMPETERS/
 * perl-ExtUtils-Manifest DEFAULT:ExtUtils-Manifest CPAN-DEFAULT
 * perl-ExtUtils-ParseXS DEFAULT:ExtUtils-ParseXS CPAN-DEFAULT
 * perl-ExtUtils-Typemaps-Default DEFAULT:ExtUtils-Typemaps-Default CPAN-DEFAULT
 * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
 * perl-Fedora-Rebuild Fedora-Rebuild-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/Fedora-Rebuild/
 * perl-Feed-Find DEFAULT:Feed-Find CPAN-DEFAULT
 * perl-Fennec-Lite DEFAULT:Fennec-Lite CPAN-DEFAULT
 * perl-File-BaseDir DEFAULT:File-BaseDir CPAN-DEFAULT
 * perl-File-chdir DEFAULT:File-chdir CPAN-DEFAULT
 * perl-File-ChangeNotify DEFAULT:File-ChangeNotify CPAN-DEFAULT
 * perl-File-CheckTree DEFAULT:File-CheckTree CPAN-DEFAULT
 * perl-File-DesktopEntry DEFAULT:File-DesktopEntry CPAN-DEFAULT
 * perl-File-ExtAttr DEFAULT:File-ExtAttr CPAN-DEFAULT
 * perl-File-Fetch DEFAULT:File-Fetch CPAN-DEFAULT
 * perl-File-Find-Iterator DEFAULT:File-Find-Iterator CPAN-DEFAULT
 * perl-File-Find-Object DEFAULT:File-Find-Object CPAN-DEFAULT
 * perl-File-Find-Object-Rule DEFAULT:File-Find-Object-Rule CPAN-DEFAULT
 * perl-File-Find-Rule DEFAULT:File-Find-Rule CPAN-DEFAULT
 * perl-File-Find-Rule-VCS DEFAULT:File-Find-Rule-VCS CPAN-DEFAULT
 * perl-File-HomeDir DEFAULT:File-HomeDir CPAN-DEFAULT
 * perl-File-Listing DEFAULT:File-Listing CPAN-DEFAULT
 * perl-File-MimeInfo DEFAULT:File-MimeInfo CPAN-DEFAULT
 * perl-File-MMagic DEFAULT:File-MMagic CPAN-DEFAULT
 * perl-File-Next DEFAULT:File-Next CPAN-DEFAULT
 * perl-File-NFSLock DEFAULT:File-NFSLock CPAN-DEFAULT
 * perl-File-Path DEFAULT:File-Path CPAN-DEFAULT
 * perl-File-PathList DEFAULT:File-PathList CPAN-DEFAULT
 * perl-File-pushd DEFAULT:File-pushd CPAN-DEFAULT
 * perl-File-RsyncP DEFAULT:File-RsyncP CPAN-DEFAULT
 * perl-File-ShareDir DEFAULT:File-ShareDir CPAN-DEFAULT
 * perl-File-ShareDir-PAR DEFAULT:File-ShareDir-PAR CPAN-DEFAULT
 * perl-File-Tee DEFAULT:File-Tee CPAN-DEFAULT
 * perl-File-Temp DEFAULT:File-Temp CPAN-DEFAULT
 * perl-Filesys-Df DEFAULT:Filesys-Df CPAN-DEFAULT
 * perl-Filesys-Notify-Simple DEFAULT:Filesys-Notify-Simple CPAN-DEFAULT
 * perl-Filter DEFAULT:Filter CPAN-DEFAULT
 * perl-Flickr-API DEFAULT:Flickr-API CPAN-DEFAULT
 * perl-Flickr-Upload DEFAULT:Flickr-Upload CPAN-DEFAULT
 * perl-Font-TTF DEFAULT:Font-TTF CPAN-DEFAULT
 * perl-Font-TTFMetrics DEFAULT:Font-TTFMetrics CPAN-DEFAULT
 * perl-Format-Human-Bytes DEFAULT:Format-Human-Bytes CPAN-DEFAULT
 * perl-FreezeThaw DEFAULT:FreezeThaw CPAN-DEFAULT
 * perl-Frontier-RPC DEFAULT:Frontier-RPC CPAN-DEFAULT
 * perl-GD-Barcode DEFAULT:GD-Barcode CPAN-DEFAULT
 * perl-Gearman DEFAULT:Gearman CPAN-DEFAULT
 * perl-Gearman-Client-Async DEFAULT:Gearman-Client-Async CPAN-DEFAULT
 * perl-Gearman-Server DEFAULT:Gearman-Server CPAN-DEFAULT
 * perl-Getopt-Long DEFAULT:Getopt-Long CPAN-DEFAULT
 * perl-Getopt-Lucid DEFAULT:Getopt-Lucid CPAN-DEFAULT
 * perl-Glib-Object-Introspection DEFAULT:Glib-Object-Introspection CPAN-DEFAULT
 * perl-Gnome2 DEFAULT:Gnome2 CPAN-DEFAULT
 * perl-Gnome2-Canvas DEFAULT:Gnome2-Canvas CPAN-DEFAULT
 * perl-Gnome2-GConf DEFAULT:Gnome2-GConf CPAN-DEFAULT
 * perl-Gnome2-Print DEFAULT:Gnome2-Print CPAN-DEFAULT
 * perl-Gnome2-VFS DEFAULT:Gnome2-VFS CPAN-DEFAULT
 * perl-Gravatar-URL DEFAULT:Gravatar-URL CPAN-DEFAULT
 * perl-Growl-GNTP DEFAULT:Growl-GNTP CPAN-DEFAULT
 * perl-GStreamer DEFAULT:GStreamer CPAN-DEFAULT
 * perl-Gtk2 DEFAULT:Gtk2 CPAN-DEFAULT
 * perl-Gtk2-Ex-CalendarButton DEFAULT:Gtk2-Ex-CalendarButton CPAN-DEFAULT
 * perl-Gtk2-Ex-Carp DEFAULT:Gtk2-Ex-Carp CPAN-DEFAULT
 * perl-Gtk2-Ex-Dialogs DEFAULT:Gtk2-Ex-Dialogs CPAN-DEFAULT
 * perl-Gtk2-Ex-FormFactory DEFAULT:Gtk2-Ex-FormFactory CPAN-DEFAULT
 * perl-Gtk2-Ex-Simple-List DEFAULT:Gtk2-Ex-Simple-List CPAN-DEFAULT
 * perl-Gtk2-Ex-Utils DEFAULT:Gtk2-Ex-Utils CPAN-DEFAULT
 * perl-Gtk2-GladeXML DEFAULT:Gtk2-GladeXML CPAN-DEFAULT
 * perl-Gtk2-Notify DEFAULT:Gtk2-Notify CPAN-DEFAULT
 * perl-Gtk2-Sexy DEFAULT:Gtk2-Sexy CPAN-DEFAULT
 * perl-Gtk2-SourceView DEFAULT:Gtk2-SourceView CPAN-DEFAULT
 * perl-Gtk2-Spell DEFAULT:Gtk2-Spell CPAN-DEFAULT
 * perl-Gtk2-TrayIcon DEFAULT:Gtk2-TrayIcon CPAN-DEFAULT
 * perl-Gtk3 DEFAULT:Gtk3 CPAN-DEFAULT
 * perl-Guard DEFAULT:Guard CPAN-DEFAULT
 * perl-Ham-Reference-QRZ DEFAULT:Ham-Reference-QRZ CPAN-DEFAULT
 * perl-Hardware-Verilog-Parser DEFAULT:Hardware-Verilog-Parser CPAN-DEFAULT
 * perl-Hardware-Vhdl-Lexer DEFAULT:Hardware-Vhdl-Lexer CPAN-DEFAULT
 * perl-Hardware-Vhdl-Parser DEFAULT:Hardware-Vhdl-Parser CPAN-DEFAULT
 * perl-Hardware-Vhdl-Tidy DEFAULT:Hardware-Vhdl-Tidy CPAN-DEFAULT
 * perl-Hash-Case DEFAULT:Hash-Case CPAN-DEFAULT
 * perl-Hash-MultiValue DEFAULT:Hash-MultiValue CPAN-DEFAULT
 * perl-Hash-WithDefaults DEFAULT:Hash-WithDefaults CPAN-DEFAULT
 * perl-Heap DEFAULT:Heap CPAN-DEFAULT
 * perl-HTML-Encoding DEFAULT:HTML-Encoding CPAN-DEFAULT
 * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered CPAN-DEFAULT
 * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
 * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
 * perl-HTML-PrettyPrinter DEFAULT:HTML-PrettyPrinter CPAN-DEFAULT
 * perl-HTML-StripScripts DEFAULT:HTML-StripScripts CPAN-DEFAULT
 * perl-HTML-StripScripts-Parser DEFAULT:HTML-StripScripts-Parser CPAN-DEFAULT
 * perl-HTML-Tagset DEFAULT:HTML-Tagset CPAN-DEFAULT
 * perl-HTML-Template DEFAULT:HTML-Template CPAN-DEFAULT
 * perl-HTML-Tree DEFAULT:HTML-Tree CPAN-DEFAULT
 * perl-HTTP-Cookies DEFAULT:HTTP-Cookies CPAN-DEFAULT
 * perl-HTTP-Daemon DEFAULT:HTTP-Daemon CPAN-DEFAULT
 * perl-HTTP-Date DEFAULT:HTTP-Date CPAN-DEFAULT
 * perl-HTTP-Message DEFAULT:HTTP-Message CPAN-DEFAULT
 * perl-HTTP-Negotiate DEFAULT:HTTP-Negotiate CPAN-DEFAULT
 * perl-HTTP-Parser DEFAULT:HTTP-Parser CPAN-DEFAULT
 * perl-HTTP-ProxyAutoConfig DEFAULT:HTTP-ProxyAutoConfig CPAN-DEFAULT
 * perl-HTTP-Tiny DEFAULT:HTTP-Tiny CPAN-DEFAULT
 * perl-Inline DEFAULT:Inline CPAN-DEFAULT
 * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
 * perl-IO-Capture-Extended DEFAULT:IO-Capture-Extended CPAN-DEFAULT
 * perl-IO-Compress DEFAULT:IO-Compress CPAN-DEFAULT
 * perl-IO-Digest DEFAULT:IO-Digest CPAN-DEFAULT
 * perl-IO-HTML DEFAULT:IO-HTML CPAN-DEFAULT
 * perl-IO-InSitu DEFAULT:IO-InSitu CPAN-DEFAULT
 * perl-IO-Prompt DEFAULT:IO-Prompt CPAN-DEFAULT
 * perl-IO-Socket-IP DEFAULT:IO-Socket-IP CPAN-DEFAULT
 * perl-IO-Socket-PortState DEFAULT:IO-Socket-PortStat CPAN-DEFAULT
 * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
 * perl-IO-TieCombine DEFAULT:IO-TieCombine CPAN-DEFAULT
 * perl-IPC-Cmd DEFAULT:IPC-Cmd CPAN-DEFAULT
 * perl-IPTables-libiptc DEFAULT:IPTables-libiptc CPAN-DEFAULT
 * perl-IRC-Utils DEFAULT:IRC-Utils CPAN-DEFAULT
 * perl-JavaScript-Beautifier DEFAULT:JavaScript-Beautifier CPAN-DEFAULT
 * perl-JavaScript-Minifier DEFAULT:JavaScript-Minifier CPAN-DEFAULT
 * perl-JavaScript-Minifier-XS DEFAULT:JavaScript-Minifier-XS CPAN-DEFAULT
 * perl-Jemplate DEFAULT:Jemplate CPAN-DEFAULT
 * perl-JSON-Path DEFAULT:JSON-Path CPAN-DEFAULT:JSON-Path
 * perl-JSON-Pointer DEFAULT:JSON-Pointer CPAN-DEFAULT
 * perl-L DEFAULT:L CPAN-DEFAULT
 * perl-Language-Expr DEFAULT:Language-Expr CPAN-DEFAULT
 * perl-Language-Functional DEFAULT:Language-Functional CPAN-DEFAULT
 * perl-Language-Prolog-Sugar DEFAULT:Language-Prolog-Sugar CPAN-DEFAULT
 * perl-Language-Prolog-Types DEFAULT:Language-Prolog-Types CPAN-DEFAULT
 * perl-Language-Prolog-Yaswi DEFAULT:Language-Prolog-Yaswi CPAN-DEFAULT
 * perl-LDAP DEFAULT:ldap CPAN-DEFAULT:perl-ldap
 * perl-Lexical-SealRequireHints DEFAULT:Lexical-SealRequireHints CPAN-DEFAULT
 * perl-Lexical-Var DEFAULT:Lexical-Var CPAN-DEFAULT
 * perl-lib-abs DEFAULT:lib-abs CPAN-DEFAULT
 * perl-libwhisker2 DEFAULT:libwhisker2 SF-DEFAULT:whisker
 * perl-libwww-perl DEFAULT:libwww-perl CPAN-DEFAULT
 * perl-libxml-perl DEFAULT:libxml-perl CPAN-DEFAULT
 * perl-Lingua-EN-Numbers DEFAULT:Lingua-EN-Numbers CPAN-DEFAULT
 * perl-Lingua-EN-Numbers-Easy DEFAULT:Lingua-EN-Numbers-Easy CPAN-DEFAULT
 * perl-Lingua-EN-Numbers-Ordinate DEFAULT:Lingua-EN-Numbers-Ordinate CPAN-DEFAULT
 * perl-Linux-Inotify2 DEFAULT:Linux-Inotify2 CPAN-DEFAULT
 * perl-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT
 * perl-List-AllUtils DEFAULT:List-AllUtils CPAN-DEFAULT
 * perl-List-Compare DEFAULT:List-Compare CPAN-DEFAULT
 * perl-Locale-Codes DEFAULT:Locale-Codes CPAN-DEFAULT
 * perl-Locale-Maketext DEFAULT:Locale-Maketext CPAN-DEFAULT
 * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
 * perl-Locale-SubCountry DEFAULT:Locale-SubCountry CPAN-DEFAULT
 * perl-Log-Contextual DEFAULT:Log-Contextual CPAN-DEFAULT
 * perl-Log-Dispatch-Config DEFAULT:Log-Dispatch-Config CPAN-DEFAULT
 * perl-Log-Handler DEFAULT:Log-Handler CPAN-DEFAULT
 * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
 * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT
 * perl-Log-Message DEFAULT:Log-Message CPAN-DEFAULT
 * perl-Log-Message-Simple DEFAULT:Log-Message-Simple CPAN-DEFAULT
 * perl-LWP-Authen-Wsse DEFAULT:LWP-Authen-Wsse CPAN-DEFAULT
 * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
 * perl-LWP-Protocol-https DEFAULT:LWP-Protocol-https CPAN-DEFAULT
 * perl-Mail-MboxParser DEFAULT:Mail-MboxParser CPAN-DEFAULT
 * perl-Makefile-DOM DEFAULT:Makefile-DOM CPAN-DEFAULT
 * perl-Marpa-XS DEFAULT:Marpa-XS CPAN-DEFAULT
 * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
 * perl-Math-Clipper DEFAULT:Math-Clipper CPAN-DEFAULT
 * perl-Math-ConvexHull DEFAULT:Math-ConvexHull CPAN-DEFAULT
 * perl-Math-ConvexHull-MonotoneChain DEFAULT:Math-ConvexHull-MonotoneChain CPAN-DEFAULT
 * perl-Math-Factor-XS DEFAULT:Math-Factor-XS CPAN-DEFAULT
 * perl-Math-Geometry-Voronoi DEFAULT:Math-Geometry-Voronoi CPAN-DEFAULT
 * perl-Math-Libm DEFAULT:Math-Libm CPAN-DEFAULT
 * perl-Math-MatrixReal DEFAULT:Math-MatrixReal CPAN-DEFAULT
 * perl-Math-NumSeq DEFAULT:Math-NumSeq  CPAN-DEFAULT
 * perl-Math-PlanePath DEFAULT:Math-PlanePath  CPAN-DEFAULT
 * perl-Math-Prime-XS DEFAULT:Math-Prime-XS CPAN-DEFAULT
 * perl-Math-Random-MT-Auto DEFAULT:Math-Random-MT-Auto CPAN-DEFAULT
 * perl-Math-Symbolic DEFAULT:Math-Symbolic CPAN-DEFAULT
 * perl-Math-Vec DEFAULT:Math-Vec CPAN-DEFAULT
 * perl-Meta-Builder DEFAULT:Meta-Builder CPAN-DEFAULT
 * perl-MIME-Charset DEFAULT:MIME-Charset CPAN-DEFAULT
 * perl-MIME-EncWords DEFAULT:MIME-EncWords CPAN-DEFAULT
 * perl-MIME-Lite DEFAULT:MIME-Lite CPAN-DEFAULT
 * perl-MIME-Lite-HTML DEFAULT:MIME-Lite-HTML CPAN-DEFAULT
 * perl-ModelSim-List DEFAULT:ModelSim-List CPAN-DEFAULT
 * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
 * perl-Module-Build-WithXSpp DEFAULT:Module-Build-WithXSpp CPAN-DEFAULT
 * perl-Module-CPANTS-Analyse DEFAULT:Module-CPANTS-Analyse CPAN-DEFAULT
 * perl-Module-Depends DEFAULT:Module-Depends CPAN-DEFAULT
 * perl-Module-Extract DEFAULT:Module-Extract CPAN-DEFAULT
 * perl-Module-ExtractUse DEFAULT:Module-ExtractUse CPAN-DEFAULT
 * perl-Module-Inspector DEFAULT:Module-Inspector CPAN-DEFAULT
 * perl-Module-Install-AuthorRequires DEFAULT:Module-Install-AuthorRequires CPAN-DEFAULT
 * perl-Module-Install-AuthorTests DEFAULT:Module-Install-AuthorTests CPAN-DEFAULT
 * perl-Module-Install-AutoLicense DEFAULT:Module-Install-AutoLicense CPAN-DEFAULT
 * perl-Module-Install-AutoManifest DEFAULT:Module-Install-AutoManifest CPAN-DEFAULT
 * perl-Module-Install-ExtraTests DEFAULT:Module-Install-ExtraTests CPAN-DEFAULT
 * perl-Module-Install-GithubMeta DEFAULT:Module-Install-GithubMeta CPAN-DEFAULT
 * perl-Module-Install-ManifestSkip DEFAULT:Module-Install-ManifestSkip CPAN-DEFAULT
 * perl-Module-Install-ReadmeFromPod DEFAULT:Module-Install-ReadmeFromPod CPAN-DEFAULT
 * perl-Module-Install-ReadmeMarkdownFromPod DEFAULT:Module-Install-ReadmeMarkdownFromPod CPAN-DEFAULT
 * perl-Module-Install-Repository DEFAULT:Module-Install-Repository CPAN-DEFAULT
 * perl-Module-Install-XSUtil DEFAULT:Module-Install-XSUtil CPAN-DEFAULT
 * perl-Module-Load DEFAULT:Module-Load CPAN-DEFAULT
 * perl-Module-Load-Conditional DEFAULT:Module-Load-Conditional CPAN-DEFAULT
 * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
 * perl-Module-Manifest-Skip DEFAULT:Module-Manifest-Skip CPAN-DEFAULT
 * perl-Module-Math-Depends DEFAULT:Module-Math-Depends CPAN-DEFAULT
 * perl-Module-Package DEFAULT:Module-Package CPAN-DEFAULT
 * perl-Module-Pluggable DEFAULT:Module-Pluggable CPAN-DEFAULT
 * perl-Module-Runtime DEFAULT:Module-Runtime CPAN-DEFAULT
 * perl-Module-ScanDeps DEFAULT:Module-ScanDeps CPAN-DEFAULT
 * perl-Module-Signature DEFAULT:Module-Signature CPAN-DEFAULT
 * perl-Module-Starter DEFAULT:Module-Starter CPAN-DEFAULT
 * perl-Module-Versions-Report DEFAULT:Module-Versions-Report CPAN-DEFAULT
 * perl-MogileFS-Client DEFAULT:MogileFS-Client CPAN-DEFAULT
 * perl-MogileFS-Utils DEFAULT:MogileFS-Utils CPAN-DEFAULT
 * perl-mogilefs-server DEFAULT:mogilefs-server CPAN-DEFAULT
 * perl-Mon CPAN-DEFAULT CPAN-DEFAULT
 * perl-MongoDB DEFAULT:MongoDB CPAN-DEFAULT
 * perl-Monotone-AutomateStdio DEFAULT:Monotone-AutomateStdio CPAN-DEFAULT
 * perl-MooseX-AttributeShortcuts DEFAULT:MooseX-AttributeShortcuts CPAN-DEFAULT
 * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
 * perl-MooseX-CoercePerAttribute DEFAULT:MooseX-CoercePerAttribute CPAN-DEFAULT
 * perl-MooseX-GlobRef DEFAULT:MooseX-GlobRef CPAN-DEFAULT
 * perl-MooseX-MarkAsMethods DEFAULT:MooseX-MarkAsMethods CPAN-DEFAULT
 * perl-MooseX-Types-DateTime-ButMaintained DEFAULT:MooseX-Types-DateTime-ButMaintained CPAN-DEFAULT
 * perl-MooseX-Types-DateTime-MoreCoercions DEFAULT:MooseX-Types-DateTime-MoreCoercions CPAN-DEFAULT
 * perl-MooseX-Types-DateTimeX DEFAULT:MooseX-Types-DateTimeX CPAN-DEFAULT
 * perl-Mozilla-CA DEFAULT:Mozilla-CA CPAN-DEFAULT
 * perl-MP3-Info DEFAULT:MP3-Info CPAN-DEFAULT
 * perl-Nagios-Plugin DEFAULT:Nagios-Plugin CPAN-DEFAULT
 * perl-Nagios-Plugin-WWW-Mechanize DEFAULT:Nagios-Plugin-WWW-Mechanize CPAN-DEFAULT
 * perl-NetAddr-IP DEFAULT:NetAddr-IP CPAN-DEFAULT
 * perl-Net-Amazon-EC2 CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-Amazon-EC2-Metadata CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-ARP DEFAULT:Net-ARP CPAN-DEFAULT
 * perl-Net-CUPS DEFAULT:Net-CUPS CPAN-DEFAULT
 * perl-Net-DBus DEFAULT:Net-DBus CPAN-DEFAULT
 * perl-Net-DBus-GLib DEFAULT:Net-DBus-GLib CPAN-DEFAULT
 * perl-Net-DNS DEFAULT:Net-DNS CPAN-DEFAULT
 * perl-Net-Dropbox-API DEFAULT:Net-Dropbox-API CPAN-DEFAULT
 * perl-Net-eBay DEFAULT:Net-eBay CPAN-DEFAULT
 * perl-Net-GitHub DEFAULT:Net-GitHub CPAN-DEFAULT
 * perl-Net-Google-AuthSub DEFAULT:Net-Google-AuthSub CPAN-DEFAULT
 * perl-Net-HTTP DEFAULT:Net-HTTP CPAN-DEFAULT
 * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
 * perl-Net-IP-Minimal DEFAULT:Net-IP-Minimal CPAN-DEFAULT
 * perl-Net-IRC DEFAULT:Net-IRC CPAN-DEFAULT
 * perl-Net-Jabber DEFAULT:Net-Jabber CPAN-DEFAULT
 * perl-Net-Lite-FTP DEFAULT:Net-Lite-FTP CPAN-DEFAULT
 * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
 * perl-Net-Random DEFAULT:Net-Random CPAN-DEFAULT
 * perl-Net-Server-Coro DEFAULT:Net-Server-Coro CPAN-DEFAULT:Net-Server-Coro
 * perl-Net-SMTP-SSL DEFAULT:Net-SMTP-SSL CPAN-DEFAULT
 * perl-Net-SSH2 DEFAULT:Net-SSH2 CPAN-DEFAULT
 * perl-Net-Stomp CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-Twitter DEFAULT:Net-Twitter CPAN-DEFAULT
 * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
 * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
 * perl-Net-XMPP DEFAULT:Net-XMPP CPAN-DEFAULT
 * perl-Number-WithError DEFAULT:Number-WithError CPAN-DEFAULT
 * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
 * perl-Object-InsideOut DEFAULT:Object-InsideOut CPAN-DEFAULT
 * perl-Object-Tiny DEFAULT:Object-Tiny CPAN-DEFAULT
 * perl-Olson-Abbreviations DEFAULT:Olson-Abbreviations CPAN-DEFAULT
 * perl-OpenGL CPAN-DEFAULT CPAN-DEFAULT
 * perl-OpenOffice-UNO CPAN-DEFAULT CPAN-DEFAULT
 * perl-ORLite DEFAULT:ORLite CPAN-DEFAULT
 * perl-ORLite-Migrate DEFAULT:ORLite-Migrate CPAN-DEFAULT
 * perl-Ouch DEFAULT:Ouch CPAN-DEFAULT
 * perl-Padre DEFAULT:Padre CPAN-DEFAULT
 * perl-Paper-Specs DEFAULT:Paper-Specs CPAN-DEFAULT
 * perl-PAR DEFAULT:PAR CPAN-DEFAULT
 * perl-PAR-Packer DEFAULT:PAR-Packer CPAN-DEFAULT
 * perl-Params-Check DEFAULT:Params-Check CPAN-DEFAULT
 * perl-Parse-ErrorString-Perl DEFAULT:Parse-ErrorString-Perl CPAN-DEFAULT
 * perl-Parse-ExuberantCTags DEFAULT:Parse-ExuberantCTags CPAN-DEFAULT
 * perl-Parse-RecDescent DEFAULT:Parse-RecDescent CPAN-DEFAULT
 * perl-Parse-Yapp DEFAULT:Parse-Yapp CPAN-DEFAULT
 * perl-PathTools DEFAULT:PathTools CPAN-DEFAULT
 * perl-Path-FindDev DEFAULT:Path-FindDev CPAN-DEFAULT
 * perl-Path-IsDev DEFAULT:Path-IsDev CPAN-DEFAULT
 * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
 * perl-PDF-Haru DEFAULT:PDF-Haru CPAN-DEFAULT
 * perl-PDF-Reuse DEFAULT:PDF-Reuse CPAN-DEFAULT
 * perl-PDL DEFAULT:PDL CPAN-DEFAULT
 * perl-Perlilog DEFAULT:Perlilog CPAN-DEFAULT
 * perl-Perlbal-XS-HTTPHeaders DEFAULT:Perlbal-XS-HTTPHeaders CPAN-DEFAULT
 * perl-Perl-Critic DEFAULT:Perl-Critic CPAN-DEFAULT
 * perl-Perl-Critic-Bangs DEFAULT:Perl-Critic-Bangs CPAN-DEFAULT
 * perl-Perl-Critic-Compatibility DEFAULT:Perl-Critic-Compatibility CPAN-DEFAULT
 * perl-Perl-Critic-Deprecated DEFAULT:Perl-Critic-Deprecated CPAN-DEFAULT
 * perl-Perl-Critic-Dynamic DEFAULT:Perl-Critic-Dynamic CPAN-DEFAULT
 * perl-Perl-Critic-Lax DEFAULT:Perl-Critic-Lax CPAN-DEFAULT
 * perl-Perl-Critic-More DEFAULT:Perl-Critic-More CPAN-DEFAULT
 * perl-Perl-Critic-Nits DEFAULT:Perl-Critic-Nits CPAN-DEFAULT
 * perl-Perl-Critic-PetPeeves-JTRAMMELL DEFAULT:Perl-Critic-PetPeeves-JTRAMMELL CPAN-DEFAULT
 * perl-Perl-Critic-Pulp DEFAULT:Perl-Critic-Pulp CPAN-DEFAULT
 * perl-Perl-Critic-Storable DEFAULT:Perl-Critic-Storable CPAN-DEFAULT
 * perl-Perl-Critic-StricterSubs DEFAULT:Perl-Critic-StricterSubs CPAN-DEFAULT
 * perl-Perl-Critic-Swift DEFAULT:Perl-Critic-Swift CPAN-DEFAULT
 * perl-Perl-Critic-Tics DEFAULT:Perl-Critic-Tics CPAN-DEFAULT
 * perl-Perl-Metrics-Simple DEFAULT:Perl-Metrics-Simple CPAN-DEFAULT
 * perl-Perl6-Slurp DEFAULT:Perl6-Slurp CPAN-DEFAULT
 * perl-PerlIO-eol DEFAULT:PerlIO-eol CPAN-DEFAULT
 * perl-PerlIO-Layers DEFAULT:PerlIO-Layers CPAN-DEFAULT
 * perl-PerlIO-locale DEFAULT:PerlIO-locale CPAN-DEFAULT
 * perl-PerlIO-utf8_strict DEFAULT:PerlIO-utf8_strict CPAN-DEFAULT
 * perl-PerlIO-via-dynamic DEFAULT:PerlIO-via-dynamic CPAN-DEFAULT
 * perl-PerlIO-via-symlink DEFAULT:PerlIO-via-symlink CPAN-DEFAULT
 * perl-pip DEFAULT:pip CPAN-DEFAULT
 * perl-Plack-Middleware-Deflater DEFAULT:Plack-Middleware-Deflater CPAN-DEFAULT
 * perl-PlRPC DEFAULT:PlRPC CPAN-DEFAULT
 * perl-Pod-Abstract DEFAULT:Pod-Abstract CPAN-DEFAULT
 * perl-Pod-Checker DEFAULT:Pod-Checker CPAN-DEFAULT
 * perl-Pod-Coverage DEFAULT:Pod-Coverage CPAN-DEFAULT
 * perl-Pod-LaTeX DEFAULT:Pod-LaTeX CPAN-DEFAULT
 * perl-Pod-Markdown DEFAULT:Pod-Markdown CPAN-DEFAULT
 * perl-Pod-MinimumVersion DEFAULT:Pod-MinimumVersion CPAN-DEFAULT
 * perl-Pod-Parser DEFAULT:Pod-Parser CPAN-DEFAULT
 * perl-Pod-Perldoc DEFAULT:Pod-Perldoc CPAN-DEFAULT
 * perl-Pod-Simple DEFAULT:Pod-Simple CPAN-DEFAULT
 * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
 * perl-Pod-Spell-CommonMistakes DEFAULT:Pod-Spell-CommonMistakes CPAN-DEFAULT
 * perl-Pod-Strip DEFAULT:Pod-Strip CPAN-DEFAULT
 * perl-Pod-Usage DEFAULT:Pod-Usage CPAN-DEFAULT
 * perl-pod2pdf DEFAULT:pod2pdf CPAN-DEFAULT
 * perl-POD2-Base DEFAULT:POD2-Base CPAN-DEFAULT
 * perl-podlators DEFAULT:podlators CPAN-DEFAULT
 * perl-podlinkcheck DEFAULT:podlinkcheck CPAN-DEFAULT
 * perl-POE DEFAULT:POE CPAN-DEFAULT
 * perl-POE-API-Peek DEFAULT:POE-API-Peek CPAN-DEFAULT
 * perl-POE-Component-Child DEFAULT:POE-Component-Child CPAN-DEFAULT
 * perl-POE-Component-Client-DNS DEFAULT:POE-Component-Client-DNS CPAN-DEFAULT
 * perl-POE-Component-Client-HTTP DEFAULT:POE-Component-Client-HTTP CPAN-DEFAULT
 * perl-POE-Component-Client-Keepalive DEFAULT:POE-Component-Client-Keepalive CPAN-DEFAULT
 * perl-POE-Component-Client-LDAP DEFAULT:POE-Component-Client-LDAP CPAN-DEFAULT
 * perl-POE-Component-DBIAgent DEFAULT:POE-Component-DBIAgent CPAN-DEFAULT
 * perl-POE-Component-IRC DEFAULT:POE-Component-IRC CPAN-DEFAULT
 * perl-POE-Component-JobQueue DEFAULT:POE-Component-JobQueue CPAN-DEFAULT
 * perl-POE-Component-Logger DEFAULT:POE-Component-Logger CPAN-DEFAULT
 * perl-POE-Component-Pluggable DEFAULT:POE-Component-Pluggable CPAN-DEFAULT
 * perl-POE-Component-Resolver DEFAULT:POE-Component-Resolver CPAN-DEFAULT
 * perl-POE-Component-Server-HTTP DEFAULT:POE-Component-Server-HTTP CPAN-DEFAULT
 * perl-POE-Component-Server-SimpleHTTP DEFAULT:POE-Component-Server-SimpleHTTP CPAN-DEFAULT
 * perl-POE-Component-Server-SOAP DEFAULT:POE-Component-Server-SOAP CPAN-DEFAULT
 * perl-POE-Component-Server-XMLRPC DEFAULT:POE-Component-Server-XMLRPC CPAN-DEFAULT
 * perl-POE-Component-SimpleDBI DEFAULT:POE-Component-SimpleDBI CPAN-DEFAULT
 * perl-POE-Component-SimpleLog DEFAULT:POE-Component-SimpleLog CPAN-DEFAULT
 * perl-POE-Component-SNMP DEFAULT:POE-Component-SNMP CPAN-DEFAULT
 * perl-POE-Component-SSLify DEFAULT:POE-Component-SSLify CPAN-DEFAULT
 * perl-POE-Filter-HTTP-Parser DEFAULT:POE-Filter-HTTP-Parser CPAN-DEFAULT
 * perl-POE-Filter-IRCD DEFAULT:POE-Filter-IRCD CPAN-DEFAULT
 * perl-POE-Filter-Zlib DEFAULT:POE-Filter-Zlib CPAN-DEFAULT
 * perl-POE-Test-Loops DEFAULT:POE-Test-Loops CPAN-DEFAULT
 * perl-POE-Wheel-Null DEFAULT:POE-Wheel-Null CPAN-DEFAULT
 * perl-POSIX-AtFork DEFAULT:POSIX-AtFork CPAN-DEFAULT
 * perl-POSIX-strptime CPAN-DEFAULT CPAN-DEFAULT
 * perl-PPI-PowerToys DEFAULT:PPI-PowerToys CPAN-DEFAULT
 * perl-PPI-XS DEFAULT:PPI-XS CPAN-DEFAULT
 * perl-PPIx-EditorTools DEFAULT:PPIx-EditorTools CPAN-DEFAULT
 * perl-PPIx-Regexp DEFAULT:PPIx-Regexp CPAN-DEFAULT
 * perl-Probe-Perl DEFAULT:Probe-Perl CPAN-DEFAULT
 * perl-Proc-SyncExec DEFAULT:Proc-SyncExec CPAN-DEFAULT
 * perl-re-engine-PCRE DEFAULT:re-engine-PCRE CPAN-DEFAULT
 * perl-Regexp-Grammars DEFAULT:Regexp-Grammars CPAN-DEFAULT
 * perl-Regexp-Shellish DEFAULT:Regexp-Shellish CPAN-DEFAULT
 * perl-Rose-DB DEFAULT:Rose-DB CPAN-DEFAULT
 * perl-Rose-DB-Object DEFAULT:Rose-DB-Object CPAN-DEFAULT
 * perl-Rose-Object DEFAULT:Rose-Object CPAN-DEFAULT
 * perl-Rose-DateTime DEFAULT:Rose-DateTime CPAN-DEFAULT
 * perl-RPC-XML DEFAULT:RPC-XML CPAN-DEFAULT
 * perl-rpm-build-perl DEFAULT:rpm-build-perl CPAN-DEFAULT
 * perl-RPM-Specfile DEFAULT:RPM-Specfile CPAN-DEFAULT
 * perl-RPM-VersionCompare RPM-VersionCompare-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/RPM-VersionCompare/
 * perl-RPM2 DEFAULT:RPM2 CPAN-DEFAULT
 * perl-RT-Client-REST DEFAULT:RT-Client-REST CPAN-DEFAULT
 * perl-Scalar-Construct DEFAULT:Scalar-Construct CPAN-DEFAULT
 * perl-Scriptalicious DEFAULT:Scriptalicious CPAN-DEFAULT
 * perl-Set-Array DEFAULT:Set-Array CPAN-DEFAULT
 * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
 * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
 * perl-Shipwright DEFAULT:Shipwright CPAN-DEFAULT
 * perl-Smart-Comments DEFAULT:Smart-Comments CPAN-DEFAULT
 * perl-smartmatch DEFAULT:smartmatch CPAN-DEFAULT
 * perl-smartmatch-engine-core DEFAULT:smartmatch-engine-core CPAN-DEFAULT
 * perl-SNMP-Info DEFAULT:SNMP-Info CPAN-DEFAULT
 * perl-SOAP-Lite DEFAULT:SOAP-Lite CPAN-DEFAULT
 * perl-Socket DEFAULT:Socket CPAN-DEFAULT
 * perl-Socket-MsgHdr DEFAULT:Socket-MsgHdr CPAN-DEFAULT
 * perl-Socket-Netlink DEFAULT:Socket-Netlink CPAN-DEFAULT:Socket-Netlink
 * perl-Socket-Netlink-Route DEFAULT:Socket-Netlink-Route CPAN-DEFAULT:Socket-Netlink-Route
 * perl-Software-License DEFAULT:Software-License CPAN-DEFAULT
 * perl-SOOT DEFAULT:SOOT CPAN-DEFAULT
 * perl-Sort-Naturally DEFAULT:Sort-Naturally CPAN-DEFAULT
 * perl-Spellunker DEFAULT:Spellunker CPAN-DEFAULT
 * perl-Spreadsheet-ParseExcel-Simple DEFAULT:Spreadsheet-ParseExcel-Simple CPAN-DEFAULT
 * perl-Spreadsheet-WriteExcel-Simple DEFAULT:Spreadsheet-WriteExcel-Simple CPAN-DEFAULT
 * perl-SQL-Library DEFAULT:SQL-Library CPAN-DEFAULT
 * perl-SQL-ReservedWords DEFAULT:SQL-ReservedWords CPAN-DEFAULT
 * perl-SQL-Shell DEFAULT:SQL-Shell CPAN-DEFAULT
 * perl-SQL-Statement DEFAULT:SQL-Statement CPAN-DEFAULT
 * perl-Statistics-Basic DEFAULT:Statistics-Basic CPAN-DEFAULT
 * perl-Statistics-Contingency DEFAULT:Statistics-Contingency CPAN-DEFAULT:Statistics-Contingency
 * perl-STD DEFAULT:STD CPAN-DEFAULT
 * perl-Storable DEFAULT:Storable CPAN-DEFAULT
 * perl-String-Base DEFAULT:String-Base CPAN-DEFAULT
 * perl-String-CRC32 DEFAULT:String-CRC32 CPAN-DEFAULT
 * perl-String-Escape DEFAULT:String-Escape CPAN-DEFAULT
 * perl-Sub-Install DEFAULT:Sub-Install CPAN-DEFAULT
 * perl-SVK DEFAULT:SVK CPAN-DEFAULT
 * perl-syntax DEFAULT:syntax CPAN-DEFAULT
 * perl-Syntax-Feature-Loop DEFAULT:Syntax-Feature-Loop CPAN-DEFAULT
 * perl-Syntax-Highlight-Engine-Kate DEFAULT:Syntax-Highlight-Engine-Kate CPAN-DEFAULT
 * perl-Syntax-Highlight-Perl6 DEFAULT:Syntax-Highlight-Perl6 CPAN-DEFAULT
 * perl-Syntax-Keyword-Junction DEFAULT:Syntax-Keyword-Junction CPAN-DEFAULT
 * perl-Sys-CPU Sys-CPU-(.*?).tar.gz search.cpan.org/CPAN/authors/id/M/MZ/MZSANFORD/
 * perl-Sys-Syscall DEFAULT:Sys-Syscall CPAN-DEFAULT
 * perl-Sys-Syslog DEFAULT:Sys-Syslog CPAN-DEFAULT
 * perl-Sys-Virt DEFAULT:Sys-Virt CPAN-DEFAULT
 * perl-SystemC-Vregs DEFAULT:SystemC-Vregs CPAN-DEFAULT
 * perl-TAP-Formatter-HTML DEFAULT:TAP-Formatter-HTML CPAN-DEFAULT
 * perl-TAP-Formatter-JUnit DEFAULT:TAP-Formatter-JUnit CPAN-DEFAULT
 * perl-TAP-SimpleOutput DEFAULT:TAP-SimpleOutput CPAN-DEFAULT
 * perl-Tapper DEFAULT:Tapper CPAN-DEFAULT
 * perl-Task-Kensho-Exceptions DEFAULT:Task-Kensho-Exceptions CPAN-DEFAULT
 * perl-Task-Kensho-Logging DEFAULT:Task-Kensho-Logging CPAN-DEFAULT
 * perl-Task-Kensho-OOP DEFAULT:Task-Kensho-OOP CPAN-DEFAULT
 * perl-Task-Kensho-Toolchain DEFAULT:Task-Kensho-Toolchain CPAN-DEFAULT
 * perl-Task-Moose DEFAULT:Task-Moose CPAN-DEFAULT
 * perl-Task-Perl-Critic DEFAULT:Task-Perl-Critic CPAN-DEFAULT
 * perl-Template-Alloy DEFAULT:Template-Alloy CPAN-DEFAULT
 * perl-Template-Tiny DEFAULT:Template-Tiny CPAN-DEFAULT
 * perl-TermReadKey DEFAULT:TermReadKey CPAN-DEFAULT
 * perl-Term-Completion DEFAULT:Term-Completion CPAN-DEFAULT
 * perl-Term-ProgressBar DEFAULT:Term-ProgressBar CPAN-DEFAULT
 * perl-Term-ReadLine-Perl DEFAULT:Term-ReadLine-Perl CPAN-DEFAULT
 * perl-Term-Size DEFAULT:Term-Size CPAN-DEFAULT
 * perl-Term-UI DEFAULT:Term-UI CPAN-DEFAULT
 * perl-Test-Able DEFAULT:Test-Able CPAN-DEFAULT
 * perl-Test-Able-Runner DEFAULT:Test-Able-Runner CPAN-DEFAULT
 * perl-Test-Apocalypse DEFAULT:Test-Apocalypse CPAN-DEFAULT
 * perl-Test-AutoBuild DEFAULT:Test-AutoBuild CPAN-DEFAULT
 * perl-Test-AutoLoader DEFAULT:Test-AutoLoader CPAN-DEFAULT
 * perl-Test-Block DEFAULT:Test-Block CPAN-DEFAULT
 * perl-Test-Class DEFAULT:Test-Class CPAN-DEFAULT
 * perl-Test-Compile DEFAULT:Test-Compile CPAN-DEFAULT
 * perl-Test-Dependencies DEFAULT:Test-Dependencies CPAN-DEFAULT
 * perl-Test-DBICSchemaLoaderDigest DEFAULT:Test-DBICSchemaLoaderDigest CPAN-DEFAULT
 * perl-Test-Dir DEFAULT:Test-Dir CPAN-DEFAULT
 * perl-Test-DistManifest DEFAULT:Test-DistManifest CPAN-DEFAULT
 * perl-Test-Email DEFAULT:Test-Email CPAN-DEFAULT
 * perl-Test-Harness DEFAULT:Test-Harness CPAN-DEFAULT
 * perl-Test-Harness-Straps DEFAULT:Test-Harness-Straps CPAN-DEFAULT
 * perl-Test-HexString DEFAULT:Test-HexString CPAN-DEFAULT:Test-HexString
 * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
 * perl-Test-LectroTest DEFAULT:Test-LectroTest CPAN-DEFAULT
 * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
 * perl-Test-Module-Used DEFAULT:Test-Module-Used CPAN-DEFAULT
 * perl-Test-Moose-More DEFAULT:Test-Moose-More CPAN-DEFAULT
 * perl-Test-Most DEFAULT:Test-Most CPAN-DEFAULT
 * perl-Test-NeedsDisplay DEFAULT:Test-NeedsDisplay CPAN-DEFAULT
 * perl-Test-NoBreakpoints DEFAULT:Test-NoBreakpoints CPAN-DEFAULT
 * perl-Test-NoPlan DEFAULT:Test-NoPlan CPAN-DEFAULT
 * perl-Test-Perl-Critic-Progressive DEFAULT:Test-Perl-Critic-Progressive CPAN-DEFAULT
 * perl-Test-Pod DEFAULT:Test-Pod CPAN-DEFAULT
 * perl-Test-Pod-Coverage DEFAULT:Test-Pod-Coverage CPAN-DEFAULT
 * perl-Test-Pod-LinkCheck DEFAULT:Test-Pod-LinkCheck CPAN-DEFAULT
 * perl-Test-Pod-No404s DEFAULT:Test-Pod-No404s CPAN-DEFAULT
 * perl-Test-Pod-Spelling-CommonMistakes DEFAULT:Test-Pod-Spelling-CommonMistakes CPAN-DEFAULT
 * perl-Test-POE-Client-TCP DEFAULT:Test-POE-Client-TCP CPAN-DEFAULT
 * perl-Test-Prereq DEFAULT:Test-Prereq CPAN-DEFAULT
 * perl-Test-Refcount DEFAULT:Test-Refcount CPAN-DEFAULT
 * perl-Test-Reporter DEFAULT:Test-Reporter CPAN-DEFAULT
 * perl-Test-Smoke DEFAULT:Test-Smoke CPAN-DEFAULT
 * perl-Test-Strict DEFAULT:Test-Strict CPAN-DEFAULT
 * perl-Test-Trap DEFAULT:Test-Trap CPAN-DEFAULT
 * perl-Test-Unit DEFAULT:Test-Unit CPAN-DEFAULT
 * perl-Test-Unit-Runner-Xml DEFAULT:Test-Unit-Runner-Xml CPAN-DEFAULT
 * perl-Test-UseAllModules DEFAULT:Test-UseAllModules CPAN-DEFAULT
 * perl-Test-Warn DEFAULT:Test-Warn CPAN-DEFAULT
 * perl-Test-WWW-Selenium DEFAULT:Test-WWW-Selenium CPAN-DEFAULT
 * perl-Test-YAML-Meta DEFAULT:Test-YAML-Meta CPAN-DEFAULT
 * perl-Test-YAML-Valid DEFAULT:Test-YAML-Valid CPAN-DEFAULT
 * perl-Text-Aligner DEFAULT:Text-Aligner CPAN-DEFAULT
 * perl-Text-ASCIITable DEFAULT:Text-ASCIITable CPAN-DEFAULT
 * perl-Text-CHM DEFAULT:Text-CHM CPAN-DEFAULT
 * perl-Text-CSV DEFAULT:Text-CSV CPAN-DEFAULT
 * perl-Text-CSV_XS DEFAULT:Text-CSV_XS CPAN-DEFAULT
 * perl-Text-Diff DEFAULT:Text-Diff CPAN-DEFAULT
 * perl-Text-FindIndent DEFAULT:Text-FindIndent CPAN-DEFAULT
 * perl-Text-Format DEFAULT:Text-Format CPAN-DEFAULT
 * perl-Text-vFile-asData DEFAULT:Text-vFile-asData CPAN-DEFAULT
 * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
 * perl-Text-ParseWords DEFAULT:Text-ParseWords CPAN-DEFAULT
 * perl-Text-Password-Pronounceable DEFAULT:Text-Password-Pronounceable CPAN-DEFAULT
 * perl-Text-PDF DEFAULT:Text-PDF CPAN-DEFAULT
 * perl-Text-RecordParser DEFAULT:Text-RecordParser CPAN-DEFAULT
 * perl-Text-SimpleTable DEFAULT:Text-SimpleTable CPAN-DEFAULT
 * perl-Text-Smart DEFAULT:Text-Smart CPAN-DEFAULT
 * perl-Text-Smart-Plugin DEFAULT:Text-Smart-Plugin CPAN-DEFAULT
 * perl-Text-Soundex DEFAULT:Text-Soundex CPAN-DEFAULT
 * perl-Text-Table DEFAULT:Text-Table CPAN-DEFAULT
 * perl-Text-TabularDisplay DEFAULT:Text-TabularDisplay CPAN-DEFAULT
 * perl-Text-Tree DEFAULT:Text-Tree CPAN-DEFAULT
 * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
 * perl-Text-VimColor DEFAULT:Text-VimColor CPAN-DEFAULT
 * perl-Thread-Queue DEFAULT:Thread-Queue CPAN-DEFAULT
 * perl-threads DEFAULT:threads CPAN-DEFAULT
 * perl-threads-tbb DEFAULT:threads-tbb CPAN-DEFAULT
 * perl-threads-lite DEFAULT:threads-lite CPAN-DEFAULT
 * perl-threads-shared DEFAULT:threads-shared CPAN-DEFAULT
 * perl-Tie-Function DEFAULT:Tie-Function CPAN-DEFAULT
 * perl-TimeDate DEFAULT:TimeDate CPAN-DEFAULT
 * perl-Time-Clock DEFAULT:Time-Clock CPAN-DEFAULT
 * perl-Time-Duration DEFAULT:Time-Duration CPAN-DEFAULT
 * perl-Time-HiRes DEFAULT:Time-HiRes CPAN-DEFAULT
 * perl-Time-Local DEFAULT:Time-Local CPAN-DEFAULT
 * perl-Time-modules DEFAULT:Time-modules CPAN-DEFAULT
 * perl-Time-Progress DEFAULT:Time-Progress CPAN-DEFAULT
 * perl-Tk DEFAULT:Tk CPAN-DEFAULT
 * perl-Tk-Canvas-GradientColor DEFAULT:Tk-Canvas-GradientColor CPAN-DEFAULT
 * perl-Tk-ColoredButton DEFAULT:Tk-ColoredButton CPAN-DEFAULT
 * perl-Tk-EntryCheck DEFAULT:Tk-EntryCheck CPAN-DEFAULT
 * perl-Tk-Getopt DEFAULT:Tk-Getopt CPAN-DEFAULT
 * perl-Tk-GraphViz CPAN-DEFAULT CPAN-DEFAULT
 * perl-Tk-Pod DEFAULT:Tk-Pod CPAN-DEFAULT
 * perl-Tk-Text-SuperText CPAN-DEFAULT CPAN-DEFAULT
 * perl-TryCatch DEFAULT:TryCatch CPAN-DEFAULT
 * perl-Twiggy DEFAULT:Twiggy CPAN-DEFAULT
 * perl-Unicode-Casing DEFAULT:Unicode-Casing CPAN-DEFAULT
 * perl-UNIVERSAL-ref DEFAULT:UNIVERSAL-ref CPAN-DEFAULT
 * perl-URI DEFAULT:URI CPAN-DEFAULT
 * perl-URI-Find-Simple DEFAULT:URI-Find-Simple CPAN-DEFAULT
 * perl-URI-Title DEFAULT:URI-Title CPAN-DEFAULT
 * perl-User DEFAULT:User CPAN-DEFAULT
 * perl-utf8-all DEFAULT:utf8-all CPAN-DEFAULT
 * perl-UUID-Tiny DEFAULT:UUID-Tiny CPAN-DEFAULT
 * perl-Verilog-CodeGen DEFAULT:Verilog-CodeGen CPAN-DEFAULT
 * perl-Verilog-Perl Verilog-Perl-(.*?).tar.gz http://cpan.mirror.clemson.edu/authors/id/W/WS/WSNYDER/
 * perl-Verilog-Readmem DEFAULT:Verilog-Readmem CPAN-DEFAULT
 * perl-WebService-Rajce DEFAULT:WebService-Rajce CPAN-DEFAULT
 * perl-WebService-Validator-CSS-W3C DEFAULT:WebService-Validator-CSS-W3C CPAN-DEFAULT
 * perl-WebService-Validator-HTML-W3C DEFAULT:WebService-Validator-HTML-W3C CPAN-DEFAULT
 * perl-WWW-Curl DEFAULT:WWW-Curl CPAN-DEFAULT
 * perl-WWW-GoodData CPAN-DEFAULT CPAN-DEFAULT
 * perl-WWW-Google-Contacts DEFAULT:WWW-Google-Contacts CPAN-DEFAULT
 * perl-WWW-OrangeHRM-Client WWW-OrangeHRM-Client-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/WWW-OrangeHRM-Client/
 * perl-WWW-RobotRules DEFAULT:WWW-RobotRules CPAN-DEFAULT
 * perl-WWW-Salesforce CPAN-DEFAULT CPAN-DEFAULT
 * perl-WWW-Search DEFAULT:WWW-Search CPAN-DEFAULT
 * perl-WWW-Shorten DEFAULT:WWW-Shorten CPAN-DEFAULT
 * perl-WWW-Splunk CPAN-DEFAULT CPAN-DEFAULT
 * perl-Wx DEFAULT:Wx CPAN-DEFAULT
 * perl-Wx-GLCanvas  DEFAULT:Wx-GLCanvas  CPAN-DEFAULT
 * perl-Wx-Perl-DataWalker DEFAULT:Wx-Perl-DataWalker CPAN-DEFAULT
 * perl-Wx-Perl-ProcessStream DEFAULT:Wx-Perl-ProcessStream CPAN-DEFAULT
 * perl-X11-Protocol-Other DEFAULT:X11-Protocol-Other CPAN-DEFAULT
 * perl-XML-Bare DEFAULT:XML-Bare CPAN-DEFAULT
 * perl-XML-Catalog DEFAULT:XML-Catalog CPAN-DEFAULT
 * perl-XML-DifferenceMarkup DEFAULT:XML-DifferenceMarkup CPAN-DEFAULT
 * perl-XML-DTDParser DEFAULT:XML-DTDParser CPAN-DEFAULT
 * perl-XML-Dumper DEFAULT:XML-Dumper CPAN-DEFAULT
 * perl-XML-Generator DEFAULT:XML-Generator CPAN-DEFAULT
 * perl-XML-Generator-DBI DEFAULT:XML-Generator-DBI CPAN-DEFAULT
 * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
 * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
 * perl-XML-Hash-LX DEFAULT:XML-Hash-LX CPAN-DEFAULT
 * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
 * perl-XML-LibXSLT DEFAULT:XML-LibXSLT CPAN-DEFAULT
 * perl-XML-Merge DEFAULT:XML-Merge CPAN-DEFAULT
 * perl-XML-NamespaceSupport DEFAULT:XML-NamespaceSupport CPAN-DEFAULT
 * perl-XML-Parser DEFAULT:XML-Parser CPAN-DEFAULT
 * perl-XML-Parser-Lite-Tree DEFAULT:XML-Parser-Lite-Tree CPAN-DEFAULT
 * perl-XML-Rules DEFAULT:XML-Rules CPAN-DEFAULT
 * perl-XML-SAX DEFAULT:XML-SAX CPAN-DEFAULT
 * perl-XML-SAX-ExpatXS DEFAULT:XML-SAX-ExpatXS CPAN-DEFAULT
 * perl-XML-Simple DEFAULT:XML-Simple CPAN-DEFAULT
 * perl-XML-Simple-DTDReader DEFAULT:XML-Simple-DTDReader CPAN-DEFAULT
 * perl-XML-Stream DEFAULT:XML-Stream CPAN-DEFAULT
 * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
 * perl-XML-Tiny DEFAULT:XML-Tiny CPAN-DEFAULT
 * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
 * perl-XML-Writer DEFAULT:XML-Writer CPAN-DEFAULT
 * perl-XML-XPath DEFAULT:XML-XPath CPAN-DEFAULT
 * perl-XXX DEFAULT:XXX CPAN-DEFAULT
 * perl-YAML DEFAULT:YAML CPAN-DEFAULT
 * perl-YAML-LibYAML DEFAULT:YAML-LibYAML CPAN-DEFAULT
 * perl-YAML-Tiny DEFAULT:YAML-Tiny CPAN-DEFAULT
 * perl-YUM-RepoQuery DEFAULT:YUM-RepoQuery CPAN-DEFAULT
 * perl-v6 DEFAULT:v6 CPAN-DEFAULT
 * perl-version DEFAULT:version CPAN-DEFAULT
 * perlbrew DEFAULT:App-perlbrew CPAN-DEFAULT:App-perlbrew
 * perltidy Perl-Tidy-(\S+?)\.(?:t|zip) SF-DEFAULT

PF - PX

 * pg_journal DEFAULT https://github.com/intgr/pg_journal/tags 
 * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300
 * pgpdump DEFAULT http://www.mew.org/~kazu/proj/pgpdump/en/
 * php-Assetic (\d[\.\d]+)\.tar\.gz https://github.com/kriswallsmith/assetic/tags
 * php-deepend-Mockery Mockery\s([\d\.]+)+\s\(stable\) http://pear.survivethedeepend.com/feed.xml
 * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
 * php-doctrine-DoctrineCommon <title>DoctrineCommon\s([\d\.]+)+\s\(stable\)</title> http://pear.doctrine-project.org/feed.xml
 * php-doctrine-DoctrineDBAL <title>DoctrineDBAL\s([\d\.]+)+\s\(stable\)</title> http://pear.doctrine-project.org/feed.xml
 * php-doctrine-DoctrineORM <title>DoctrineORM\s([\d\.]+)+\s\(stable\)</title> http://pear.doctrine-project.org/feed.xml
 * php-drush-drush <title>drush\s([\d\.]+)+\s\(stable\)</title> http://pear.drush.org/feed.xml
 * php-EasyRdf DEFAULT:easyrdf http://www.easyrdf.org/downloads
 * php-Faker (\d[\.\d]+)\.tar\.gz https://github.com/fzaninotto/Faker/tags
 * php-guzzle-Guzzle <title>Guzzle\s([\d\.]+)+\s\(stable\)</title> http://guzzlephp.org/pear/feed.xml
 * php-JMSParser (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/parser-lib/tags
 * php-jsonlint (\d[\.\d]+)\.tar\.gz https://github.com/Seldaek/jsonlint/tags
 * php-JsonSchema (\d[\.\d]+)\.tar\.gz https://github.com/justinrainbow/json-schema/tags
 * php-lessphp DEFAULT:lessphp http://leafo.net/lessphp/
 * php-Metadata (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/metadata/tags
 * php-Monolog (\d[\.\d]+)\.tar\.gz https://github.com/Seldaek/monolog/tags
 * php-pdepend-PHP-Depend <title>PHP_Depend\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.pdepend.org/feed.xml
 * php-pear-Console-Color Console_Color-(.*?).tgz http://pear.php.net/package/Console_Color/download
 * php-pear-Console-CommandLine Console_CommandLine-(.*?).tgz http://pear.php.net/package/Console_CommandLine/download
 * php-pear-Crypt-Blowfish Crypt_Blowfish-(.*?)\.tgz http://pear.php.net/package/Crypt_Blowfish/download
 * php-pear-DB DB-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/DB/download
 * php-pear-PHP-CodeSniffer PHP_CodeSniffer-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PHP_CodeSniffer/download/
 * php-pear-PhpDocumentor PEAR-DEFAULT PEAR-DEFAULT
 * php-pear-phing <title>phing\s([\d\.]+)+\s\((?:stable)\)</title> http://pear.phing.info/feed.xml
 * php-pear-Text-Diff Text_Diff-(.*?)\.tgz http://pear.php.net/package/Text_Diff/download
 * php-pear PEAR-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PEAR/download
 * php-pecl-geoip geoip-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/GEOIP
 * php-pecl-lzf LZF-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/lzf
 * php-pecl-mongo mongo-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/mongo
 * php-pecl-oauth oauth-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/oauth
 * php-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/feed.xml
 * php-PhpCollection (\d[\.\d]*)\.tar\.gz https://github.com/schmittjoh/php-collection/tags
 * php-PhpOption (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/php-option/tags
 * php-PHPParser (\d[\.\d]+)\.tar\.gz https://github.com/nikic/PHP-Parser/tags
 * php-phpunit-bytekit <title>bytekit\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-File-Iterator <title>File_Iterator\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpcpd <title>phpcpd\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpdcd <title>phpdcd\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phploc <title>phploc\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-CodeBrowser <title>PHP_CodeBrowser\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-Pimple (\d[\.\d]+)\.tar\.gz https://github.com/fabpot/Pimple/tags
 * php-pirum-Pirum <title>Pirum\s([\d\.]+)+\s\(stable\)</title> http://pear.pirum-project.org/feed.xml
 * php-PsrLog (\d[\.\d]+)\.tar\.gz https://github.com/php-fig/log/tags
 * php-Raven (\d[\.\d]+)\.tar\.gz https://github.com/getsentry/raven-php/tags
 * php-scssphp (\d[\.\d]+)\.tar\.gz https://github.com/leafo/scssphp/tags
 * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
 * php-symfony v(\d[\.\d]+)\.tar\.gz https://github.com/symfony/symfony/releases
 * php-symfony-icu v(\d[\.\d]+)\.tar\.gz https://github.com/symfony/Icu/releases
 * php-SymfonyCmfRouting (\d[\.\d]+)\.tar\.gz https://github.com/symfony-cmf/Routing/tags
 * php-twig-Twig <title>Twig\s([\d\.]+)+\s\(stable\)</title> http://pear.twig-project.org/feed.xml
 * php-ZendFramework2 DEFAULT http://framework.zend.com/downloads/latest
 * php php-(\d+\.\d+\.\d+)\.tar.bz2 http://www.php.net/downloads.php
 * phpMyAdmin phpMyAdmin-([0-9.]*?)-all-languages\.tar http://www.phpmyadmin.net/home_page/downloads.php
 * phpPgAdmin DEFAULT SF-DEFAULT:phppgadmin
 * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
 * picard DEFAULT http://musicbrainz.org/doc/PicardDownload
 * picocom DEFAULT GOOGLE-DEFAULT
 * pidgin DEFAULT http://www.pidgin.im/download/source/
 * pidgin-birthday-reminder DEFAULT LP-DEFAULT
 * pidgin-latex DEFAULT SF-DEFAULT
 * pidgin-libnotify DEFAULT SF-DEFAULT:gaim-libnotify
 * pidgin-musictracker DEFAULT GOOGLE-DEFAULT
 * pidgin-privacy-please DEFAULT GOOGLE-DEFAULT
 * pigz DEFAULT http://zlib.net/pigz/
 * pinentry DEFAULT ftp://ftp.gnupg.org/gcrypt/pinentry/
 * pinpoint DEFAULT GNOME-DEFAULT
 * pioneers DEFAULT SF-DEFAULT:pio
 * pitivi DEFAULT GNOME-DEFAULT
 * pixman DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * pkgconfig DEFAULT:pkg-config http://pkgconfig.freedesktop.org/releases/
 * pkgdiff DEFAULT http://pkgdiff.github.com/pkgdiff/
 * pkgwat DEFAULT:pkgwat.cli PYPI-DEFAULT:pkgwat.cli
 * pkcs11-helper DEFAULT SF-DEFAULT:opensc
 * pl DEFAULT http://www.swi-prolog.org/download/stable
 * plexus-active-collections plexus-active-collections-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/tags/
 * plexus-archiver DEFAULT https://github.com/sonatype/plexus-archiver/tags
 * plexus-build-api DEFAULT https://github.com/sonatype/sisu-build-api/tags
 * plexus-cipher DEFAULT https://github.com/sonatype/plexus-cipher/tags
 * plexus-digest plexus-digest-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-graph DEFAULT SF-DEFAULT
 * plexus-i18n plexus-i18n-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-interpolation plexus-interpolation-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-io plexus-io-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-resources plexus-resources-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-velocity plexus-velocity-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-ant-factory plexus-ant-factory-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/tags/
 * plexus-classworlds DEFAULT https://github.com/sonatype/plexus-classworlds/tags
 * plexus-compiler DEFAULT https://github.com/sonatype/plexus-compiler/tags
 * plexus-containers DEFAULT https://github.com/sonatype/plexus-containers/tags
 * plymouth DEFAULT http://freedesktop.org/software/plymouth/releases/
 * plotutils DEFAULT GNU-DEFAULT
 * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
 * pmd DEFAULT SF-DEFAULT
 * pnglite DEFAULT SF-DEFAULT
 * pngquant ([0-9.]*?)\.tar.* https://github.com/pornel/improved-pngquant/tags
 * pocl DEFAULT http://pocl.sourceforge.net/downloads/
 * pokerth DEFAULT:PokerTH SF-DEFAULT
 * polarssl \bpolarssl-([\d.]+)-gpl https://polarssl.org/code/releases/
 * policycoreutils DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * polipo polipo-([0-9]\.[0-9.]*?).tar.gz http://freehaven.net/~chrisd/polipo/
 * polkit DEFAULT http://freedesktop.org/software/polkit/releases/
 * pondus DEFAULT https://bitbucket.org/eike/pondus/downloads
 * pootle DEFAULT SF-DEFAULT:translate
 * poppler DEFAULT http://poppler.freedesktop.org/
 * poppler-data DEFAULT http://poppler.freedesktop.org/
 * poppler-sharp DEFAULT https://github.com/jacintos/poppler-sharp/downloads
 * popt DEFAULT http://rpm5.org/files/popt/
 * poptop DEFAULT SF-DEFAULT
 * port-allocator-maven-plugin DEFAULT https://github.com/sonatype/port-allocator-maven-plugin/releases
 * potrace DEFAULT SF-DEFAULT
 * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
 * postfix DEFAULT ftp://ftp.porcupine.org/mirrors/postfix-release/official/
 * powertop DEFAULT https://01.org/powertop/downloads
 * ppp DEFAULT http://www.samba.org/ftp/ppp/
 * pptp DEFAULT SF-DEFAULT:pptpclient
 * prboom prboom-([0-9.]*?)\.tar\.gz SF-DEFAULT
 * procps-ng DEFAULT SF-DEFAULT
 * prepaid-manager-applet \bprepaid-manager-applet[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?\.(?:t[bglx]z|tar.[bglx]z|tbz2|zip|tar)\b http://honk.sigxcpu.org/projects/ppm/tarballs/
 * primer3 primer3-([0-9.]*).*\.(?:tar|t[bglx]z|tbz2|zip) SF-DEFAULT
 * privoxy privoxy-(.*?)-stable-src\.tar\.gz SF-DEFAULT:ijbswa
 * procmail DEFAULT http://www.procmail.org/
 * proguard \bproguard([\d.]+?)\.t SF-DEFAULT
 * protobuf DEFAULT GOOGLE-DEFAULT
 * proxyknife DEFAULT GNU-DEFAULT
 * psacct DEFAULT:acct GNU-DEFAULT:acct
 * pscan Version\s+(\d[\d.]+\d) http://deployingradius.com/pscan/README
 * psfex DEFAULT http://www.astromatic.net/download/psfex/
 * psmisc DEFAULT SF-DEFAULT
 * pspp DEFAULT GNU-DEFAULT
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * pulseaudio DEFAULT http://freedesktop.org/software/pulseaudio/releases/
 * pure DEFAULT https://bitbucket.org/purelang/pure-lang/downloads
 * pure-ftpd DEFAULT http://download.pureftpd.org/pub/pure-ftpd/releases/
 * purple-microblog DEFAULT:mbpurple GOOGLE-DEFAULT:microblog-purple
 * purple-msn-pecan DEFAULT:msn-pecan GOOGLE-DEFAULT:msn-pecan
 * purple-plugin_pack DEFAULT:purple-plugin-pack https://www.guifications.org/projects/purple-plugin-pack/files
 * pv DEFAULT http://www.ivarch.com/programs/pv.shtml
 * pvm pvm([0-9.]*)\..*\.(?:tar|t[bglx]z|tbz2|zip) http://www.netlib.org/pvm3/index.html
 * pwgen DEFAULT SF-DEFAULT

PY

 * pycdio DEFAULT GNU-DEFAULT:libcdio
 * pychess DEFAULT GOOGLE-DEFAULT
 * pycmd DEFAULT PYPI-DEFAULT
 * pyfits DEFAULT PYPI-DEFAULT
 * pyflakes DEFAULT PYPI-DEFAULT
 * pygpgme DEFAULT LP-DEFAULT
 * pygrace DEFAULT http://www.cacr.caltech.edu/~mmckerns/pygrace.html
 * pygrib DEFAULT GOOGLE-DEFAULT
 * pyicq-t pyicq-t-(.*?).tar.gz GOOGLE-DEFAULT:pyicqt
 * PyMca pymca([\d.]*)-src SF-DEFAULT:pymca
 * pymol pymol-v([0-9.]*?).tar.bz2 SF-DEFAULT
 * PyMunin DEFAULT PYPI-DEFAULT
 * pynac pynac-([\d.]+)\.spkg http://sagemath.org/packages/standard/
 * pypar DEFAULT SF-DEFAULT
 * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
 * pyproj DEFAULT GOOGLE-DEFAULT
 * pypy DEFAULT https://bitbucket.org/pypy/pypy/downloads/
 * PyQuante DEFAULT SF-DEFAULT:pyquante
 * PyQwt DEFAULT SF-DEFAULT:pyqwt
 * pyrit DEFAULT GOOGLE-DEFAULT
 * pyroom DEFAULT LP-DEFAULT
 * pyshp DEFAULT PYPI-DEFAULT
 * pytest DEFAULT PYPI-DEFAULT
 * python-alembic DEFAULT:alembic PYPI-DEFAULT:alembic
 * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
 * python-amqp DEFAULT:amqp PYPI-DEFAULT:amqp
 * python-ansi2html DEFAULT:ansi2html http://pypi.python.org/pypi/ansi2html
 * python-anykeystore DEFAULT:anykeystore PYPI-DEFAULT:anykeystore
 * python-application DEFAULT PYPI-DEFAULT
 * python-apsw DEFAULT:apsw GOOGLE-DEFAULT:apsw
 * python-ase DEFAULT PYPI-DEFAULT
 * python-askbot-fedmsg DEFAULT:askbot-fedmsg PYPI-DEFAULT:askbot-fedmsg
 * python-backlash DEFAULT:backlash PYPI-DEFAULT:backlash
 * python-beaker DEFAULT:Beaker PYPI-DEFAULT:Beaker
 * python-beautifulsoup4 DEFAULT:beautifulsoup4 PYPI-DEFAULT:beautifulsoup4
 * python-billiard DEFAULT:billiard PYPI-DEFAULT:billiard
 * python-biopython biopython-([0-9].*?)\.tar\.gz http://biopython.org/DIST/
 * python-bitlyapi DEFAULT:bitlyapi PYPI-DEFAULT:bitlyapi
 * python-blessings /archive/(?!terminator-)(.*?)\.tar\.gz https://github.com/erikrose/blessings/tags
 * python-blist DEFAULT:blist PYPI-DEFAULT:blist
 * python-blosc archive/Release-(.*?)\.zip https://github.com/FrancescAlted/%s/releases
 * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
 * python-cairosvg DEFAULT:CairoSVG PYPI-DEFAULT:CairoSVG
 * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
 * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
 * python-celery DEFAULT:celery PYPI-DEFAULT:celery
 * python-chai DEFAULT:chai PYPI-DEFAULT:chai
 * python-chameleon DEFAULT:Chameleon PYPI-DEFAULT:Chameleon
 * python-cherrypy <a href="([0-9][^/]*)/"> http://download.cherrypy.org/cherrypy/
 * python-cherrypy2 <a href="(2[^/]*)/"> http://download.cherrypy.org/cherrypy/
 * python-cliapp DEFAULT http://code.liw.fi/debian/pool/main/p/python-cliapp/
 * python-clientform DEFAULT:ClientForm PYPI-DEFAULT:ClientForm
 * python-cliff DEFAULT:cliff PYPI-DEFAULT:cliff
 * python-cloud-sptheme DEFAULT:cloud_sptheme PYPI-DEFAULT:cloud_sptheme
 * python-colander DEFAULT:colander PYPI-DEFAULT:colander
 * python-colorama DEFAULT:colorama PYPI-DEFAULT:colorama
 * python-concurrentloghandler DEFAULT:ConcurrentLogHandler PYPI-DEFAULT:ConcurrentLogHandler
 * python-configobj DEFAULT:configobj PYPI-DEFAULT:configobj
 * python-couchdbkit DEFAULT:couchdbkit PYPI-DEFAULT:couchdbkit
 * python-coverage DEFAULT:coverage PYPI-DEFAULT:coverage
 * python-coverage-test-runner DEFAULT http://code.liw.fi/debian/pool/main/p/python-coverage-test-runner/
 * python-cpio DEFAULT SF-DEFAULT:python-cpio.berlios
 * python-crank DEFAULT:crank PYPI-DEFAULT:crank
 * python-crypto e/v(.*)\.tar\.gz http://github.com/dlitz/pycrypto/releases
 * python-daemon DEFAULT:daemon PYPI-DEFAULT:daemon
 * python-datanommer-consumer DEFAULT:datanommer.consumer PYPI-DEFAULT:datanommer.consumer
 * python-datanommer-models DEFAULT:datanommer.models PYPI-DEFAULT:datanommer.models
 * python-decorator DEFAULT:decorator PYPI-DEFAULT:decorator
 * python-decoratortools DEFAULT:DecoratorTools PYPI-DEFAULT:DecoratorTools
 * python-demjson DEFAULT:demjson PYPI-DEFAULT:demjson
 * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
 * python-dingus DEFAULT:dingus PYPI-DEFAULT:dingus
 * python-distutils-extra DEFAULT LP-DEFAULT
 * python-django DEFAULT:Django PYPI-DEFAULT:Django
 * python-django-appconf DEFAULT:django-appconf PYPI-DEFAULT:django-appconf
 * python-django-authopenid DEFAULT:django-authopenid PYPI-DEFAULT:django-authopenid
 * python-django-bootstrap-toolkit DEFAULT:django-bootstrap-toolkit PYPI-DEFAULT:django-bootstrap-toolkit
 * python-django-celery DEFAULT:django-celery PYPI-DEFAULT:django-celery
 * python-django-compressor DEFAULT:django_compressor PYPI-DEFAULT:django_compressor
 * python-django-debug-toolbar DEFAULT:django-debug-toolbar PYPI-DEFAULT:django-debug-toolbar
 * python-django-devserver DEFAULT:django-devserver PYPI-DEFAULT:django-devserver
 * python-django-discover-runner DEFAULT:django-discover-runner PYPI-DEFAULT:django-discover-runner
 * python-django-extensions DEFAULT:django-extensions PYPI-DEFAULT:django-extensions
 * python-django-longerusername DEFAULT:longerusername PYPI-DEFAULT:longerusername
 * python-django-openstack-auth DEFAULT:django_openstack_auth PYPI-DEFAULT:django_openstack_auth
 * python-django-openid-auth DEFAULT:django-openid-auth PYPI-DEFAULT:django-openid-auth
 * python-django-pytest DEFAULT:django-pytest PYPI-DEFAULT:django-pytest
 * python-django-reversion DEFAULT:django-reversion PYPI-DEFAULT:django-reversion
 * python-django-roa DEFAULT:django-roa PYPI-DEFAULT:django-roa
 * python-django-tastypie DEFAULT:django-tastypie PYPI-DEFAULT:django-tastypie
 * python-django-tinymce DEFAULT:django-tinymce PYPI-DEFAULT:django-tinymce
 * python-dns DEFAULT:dnspython http://www.dnspython.org/kits/*/
 * python-docutils DEFAULT:docutils PYPI-DEFAULT:docutils
 * python-dogpile-cache DEFAULT:dogpile.cache PYPI-DEFAULT:dogpile.cache
 * python-dogpile-core DEFAULT:dogpile.core PYPI-DEFAULT:dogpile.core
 * python-doit DEFAULT:doit PYPI-DEFAULT:doit
 * python-dtopt DEFAULT:dtopt PYPI-DEFAULT:dtopt
 * python-elixir Elixir-(.*?).tar.gz PYPI-DEFAULT:Elixir
 * python-enchant DEFAULT:pyenchant PYPI-DEFAULT:pyenchant
 * python-execnet execnet-(.*?).(?:tar.gz|zip) PYPI-DEFAULT:execnet
 * python-fabulous DEFAULT:fabulous https://pypi.python.org/pypi/fabulous/
 * python-falcon DEFAULT:falcon PYPI-DEFAULT:falcon
 * python-fastimport DEFAULT LP-DEFAULT
 * python-fedmsg-meta-fedora-infrastructure DEFAULT:fedmsg_meta_fedora_infrastructure PYPI-DEFAULT:fedmsg_meta_fedora_infrastructure
 * python-feedcache DEFAULT:feedcache http://pypi.python.org/pypi/feedcache/
 * python-fedora DEFAULT PYPI-DEFAULT
 * python-flask DEFAULT:Flask PYPI-DEFAULT:Flask
 * python-flask-login DEFAULT:Flask-Login PYPI-DEFAULT:Flask-Login
 * python-flask-mako DEFAULT:Flask-Mako PYPI-DEFAULT:Flask-Mako
 * python-flask-principal DEFAULT:Flask-Principal PYPI-DEFAULT:Flask-Principal
 * python-flexmock DEFAULT:flexmock PYPI-DEFAULT:flexmock
 * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
 * python-fn DEFAULT:fn PYPI-DEFAULT:fn
 * python-formencode DEFAULT:FormEncode PYPI-DEFAULT:FormEncode
 * python-fuzzywuzzy DEFAULT:fuzzywuzzy PYPI-DEFAULT:fuzzywuzzy
 * python-gdata DEFAULT:gdata GOOGLE-DEFAULT:gdata-python-client
 * python-gearbox DEFAULT:gearbox PYPI-DEFAULT:gearbox
 * python-glue DEFAULT:glue PYPI-DEFAULT:glue
 * python-grapefruit DEFAULT:grapefruit GOOGLE-DEFAULT:grapefruit
 * python-gunicorn DEFAULT:gunicorn PYPI-DEFAULT:gunicorn
 * python-GeoIP DEFAULT:GeoIP PYPI-DEFAULT:GeoIP
 * python-hghooks DEFAULT:hghooks PYPI-DEFAULT:hghooks
 * python-http-parser DEFAULT:http-parser PYPI-DEFAULT:http-parser
 * python-irclib DEFAULT SF-DEFAULT
 * python-itsdangerous DEFAULT:itsdangerous PYPI-DEFAULT:itsdangerous
 * python-jedi DEFAULT:jedi PYPI-DEFAULT:jedi
 * python-jinja2 Jinja2-(.*?).tar.gz PYPI-DEFAULT:Jinja2
 * python-jsonschema DEFAULT:jsonschema PYPI-DEFAULT:jsonschema
 * python-kajiki DEFAULT:Kajiki PYPI-DEFAULT:Kajiki
 * python-keyring keyring-([0-9.]*?).zip PYPI-DEFAULT:keyring
 * python-kid DEFAULT:kid PYPI-DEFAULT:kid
 * python-kitchen DEFAULT:kitchen PYPI-DEFAULT:kitchen
 * python-kombu DEFAULT:kombu PYPI-DEFAULT:kombu
 * python-ladon DEFAULT:ladon PYPI-DEFAULT:ladon
 * python-lamson DEFAULT:lamson PYPI-DEFAULT:lamson
 * python-larch DEFAULT http://code.liw.fi/debian/pool/main/p/python-larch/
 * python-lettuce DEFAULT:lettuce PYPI-DEFAULT:lettuce
 * python-Levenshtein DEFAULT PYPI-DEFAULT
 * python-llfuse DEFAULT:llfuse GOOGLE-DEFAULT
 * python-logging-tree DEFAULT:logging_tree PYPI-DEFAULT:logging_tree
 * python-logutils DEFAULT:logutils PYPI-DEFAULT:logutils
 * python-lxml DEFAULT:lxml http://lxml.de/
 * python-mako DEFAULT:Mako PYPI-DEFAULT:Mako
 * python-markdown DEFAULT:Markdown PYPI-DEFAULT:Markdown
 * python-markdown2 DEFAULT:markdown2 PYPI-DEFAULT:markdown2
 * python-markupsafe DEFAULT:MarkupSafe PYPI-DEFAULT:MarkupSafe
 * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
 * python-meliae DEFAULT:meliae LP-DEFAULT:meliae
 * python-migrate0.5 sqlalchemy-migrate-(0.5.*).tar.gz" PYPI-DEFAULT:sqlalchemy-migrate
 * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
 * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
 * python-modernize DEFAULT:modernize PYPI-DEFAULT:modernize
 * python-moksha-common DEFAULT:moksha.common PYPI-DEFAULT:moksha.common
 * python-moksha-hub DEFAULT:moksha.hub PYPI-DEFAULT:moksha.hub
 * python-moksha-wsgi DEFAULT:moksha.wsgi PYPI-DEFAULT:moksha.wsgi
 * python-morbid DEFAULT:morbid PYPI-DEFAULT:morbid
 * python-mpmath DEFAULT:mpmath GOOGLE-DEFAULT:mpmath
 * python-mutagen PYPI-DEFAULT:mutagen
 * python-mwlib DEFAULT:mwlib PYPI-DEFAULT:mwlib
 * python-myghty DEFAULT:Myghty PYPI-DEFAULT:Myghty
 * python-myhdl DEFAULT:myhdl SF-DEFAULT:myhdl
 * python-nltk DEFAULT:nltk PYPI-DEFAULT:nltk
 * python-nose DEFAULT:nose PYPI-DEFAULT:nose
 * python-nose-cover3 DEFAULT:nose-cover3 PYPI-DEFAULT:nose-cover3
 * python-nose-exclude DEFAULT:nose-exclude PYPI-DEFAULT:nose-exclude
 * python-nose-progressive /archive/(.*?)\.tar\.gz https://github.com/erikrose/nose-progressive/tags
 * python-ntplib DEFAULT:ntplib PYPI-DEFAULT:ntplib
 * python-numexpr DEFAULT:numexpr GOOGLE-DEFAULT:numexpr
 * python-offtrac DEFAULT:offtrac PYPI-DEFAULT:offtrac
 * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT:paida
 * python-paramiko DEFAULT:paramiko http://www.lag.net/paramiko/download/
 * python-paste DEFAULT:Paste PYPI-DEFAULT:Paste
 * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
 * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
 * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
 * python-pbr DEFAULT:pbr PYPI-DEFAULT:pbr
 * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
 * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
 * python-peak-util-assembler DEFAULT:BytecodeAssembler PYPI-DEFAULT:BytecodeAssembler
 * python-peak-util-extremes DEFAULT:Extremes PYPI-DEFAULT:Extremes
 * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
 * python-pep8 DEFAULT:pep8 PYPI-DEFAULT:pep8
 * python-pgpdump DEFAULT:pgpdump PYPI-DEFAULT:pgpdump
 * python-phyghtmap phyghtmap_(.*?).orig.tar.gz http://katze.tfiu.de/projects/phyghtmap/
 * python-pkgwat-api DEFAULT:pkgwat.api PYPI-DEFAULT:pkgwat.api
 * python-plumbum DEFAULT:plumbum PYPI-DEFAULT:plumbum
 * python-plyvel /([0-9.]*).tar.gz https://github.com/wbolster/plyvel/tags
 * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
 * python-profilehooks DEFAULT:profilehooks PYPI-DEFAULT:profilehooks
 * python-progressbar DEFAULT GOOGLE-DEFAULT
 * python-protocols >PyProtocols-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * python-psutil DEFAULT:psutil PYPI-DEFAULT:psutil
 * python-pudb DEFAULT:pudb PYPI-DEFAULT:pudb
 * python-py py-([0-9.]*?).(?:tar.gz|zip) PYPI-DEFAULT:py
 * python-pybloomfiltermmap DEFAULT:pybloomfiltermmap PYPI-DEFAULT:pybloomfiltermmap
 * python-pygal DEFAULT:pygal PYPI-DEFAULT:pygal
 * python-pygments DEFAULT:Pygments PYPI-DEFAULT:Pygments
 * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
 * python-PyGithub DEFAULT:PyGithub PYPI-DEFAULT:PyGithub
 * python-qserve DEFAULT:qserve PYPI-DEFAULT:qserve
 * python-q DEFAULT:q PYPI-DEFAULT:q
 * python-redis DEFAULT:redis PYPI-DEFAULT:redis
 * python-repoze-tm2 DEFAULT:repoze.tm2 PYPI-DEFAULT:repoze.tm2
 * python-repoze-what DEFAULT:repoze.what PYPI-DEFAULT:repoze.what
 * python-repoze-what-plugins-sql DEFAULT:repoze.what.plugins.sql PYPI-DEFAULT:repoze.what.plugins.sql
 * python-repoze-what-pylons DEFAULT:repoze.what-pylons PYPI-DEFAULT:repoze.what-pylons
 * python-repoze-what-quickstart DEFAULT:repoze.what-quickstart PYPI-DEFAULT:repoze.what-quickstart
 * python-repoze-who DEFAULT:repoze.who PYPI-DEFAULT:repoze.who
 * python-repoze-who-friendlyform DEFAULT:repoze.who-friendlyform PYPI-DEFAULT:repoze.who-friendlyform
 * python-repoze-who-plugins-sa DEFAULT:repoze.who.plugins.sa PYPI-DEFAULT:repoze.who.plugins.sa
 * python-repoze-who-testutil DEFAULT:repoze.who-testutil PYPI-DEFAULT:repoze.who-testutil
 * python-requests DEFAULT:requests PYPI-DEFAULT:requests
 * python-requests-kerberos /archive/(.*?)\.tar\.gz https://github.com/requests/requests-kerberos/tags
 * python-restkit DEFAULT:restkit PYPI-DEFAULT:restkit
 * python-restsh DEFAULT:restsh PYPI-DEFAULT:restsh
 * python-rope DEFAULT:rope PYPI-DEFAULT:rope
 * python-robofab DEFAULT http://download.robofab.com/
 * python-rpyc DEFAULT:rpyc PYPI-DEFAULT:rpyc
 * python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
 * python-ruledispatch >RuleDispatch-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * python-setuptools DEFAULT:setuptools PYPI-DEFAULT:setuptools
 * python-shove DEFAULT:shove PYPI-DEFAULT:shove
 * python-simplegeneric DEFAULT:simplegeneric PYPI-DEFAULT:simplegeneric
 * python-simplejson simplejson-([0-9.]+?)\.tar PYPI-DEFAULT:simplejson
 * python-six DEFAULT:six PYPI-DEFAULT:six
 * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
 * python-socketpool DEFAULT:socketpool PYPI-DEFAULT:socketpool
 * python-sphinx DEFAULT:Sphinx PYPI-DEFAULT:Sphinx
 * python-sphinxcontrib-adadomain DEFAULT:sphinxcontrib-adadomain PYPI-DEFAULT:sphinxcontrib-adadomain
 * python-sprox DEFAULT:sprox PYPI-DEFAULT:sprox
 * python-sqlalchemy DEFAULT:SQLAlchemy PYPI-DEFAULT:SQLAlchemy
 * python-sqlalchemy0.5 .*(0.5[.0-9]*).tar.gz PYPI-DEFAULT:SQLAlchemy
 * python-sqlamp DEFAULT:sqlamp PYPI-DEFAULT:sqlamp
 * python-sqlite3dbm DEFAULT:sqlite3dbm PYPI-DEFAULT:sqlite3dbm
 * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
 * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
 * python-storm DEFAULT:storm LP-DEFAULT:storm
 * python-subprocess32 DEFAULT:subprocess32 PYPI-DEFAULT:subprocess32
 * python-sure DEFAULT:sure PYPI-DEFAULT:sure
 * python-tables DEFAULT:pytables SF-DEFAULT:pytables
 * python-testtools DEFAULT:testtools LP-DEFAULT:testtools
 * python-textile DEFAULT:textile PYPI-DEFAULT:textile
 * python-tftpy DEFAULT:tftpy SF-DEFAULT:tftpy
 * python-tg-devtools DEFAULT:tg.devtools PYPI-DEFAULT:tg.devtools
 * python-tgcaptcha DEFAULT:TGCaptcha PYPI-DEFAULT:TGCaptcha
 * python-tgext-admin DEFAULT:tgext.admin PYPI-DEFAULT:tgext.admin
 * python-tgext-crud DEFAULT:tgext.crud PYPI-DEFAULT:tgext.crud
 * python-tgfastdata DEFAULT:TGFastData PYPI-DEFAULT:TGFastData
 * python-tgmochikit DEFAULT:tgMochiKit PYPI-DEFAULT:tgMochiKit
 * python-tgscheduler DEFAULT:TGScheduler PYPI-DEFAULT:TGScheduler
 * python-toscawidgets DEFAULT:ToscaWidgets PYPI-DEFAULT:ToscaWidgets
 * python-tracing DEFAULT http://code.liw.fi/debian/pool/main/p/python-tracing/
 * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
 * python-ttystatus DEFAULT http://code.liw.fi/debian/pool/main/p/python-ttystatus/
 * python-TurboMail DEFAULT:TurboMail PYPI-DEFAULT:TurboMail
 * python-turbocheetah DEFAULT:TurboCheetah PYPI-DEFAULT:TurboCheetah
 * python-turboflot DEFAULT:TurboFlot PYPI-DEFAULT:TurboFlot
 * python-turbojson DEFAULT:TurboJson PYPI-DEFAULT:TurboJson
 * python-turbokid DEFAULT:TurboKid PYPI-DEFAULT:TurboKid
 * python-tw-forms DEFAULT:tw.forms PYPI-DEFAULT:tw.forms
 * python-tw-jquery DEFAULT:tw.jquery PYPI-DEFAULT:tw.jquery
 * python-tw2-core DEFAULT:tw2.core PYPI-DEFAULT:tw2.core
 * python-twisted DEFAULT:Twisted http://twistedmatrix.com/trac/wiki/Downloads
 * python-txws DEFAULT:txWS http://pypi.python.org/pypi/txWS
 * python-txzmq DEFAULT:txZMQ http://pypi.python.org/pypi/txZMQ
 * python-uinput dist/([0-9.]+[0-9]) https://github.com/tuomasjjrasanen/python-uinput/tags
 * python-ujson DEFAULT:ujson PYPI-DEFAULT:ujson
 * python-unicodenazi DEFAULT:unicode-nazi PYPI-DEFAULT:unicode-nazi
 * python-urwid DEFAULT:urwid PYPI-DEFAULT:urwid
 * python-versiontools DEFAULT:versiontools PYPI-DEFAULT:versiontools
 * python-virtualenvwrapper DEFAULT:virtualenvwrapper PYPI-DEFAULT:virtualenvwrapper
 * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
 * pyothn-volatility DEFAULT GOOGLE-DEFAULT:volatility
 * python-waitress DEFAULT:waitress PYPI-DEFAULT:waitress
 * python-warlock DEFAULT:warlock PYPI-DEFAULT:warlock
 * python-weberror DEFAULT:WebError PYPI-DEFAULT:WebError
 * python-webflash DEFAULT:WebFlash PYPI-DEFAULT:WebFlash
 * python-webhelpers DEFAULT:WebHelpers PYPI-DEFAULT:WebHelpers
 * python-webpy DEFAULT:web.py PYPI-DEFAULT:web.py
 * python-webtest DEFAULT:WebTest PYPI-DEFAULT:WebTest
 * python-werkzeug DEFAULT:Werkzeug PYPI-DEFAULT:Werkzeug
 * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
 * python-x2go python-x2go-(.*)\.tar\.gz http://code.x2go.org/releases/source/python-x2go/
 * python-xkit DEFAULT:x-kit LP-DEFAULT:xorgparser
 * python-xtermcolor DEFAULT:xtermcolor PYPI-DEFAULT:xtermcolor
 * python-zc-buildout zc.buildout-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zc.buildout
 * python-zc-lockfile zc.lockfile-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zc.lockfile
 * python-ZConfig ZConfig-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:ZConfig
 * python-ZODB3 ZODB3-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:ZODB3
 * python-zdaemon zdaemon-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zdaemon
 * python-zmq pyzmq-(.*?).tar.gz https://github.com/zeromq/pyzmq/downloads
 * python-zope-component zope\.component-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.component
 * python-zope-contenttype DEFAULT:zope.contenttype PYPI-DEFAULT:zope.contenttype
 * python-zope-event zope\.event-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.event
 * python-zope-exceptions zope\.exceptions-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.exceptions
 * python-zope-filerepresentation DEFAULT:zope.filerepresentation PYPI-DEFAULT:zope.filerepresentation
 * python-zope-i18n zope\.i18n-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.i18n
 * python-zope-i18nmessageid DEFAULT:zope.i18nmessageid PYPI-DEFAULT:zope.i18nmessageid
 * python-zope-interface zope\.interface-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.interface
 * python-zope-proxy zope\.proxy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.proxy
 * python-zope-schema zope\.schema-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.schema
 * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.sqlalchemy
 * python-zope-testing zope\.testing-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.testing
 * python3-bsddb3 \bbsddb3-([0-9.]+?)\.tar\.gz\b PYPI-DEFAULT:bsddb3
 * python3-chardet DEFAULT http://chardet.feedparser.org/download/
 * python3-zope-fixers DEFAULT:zope.fixers PYPI-DEFAULT:zope.fixers
 * pyxdg DEFAULT http://people.freedesktop.org/~takluyver/
 * pyxmlsec DEFAULT http://labs.libre-entreprise.org/frs/?group_id=17
 * PyYAML DEFAULT http://pyyaml.org/download/pyyaml/

Q - Ruby

 * qbzr DEFAULT LP-DEFAULT
 * qiv DEFAULT http://spiegl.de/qiv/download/
 * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
 * qmmp-plugin-pack qmmp-plugin-pack-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/plugins/
 * qof DEFAULT SF-DEFAULT
 * qrupdate DEFAULT SF-DEFAULT
 * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
 * qt-creator DEFAULT http://releases.qt-project.org/qtcreator/current_stable/
 * qterm DEFAULT SF-DEFAULT
 * quagga DEFAULT http://download.savannah.gnu.org/releases/quagga/
 * quazip DEFAULT SF-DEFAULT
 * qucs qucs-([0-9]+\.[0-9]+\.[0-9]+).tar.gz SF-DEFAULT
 * quilt DEFAULT http://download.savannah.gnu.org/releases/quilt/
 * quodlibet DEFAULT GOOGLE-DEFAULT
 * quota DEFAULT SF-DEFAULT:linuxquota
 * quotatool \bv(.*?)\.tar https://github.com/ekenberg/quotatool/tags
 * qwt DEFAULT SF-DEFAULT
 * R DEFAULT http://cran.rstudio.com/banner.shtml
 * R-car DEFAULT http://cran.r-project.org/src/contrib/
 * R-lmtest DEFAULT http://cran.r-project.org/src/contrib/
 * R-multcomp DEFAULT http://cran.r-project.org/src/contrib/
 * R-mvtnorm DEFAULT http://cran.r-project.org/src/contrib/
 * R-zoo DEFAULT http://cran.r-project.org/src/contrib/
 * RackTables DEFAULT SF-DEFAULT:racktables
 * radvd DEFAULT http://www.litech.org/radvd/
 * rakarrack rakarrack-(.[^-]*?).tar.(?:bz2|gz) SF-DEFAULT
 * ramond DEFAULT SF-DEFAULT
 * ranger DEFAULT http://download.savannah.gnu.org/releases/ranger/releases/
 * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
 * rasterview DEFAULT http://www.easysw.com/~mike/rasterview/
 * ratproxy DEFAULT GOOGLE-DEFAULT
 * rb_libtorrent DEFAULT:libtorrent-rasterbar GOOGLE-DEFAULT:libtorrent
 * rcs DEFAULT GNU-DEFAULT
 * rcsslogplayer DEFAULT SF-DEFAULT:sserver
 * rcssmonitor \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssmonitor/
 * rcssserver \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssserver/
 * rcssserver3d \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/rcssserver3d
 * rdesktop DEFAULT SF-DEFAULT
 * readline DEFAULT GNU-DEFAULT
 * readosm DEFAULT http://www.gaia-gis.it/gaia-sins/readosm-sources/
 * realmd DEFAULT http://www.freedesktop.org/software/realmd/releases/
 * recode v([.0-9]+)\.(?:tar|zip) https://github.com/pinard/Recode/tags
 * recutils DEFAULT GNU-DEFAULT
 * redet-doc redet_manual(.*?).tar.gz http://billposer.org/Software/redet.htmlhttp://central.maven.org/maven2/de/schlichtherle/oss-parent/
 * redet redet-(.*?).tar.gz http://billposer.org/Software/redet.html
 * redis redis-(.*?).tar.gz http://redis.io/download
 * redshift DEFAULT LP-DEFAULT
 * regionset regionset-([.0-9]*?).tar.gz http://linvdr.org/download/regionset/
 * reiserfs-utils reiserfsprogs-(.*?)\.tar\.bz2 http://kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/*/
 * relaxngDatatype relaxngDatatype-([0-9.]*?).zip SF-DEFAULT:relaxng
 * relevation DEFAULT http://p.outlyer.net/relevation/files/
 * remind DEFAULT http://www.roaringpenguin.com/files/download/
 * remmina DEFAULT SF-DEFAULT
 * reptyr DEFAULT https://github.com/nelhage/reptyr/tags
 * resource-agents archive/v(.*?)\.zip https://github.com/ClusterLabs/resource-agents/tags
 * rest DEFAULT GNOME-DEFAULT
 * ReviewBoard DEFAULT http://downloads.reviewboard.org/releases/ReviewBoard/*/
 * rfkill DEFAULT http://kernel.org/pub/software/network/rfkill/
 * riak (\d+\.\d+\.?\d+?)\.zip https://github.com/basho/riak/tags
 * rlwrap DEFAULT http://utopia.knoware.nl/~hlub/rlwrap/
 * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
 * rmol rmol-([0-9.]*)\.tar\.gz SF-DEFAULT
 * rng-tools DEFAULT SF-DEFAULT:gkernel
 * root-tail DEFAULT http://oldhome.schmorp.de/marc/data/
 * roundup DEFAULT PYPI-DEFAULT
 * routino DEFAULT http://www.routino.org/download/
 * roxterm DEFAULT SF-DEFAULT
 * robust-http-client DEFAULT https://github.com/kohsuke/robust-http-client/tags
 * rp-pppoe DEFAULT http://www.roaringpenguin.com/products/pppoe
 * rpl DEFAULT SF-DEFAULT
 * rpmlint DEFAULT SF-DEFAULT
 * rpcbind DEFAULT SF-DEFAULT
 * rpmorphan DEFAULT SF-DEFAULT
 * rrdtool rrdtool-([0-9\.]+).tar.gz http://oss.oetiker.ch/rrdtool/pub/
 * rst2pdf DEFAULT GOOGLE-DEFAULT
 * rsvndump DEFAULT SF-DEFAULT
 * rsync DEFAULT http://samba.org/ftp/rsync/
 * rsyslog DEFAULT http://www.rsyslog.com/download/stable-download/
 * rtmidi DEFAULT http://www.music.mcgill.ca/~gary/rtmidi/
 * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
 * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/

Ruby

 * ruby ruby-([0-9]+\.[0-9]+\.[0-9]+)-p([0-9]+)\.tar\.gz ftp://ftp.ruby-lang.org/pub/ruby/stable/
 * rubygem-afm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-Ascii85 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-POpen4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-Platform RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ZenTest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-abrt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-abstract RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-actionmailer RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-actionpack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activemodel RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activerecord RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activerecord-deprecated_finders RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activeresource RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activesupport RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-acts-as-taggable-on RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ammeter RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ancestry RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-apipie-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-archivist RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-arel RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-aruba RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-audited RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-audited-activerecord RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-aws RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-axiom-types RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-backports RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bacon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bcrypt-ruby RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bootstrap-sass RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bourne RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bson RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bson_ext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-builder RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bundler RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bundler_ext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-capillary RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-charlock_holmes RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-coercible RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-coderay RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-coffee-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-coffee-script RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-coffee-script-source RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-commander RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-compass-960-plugin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-crack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-creole RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-cucumber-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-daemon_controller RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-dalli RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-database_cleaner RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-delayed_job RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-delayed_job_active_record RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-delorean RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-descendants_tracker RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-diff-lcs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ditz RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-dynect_rest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-equalizer RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-erubis RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ethon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-eventmachine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-exception_notification RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-excon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-execjs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-expression_parser RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fakefs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fast_gettext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fast_xs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-factory_girl RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-factory_girl_rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-file-tail RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fog RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-force_utf8 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-foreman_api RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-formatador RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-formtastic RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fssm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gem-patch RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gem-nice-install RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gem2rpm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-geoip RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gettext_i18n_rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gherkin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-git-up RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-haml RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-haml-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-hashie RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-hashr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-heroku RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-heroku-api RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-hike RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-hipchat RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-hoptoad_notifier RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-http_connection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-i18n RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-i18n_data RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ice_nine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-innertube RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-introspection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ipaddress RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-jbuilder RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-journey RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-jquery-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-json_pure RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-just_paginate RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-kgio RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-linode RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-listen RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-little-plugger RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-logging RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mail RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-map RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-metaclass RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-method_source RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-middleware RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-minitest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mime-types RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mixlib-authentication RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mixlib-cli RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mixlib-config RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mixlib-log RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mixlib-shellout RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mobileesp_converted RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mocha RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mongo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mono_logger RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multi_json RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multi_xml RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multipart RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multipart-post RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mustache RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-ldap RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-ping RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-scp RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-ssh-gateway RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-netrc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-oauth RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-omniauth RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-open4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-openstack-compute RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-orm_adapter RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-paint RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pdf-inspector RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pdf-reader RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pg RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pkgwat RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-polyglot RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pr_geohash RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-prawn RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-protected_attributes RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-puppet-lint RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rabl RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-cache RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-mount RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-openid RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-protection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-restful_submit RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-ssl RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-test RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails-api RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails_autolink RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails_warden RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails-observers RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-railties RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rainbow RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-raindrops RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rake RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rb-inotify RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rbovirt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rdoc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-recaptcha RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-redis RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-redis-namespace RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ref RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-regin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rerun RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-resque RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rhc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-riddle RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-riot RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rkerberos RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ronn RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rots RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rsolr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-core RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-expectations RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-mocks RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ruby-dbus RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ruby-libvirt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ruby-openid RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ruby-rc4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ruby2ruby RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ruby_parser RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rubypants RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sanitize RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sass RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sass-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-scruffy RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-scoped_search RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sdoc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-session RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sexp_processor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-shindo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-shoulda-context RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-simple-navigation RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sinatra RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-single_test RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-slop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sprockets RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sprockets-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-spruz RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sqlite3 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-state_machine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sup RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-systemu RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-term-ansicolor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-test_declarative RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-text-format RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-therubyracer RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-thin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-thor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-thread_safe RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-tilt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-tiltout RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-timers RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-transaction-simple RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-treetop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-trollop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-turbolinks RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ttfunk RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-typhoeus RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-tzinfo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-uglifier RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-unicode-display_width RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-uuidtools RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-vegas RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-warden RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-webmock RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-will_paginate RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-xmlhash RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-xml-simple RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-yard RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT

Ruby- W

 * rwhoisd DEFAULT http://projects.arin.net/rwhois/ftp/
 * rxvt-unicode DEFAULT http://dist.schmorp.de/rxvt-unicode/
 * rygel DEFAULT GNOME-DEFAULT
 * s3cmd DEFAULT SF-DEFAULT:s3tools
 * s3ql DEFAULT GOOGLE-DEFAULT
 * sage DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
 * sakura DEFAULT LP-DEFAULT
 * samba DEFAULT http://samba.org/ftp/samba/
 * sane-backends DEFAULT http://alioth.debian.org/frs/?group_id=30186
 * saoimage DEFAULT http://tdc-www.harvard.edu/software/saoimage
 * scanmem scanmem-([0-9.]*?) GOOGLE-DEFAULT:scanmem
 * scala DEFAULT http://www.scala-lang.org/downloads
 * scapy DEFAULT http://www.secdev.org/projects/scapy/files/
 * scim DEFAULT SF-DEFAULT
 * scim-bridge DEFAULT SF-DEFAULT:scim
 * scim-fcitx DEFAULT SF-DEFAULT:scim
 * scim-m17n DEFAULT SF-DEFAULT:scim
 * scim-pinyin DEFAULT SF-DEFAULT:scim
 * scipy scipy-([0-9.]*?).tar.gz SF-DEFAULT
 * scitools DEFAULT GOOGLE-DEFAULT
 * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
 * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
 * screen DEFAULT GNU-DEFAULT
 * scribus DEFAULT SF-DEFAULT
 * scsi-target-utils archive/v(.*?)\.zip https://github.com/fujita/tgt/tags
 * sddm archive/(.*?)\.zip https://github.com/sddm/sddm/tags
 * SDL DEFAULT http://www.libsdl.org/download-1.2.php
 * SDL2 DEFAULT http://www.libsdl.org/download-2.0.php
 * sdcv DEFAULT SF-DEFAULT
 * sdparm DEFAULT http://sg.danny.cz/sg/p/
 * seabios DEFAULT http://code.coreboot.org/p/seabios/downloads/
 * seamonkey DEFAULT http://www.seamonkey-project.org/releases/
 * sed DEFAULT GNU-DEFAULT
 * seed DEFAULT GNOME-DEFAULT
 * seekwatcher seekwatcher-(.*?).tar.bz2 http://oss.oracle.com/~mason/seekwatcher/
 * seivot DEFAULT http://code.liw.fi/debian/pool/main/s/seivot/
 * semantik DEFAULT GOOGLE-DEFAULT
 * senamirmir-washra-fonts DEFAULT:washra_fonts http://www.senamirmir.org/projects/typography/typeface.html
 * sendmail \bsendmail[.-]([\d.]+).tar ftp://ftp.sendmail.org/pub/sendmail/
 * sendxmpp DEFAULT http://sendxmpp.platon.sk
 * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
 * sg3_utils DEFAULT http://sg.danny.cz/sg/sg3_utils.html
 * shadow-utils DEFAULT:shadow http://pkg-shadow.alioth.debian.org/releases/
 * sharutils DEFAULT GNU-DEFAULT
 * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
 * shorewall /pub/shorewall/\d+\.\d+/shorewall-(\d+\.\d+\.\d+)/releasenotes.txt http://www.shorewall.net/shorewall_index.htm
 * shortrpm DEFAULT http://v3.sk/~lkundrak/shortrpm
 * shotwell DEFAULT http://yorba.org/download/shotwell/*/
 * shtool DEFAULT GNU-DEFAULT
 * shutter DEFAULT http://shutter-project.org/wp-content/uploads/releases/tars/
 * siege siege-([0-9\.]+).tar.gz http://www.joedog.org/pub/siege/
 * sigil Sigil-([0-9\.]+)-Code.zip GOOGLE-DEFAULT
 * sigscheme DEFAULT GOOGLE-DEFAULT
 * sil-andika-fonts ttf-sil-andika_([\d.]+)\.basic http://scripts.sil.org/AndikaDR_Archive
 * sil-charis-compact-fonts DEFAULT:CharisSILCompact http://scripts.sil.org/CharisSIL_download
 * sil-charis-fonts DEFAULT:CharisSIL http://scripts.sil.org/CharisSIL_download
 * sil-lateef-fonts \bLateefRegOT_([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?item_id=Lateef
 * sil-mingzat-fonts DEFAULT:Mingzat http://scripts.sil.org/Mingzat
 * sil-scheherazade-fonts DEFAULT:Scheherazade http://scripts.sil.org/cms/scripts/page.php?item_id=Scheherazade
 * simspark \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/simspark/
 * sipcalc DEFAULT http://www.routemeister.net/projects/sipcalc/download.html
 * sipwitch DEFAULT GNU-DEFAULT
 * skipfish DEFAULT GOOGLE-DEFAULT
 * sks DEFAULT https://bitbucket.org/skskeyserver/sks-keyserver/downloads
 * skstream DEFAULT SF-DEFAULT:worldforge
 * slang DEFAULT ftp://space.mit.edu/pub/davis/slang/*/
 * sleuthkit DEFAULT SF-DEFAULT
 * slf4j "dist/slf4j-([^"]+).tar.gz" http://www.slf4j.org/download.html
 * slib DEFAULT http://people.csail.mit.edu/jaffer/SLIB.html
 * slock DEFAULT http://tools.suckless.org/slock
 * slrn DEFAULT SF-DEFAULT
 * smartmontools DEFAULT SF-DEFAULT
 * smem smem-([0-9\.]+)\.tar\.gz http://www.selenic.com/smem/download/
 * smokeping DEFAULT http://oss.oetiker.ch/smokeping/pub/
 * smooks ve/v(.*).tar.gz https://github.com/smooks/smooks/releases
 * smp_utils DEFAULT http://sg.danny.cz/sg/smp_utils.html
 * smstools smstools3-(.*?)\.tar\.gz http://smstools3.kekekasvi.com/packages/
 * snakeyaml DEFAULT:SnakeYAML-all GOOGLE-DEFAULT
 * snifflib "([^"]+)/" http://svn.code.sf.net/p/snifflib/code/tags/
 * snmp++ snmp\+\+v([0-9\.]+)\.tar http://www.agentpp.com/snmp_pp3_x/download_snmp_ppv3/body_download_snmp_ppv3.html
 * socat DEFAULT http://www.dest-unreach.org/socat/
 * soci soci-([0-9.]*)\.tar\.gz SF-DEFAULT
 * solfege DEFAULT GNU-DEFAULT
 * sombok ([0-9.]\.[0-9.]\.[0-9.].*)\.tar\.gz http://sourceforge.net/api/file/index/project-name/linefold/mtime/desc/limit/20/rss
 * sonata sonata-(.*?).tar.gz http://sonata.berlios.de/download.html
 * sonic-visualiser DEFAULT https://code.soundsoftware.ac.uk/projects/sonic-visualiser/files
 * soprano DEFAULT SF-DEFAULT
 * sound-juicer DEFAULT GNOME-DEFAULT
 * soundtracker DEFAULT http://www.soundtracker.org/
 * sox DEFAULT SF-DEFAULT
 * soxr DEFAULT SF-DEFAULT
 * spacechart DEFAULT GNU-DEFAULT
 * spamassassin DEFAULT http://spamassassin.apache.org/downloads.cgi
 * sparse DEFAULT http://kernel.org/pub/software/devel/sparse/dist/
 * sparsehash DEFAULT GOOGLE-DEFAULT
 * spatialite-gui DEFAULT http://www.gaia-gis.it/gaia-sins/spatialite-gui-sources/
 * spatialite-tools DEFAULT http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/
 * spectrwm spectrwm-(.*?).tgz https://opensource.conformal.com/snapshots/spectrwm/
 * spew DEFAULT ftp://ftp.berlios.de/pub/spew/Latest/
 * sphinx \bsphinx-(.+?)-release http://sphinxsearch.com/downloads/release/
 * spindown DEFAULT GOOGLE-DEFAULT
 * splint DEFAULT http://www.splint.org/download.html
 * spyder spyder-([\d.]+\d).zip GOOGLE-DEFAULT:spyderlib
 * spring-retry ([0-9.]+).RELEASE.tar.gz https://github.com/spring-projects/spring-retry/releases
 * sqlite ersion\s+([\d.]+\d) http://www.sqlite.org/news.html
 * sqlninja DEFAULT SF-DEFAULT
 * squashfs-tools squashfs([\d.]+)\.t SF-DEFAULT:squashfs
 * squid DEFAULT ftp://ftp.squid-cache.org/pub/squid/
 * sshmenu DEFAULT SF-DEFAULT
 * sslstrip DEFAULT http://www.thoughtcrime.org/software/sslstrip/
 * ssmtp DEFAULT DEBIAN-DEFAULT
 * stapler stapler-parent-([\d\.]+).tar.gz https://github.com/stapler/stapler/tags
 * star DEFAULT ftp://ftp.berlios.de/pub/star
 * stardict DEFAULT GOOGLE-DEFAULT:stardict-3
 * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
 * stax2-api \"(\d+\.\d+[\.\d+]*)\/\" http://repository.codehaus.org/org/codehaus/woodstox/stax2-api/
 * steghide DEFAULT SF-DEFAULT
 * stellarium DEFAULT SF-DEFAULT
 * stgit DEFAULT http://download.gna.org/stgit/
 * stix-fonts \bSTIXv([\d.]+)\.zip SF-DEFAULT:stixfonts
 * stk DEFAULT https://ccrma.stanford.edu/software/stk/download.html
 * strace DEFAULT SF-DEFAULT
 * strigi DEFAULT http://www.vandenoever.info/software/strigi/
 * strongswan DEFAULT http://download.strongswan.org/
 * stow DEFAULT GNU-DEFAULT
 * stunnel DEFAULT http://www.stunnel.org/downloads.html
 * subdownloader DEFAULT LP-DEFAULT
 * subversion DEFAULT https://www.apache.org/dist/subversion/
 * sudo DEFAULT http://www.sudo.ws/sudo/dist/
 * sugar-ruler DEFAULT:Ruler http://download.sugarlabs.org/sources/honey/Ruler/
 * suitesparse DEFAULT:SuiteSparse http://www.cise.ufl.edu/research/sparse/SuiteSparse/
 * summain DEFAULT http://code.liw.fi/debian/pool/main/s/summain/
 * sundials sundials-([0-9.]+)\.tar\.[gzb2]+ http://www.llnl.gov/CASC/sundials/download/download.html
 * supertux DEFAULT http://supertux.lethargik.org/download.html
 * supertuxkart DEFAULT SF-DEFAULT
 * surf surf-(.*?).tar.gz http://dl.suckless.org/surf/
 * surfraw surfraw-(.*?).tar.gz http://surfraw.alioth.debian.org/dist/
 * svn2cl DEFAULT http://arthurdejong.org/svn2cl/downloads.html
 * svni DEFAULT SF-DEFAULT
 * swarp DEFAULT http://www.astromatic.net/download/swarp/
 * swig swig-([0-9.]*?).tar.gz http://sourceforge.net/projects/swig/
 * sxiv DEFAULT https://github.com/muennich/sxiv/downloads
 * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
 * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
 * sympy DEFAULT https://github.com/sympy/sympy/releases
 * synapse DEFAULT LP-DEFAULT:synapse-project
 * synfig DEFAULT SF-DEFAULT
 * synfigstudio DEFAULT SF-DEFAULT:synfig
 * sysbench DEFAULT SF-DEFAULT
 * sysconftool DEFAULT SF-DEFAULT:courier
 * sysfsutils DEFAULT SF-DEFAULT:linux-diag
 * syslinux DEFAULT http://kernel.org/pub/linux/utils/boot/syslinux/
 * syslog-ng >(\d[\w.]+)< http://www.balabit.com/downloads/files/syslog-ng/sources/
 * sysstat DEFAULT http://sebastien.godard.pagesperso-orange.fr/download.html
 * system-config-keyboard DEFAULT https://fedorahosted.org/releases/s/y/system-config-keyboard
 * system-config-rootpassword system-config-rootpassword-([\d+\.]+)/ http://svn.fedorahosted.org/svn/system-config-rootpassword/tags/
 * systemtap DEFAULT http://sourceware.org/systemtap/ftp/releases
 * sysusage SysUsage-Sar-(.*?)\.tar\.gz SF-DEFAULT
 * tack tack-(.*?)\.tgz ftp://invisible-island.net/ncurses/
 * tango-icon-theme-extras DEFAULT http://tango.freedesktop.org/releases/
 * tango-icon-theme DEFAULT http://tango.freedesktop.org/releases/
 * tar DEFAULT GNU-DEFAULT
 * tagsoup tagsoup-([0-9.]*?)-src.zip http://home.ccil.org/~cowan/XML/tagsoup/
 * tcl \btcl([\d.]+)-src\.t SF-DEFAULT
 * tclap DEFAULT SF-DEFAULT
 * tcllib DEFAULT SF-DEFAULT
 * tcsh DEFAULT ftp://ftp.astron.com/pub/tcsh/
 * tcpcopy >v(.*?)< https://github.com/wangbin579/tcpcopy/releases
 * tcpdump DEFAULT http://www.tcpdump.org/release/
 * techne DEFAULT http://download.savannah.gnu.org/releases/techne/
 * telepathy-mission-control DEFAULT http://telepathy.freedesktop.org/releases/telepathy-mission-control/
 * tellico tellico-(.*?)\.tar\.bz2 http://tellico-project.org/download
 * terminus-fonts DEFAULT:terminus-font SF-DEFAULT:terminus-font
 * teseq DEFAULT GNU-DEFAULT
 * tesseract tesseract.([0-9\.]*).tar.gz GOOGLE-DEFAULT:tesseract-ocr
 * testdisk \btestdisk-([\d.]+).tar http://www.cgsecurity.org/wiki/TestDisk_Download
 * testng DEFAULT https://github.com/cbeust/testng/tags
 * texinfo DEFAULT GNU-DEFAULT
 * TeXmacs TeXmacs-(.*?)-src\.tar http://www.texmacs.org/tmweb/download/sources.en.html
 * texmaker DEFAULT http://www.xm1math.net/texmaker/download.html
 * texworks texworks-([.0-9]+)-r GOOGLE-DEFAULT
 * tftp DEFAULT:tftp-hpa http://kernel.org/pub/software/network/tftp/tftp-hpa/
 * thai-scalable-fonts fonts-tlwg-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-tlwg/
 * thai-arundina-fonts fonts-sipa-arundina-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-sipa-arundina/
 * thermostat thermostat-([0-9]+\.[0-9]+(?:\.[0-9]+)?)\.tar\.[a-z]{2}(?!\.[a-z]{2,3}) http://icedtea.wildebeest.org/download/thermostat/
 * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
 * tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/
 * tigervnc DEFAULT SF-DEFAULT
 * time DEFAULT GNU-DEFAULT
 * tin DEFAULT ftp://ftp.tin.org/pub/news/clients/tin/stable/
 * tint2 DEFAULT GOOGLE-DEFAULT
 * tintin DEFAULT SF-DEFAULT
 * tmux DEFAULT SF-DEFAULT
 * tn5250 DEFAULT SF-DEFAULT
 * tnftp DEFAULT ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
 * tntnet DEFAULT http://www.tntnet.org/download.html
 * tokyocabinet DEFAULT http://fallabs.com/tokyocabinet/
 * tomboy DEFAULT GNOME-DEFAULT
 * tomcat DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-7/*/src/
 * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
 * tong DEFAULT http://www.nongnu.org/tong/
 * toppler DEFAULT SF-DEFAULT
 * tor DEFAULT https://www.torproject.org/download/download.html.en
 * torque DEFAULT http://www.adaptivecomputing.com/support/download-center/torque-download/
 * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
 * truezip truezip-(\d.*) https://hg.java.net/hg/truezip~v7/tags
 * towhee DEFAULT SF-DEFAULT
 * trustedqsl DEFAULT:tqsl SF-DEFAULT
 * trac-bazaar-plugin DEFAULT:TracBzr LP-DEFAULT:trac-bzr
 * trackballs DEFAULT SF-DEFAULT
 * translate-toolkit DEFAULT SF-DEFAULT:translate
 * transmission DEFAULT http://www.transmissionbt.com/download/
 * transmission-remote-cli \bVERSION\s*=\s*'([^']+)' https://raw.github.com/fagga/transmission-remote-cli/master/transmission-remote-cli
 * transmission-remote-gtk DEFAULT GOOGLE-DEFAULT
 * trash-cli DEFAULT PYPI-DEFAULT
 * tree tree-([0-9a-z.]+).tgz http://mama.indstate.edu/users/ice/tree/
 * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
 * tremulous DEFAULT SF-DEFAULT
 * trilead-putty-extension DEFAULT https://github.com/kohsuke/trilead-putty-extension/tags
 * ttf2pt1 \bttf2pt1-(\d\.[\d.]+)\.tgz SF-DEFAULT
 * ttfautohint DEFAULT http://download.savannah.gnu.org/releases/freetype/
 * tulrich-tuffy-fonts <th[^>]*>[ ]*Tuffy[ ]*([^< ]*)[ ]*</th> http://tulrich.com/fonts/
 * tumbler DEFAULT http://archive.xfce.org/src/xfce/tumbler/*/
 * tuna DEFAULT http://fedorapeople.org/~acme/tuna/
 * tunctl DEFAULT SF-DEFAULT
 * tunneler DEFAULT http://users.jyu.fi/~tvkalvas/code/tunneler
 * TurboGears DEFAULT http://www.turbogears.org/1.0/downloads/current/
 * TurboGears2 DEFAULT http://www.turbogears.org/2.1/downloads/current/
 * typespeed DEFAULT SF-DEFAULT
 * tzdata tzdata(.*?)\.tar\.gz ftp://ftp.iana.org/tz/releases/
 * uboot-tools DEFAULT:u-boot ftp://ftp.denx.de/pub/u-boot/
 * uClibc DEFAULT http://uclibc.org/downloads/
 * ucommon DEFAULT http://dev.gnutelephony.org/dist/tarballs/
 * uddi4j DEFAULT SF-DEFAULT
 * udis86 DEFAULT SF-DEFAULT
 * udisks DEFAULT http://hal.freedesktop.org/releases/
 * udisks2 DEFAULT:udisks http://udisks.freedesktop.org/releases/ 
 * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
 * ufraw DEFAULT SF-DEFAULT
 * ugene DEFAULT http://ugene.unipro.ru/downloads/ugene_get_latest_source.html
 * uim DEFAULT GOOGLE-DEFAULT
 * ulogd DEFAULT http://ftp.netfilter.org/pub/ulogd/
 * un-core-fonts un-fonts-core-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * un-extra-fonts un-fonts-extra-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * unalz DEFAULT http://www.kippler.com/win/unalz/
 * unbound DEFAULT http://unbound.net/download.html
 * uncrustify DEFAULT SF-DEFAULT
 * unetbootin unetbootin-source-(.*?)\.tar\.gz SF-DEFAULT
 * unicode-ucd ([0-9.]+)/ http://www.unicode.org/Public/zipped/
 * unison240 unison-(2\.40[.0-9]+) http://www.seas.upenn.edu/~bcpierce/unison/download/releases/
 * units DEFAULT GNU-DEFAULT
 * unlambda unlambda-(.*?).tar.gz http://hackage.haskell.org/package/unlambda
 * unoconv DEFAULT http://dag.wieers.com/home-made/unoconv/
 * unrtf DEFAULT GNU-DEFAULT
 * unuran unuran-([0-9.]*).tar.gz http://statmath.wu.ac.at/src/
 * up-imapproxy DEFAULT:squirrelmail-imap_proxy SF-DEFAULT:squirrelmail
 * uperf DEFAULT SF-DEFAULT
 * upower DEFAULT http://upower.freedesktop.org/releases/
 * UpTools DEFAULT http://www.palermo.edu/ingenieria/uptools_ingles.html
 * urjtag DEFAULT SF-DEFAULT
 * usb_modeswitch usb-modeswitch-(.*?)\.tar\. http://www.draisberghof.de/usb_modeswitch/
 * usb_modeswitch-data usb-modeswitch-data-(.*?)\.tar\. http://www.draisberghof.de/usb_modeswitch/
 * usbutils DEFAULT http://kernel.org/pub/linux/utils/usb/usbutils/
 * uucp DEFAULT GNU-DEFAULT
 * vacation vacation-(.*?).tar.gz SF-DEFAULT
 * vala DEFAULT GNOME-DEFAULT
 * valknut DEFAULT SF-DEFAULT:wxdcgui
 * vamp-plugin-sdk DEFAULT http://www.vamp-plugins.org/develop.html
 * vanityhash DEFAULT http://www.finnie.org/software/vanityhash/
 * varconf DEFAULT SF-DEFAULT:worldforge
 * vcsh ve/v(.*?)\.tar\.gz https://github.com/RichiH/vcsh/tags
 * vdr DEFAULT ftp://ftp.tvdr.de/vdr/
 * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
 * vdr-femon DEFAULT http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/index.php
 * vdr-osdteletext DEFAULT http://projects.vdr-developer.org/projects/plg-osdteletext/files
 * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
 * vdr-screenshot DEFAULT http://www.joachim-wilke.de/vdr-screenshot.htm
 * vdr-skinenigmang DEFAULT http://andreas.vdr-developer.org/enigmang/download.html
 * vdr-skinsoppalusikka DEFAULT http://www.saunalahti.fi/~rahrenbe/vdr/soppalusikka/
 * vdr-streamdev DEFAULT http://projects.vdr-developer.org/projects/plg-streamdev/files
 * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/plg-sudoku/files
 * vdr-ttxtsubs DEFAULT http://projects.vdr-developer.org/projects/plg-ttxtsubs/files
 * vdradmin-am DEFAULT http://andreas.vdr-developer.org/vdradmin-am/download.html
 * vdrsymbol-fonts DEFAULT:vdrsymbols-ttf http://andreas.vdr-developer.org/fonts/download.html
 * velocity ([0-9.]+)/ http://www.apache.org/dist/velocity/engine/
 * vidalia DEFAULT http://www.torproject.org/vidalia/index.html.en
 * viewnior DEFAULT http://xsisqox.github.com/Viewnior/download.html
 * vifm DEFAULT SF-DEFAULT
 * vile DEFAULT ftp://invisible-island.net/vile/current/
 * vim DEFAULT http://ftp.vim.org/pub/vim/unix/
 * vim-command-t command-t-(.*?)\.vba http://www.vim.org/scripts/script.php?script_id=3025
 * vim-jedi archive/(.*?)\.zip https://github.com/davidhalter/jedi-vim/tags
 * vim-latex vim-latex-(.*?).tar.gz SF-DEFAULT
 * vips DEFAULT http://www.vips.ecs.soton.ac.uk/supported/current/
 * virtaal DEFAULT SF-DEFAULT:translate
 * ViTables DEFAULT GOOGLE-DEFAULT:vitables
 * vmmlib DEFAULT SF-DEFAULT
 * vmpk DEFAULT SF-DEFAULT
 * vmpsd DEFAULT SF-DEFAULT:vmps
 * vmtouch DEFAULT https://github.com/hoytech/vmtouch/tags
 * vlgothic-fonts DEFAULT:VLGothic http://sourceforge.jp/projects/vlgothic/releases/
 * vorbis-tools DEFAULT http://downloads.xiph.org/releases/vorbis/
 * vrq DEFAULT SF-DEFAULT
 * vsftpd DEFAULT https://security.appspot.com/vsftpd.html
 * vttest DEFAULT ftp://invisible-island.net/vttest/
 * vzctl vzctl-([0-9.]*?)\" http://git.openvz.org/?p=vzctl;a=tags
 * w3c-markup-validator validator-(\d.*?)\.t http://validator.w3.org/dist/
 * wdiff DEFAULT GNU-DEFAULT
 * wv ">([0-9]\.[0-9]\.[0-9])/</a> http://www.abisource.com/downloads/wv/
 * vym vym-([0-9.]*)-.*.src.rpm http://download.opensuse.org/repositories/home://insilmaril/openSUSE_Factory/src/
 * w3m DEFAULT SF-DEFAULT
 * waf DEFAULT GOOGLE-DEFAULT
 * wannier90 DEFAULT http://www.wannier.org/download.html
 * warzone2100 DEFAULT SF-DEFAULT
 * wastesedge >wastesedge(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
 * wavemon DEFAULT http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/
 * wfmath DEFAULT SF-DEFAULT:worldforge
 * wget DEFAULT GNU-DEFAULT
 * wgrib wgrib\.c\.v([0-9a-z.]+) ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib/
 * wgrib2 wgrib2.tgz.v([0-9a-z.]+) ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/
 * which DEFAULT GNU-DEFAULT
 * whois DEFAULT DEBIAN-DEFAULT
 * wicd DEFAULT http://launchpad.net/wicd/+download
 * wildfly archive/(.*?).tar.gz https://github.com/wildfly/wildfly/releases
 * WindowMaker DEFAULT http://windowmaker.org/pub/source/release/
 * wine DEFAULT SF-DEFAULT
 * wings v([\d+\.]+)\.zip https://github.com/dgud/wings/tags
 * wireless-tools wireless_tools\.(.*?)\.tar\.gz http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
 * wireshark wireshark-(\d+\.\d*[02468]\.\d+).tar.bz2 http://www.wireshark.org/download/src/all-versions/
 * wise DEFAULT http://www.jboss.org/wise/downloads
 * wol DEFAULT SF-DEFAULT:wake-on-lan
 * woodstox-core DEFAULT:woodstox-core-src http://wiki.fasterxml.com/WoodstoxDownload
 * wordnet WordNet-([0-9.]*)\.[tz][ai][rp] http://wordnet.princeton.edu/wordnet/download/current-version/
 * wordpress DEFAULT http://wordpress.org/download/release-archive/
 * worker DEFAULT http://www.boomerangsworld.de/cms/worker/downloads/
 * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
 * wpa_supplicant DEFAULT http://w1.fi/releases/
 * writerperfect writerperfect-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
 * wsdl4j DEFAULT SF-DEFAULT
 * wqy-microhei-fonts DEFAULT:wqy-microhei SF-DEFAULT:wqy
 * wqy-zenhei-fonts DEFAULT:wqy-zenhei SF-DEFAULT:wqy
 * wxGTK DEFAULT:wxWidgets ftp://ftp.wxwidgets.org/pub/*/
 * wxsqlite3 DEFAULT http://sourceforge.net/projects/wxcode/files/Components/wxSQLite3/

X-Z

 * x3270 DEFAULT:suite3270 SF-DEFAULT
 * xalan-c Xalan-C\+\+.version.(.*?)< http://xml.apache.org/xalan-c/
 * xsane DEFAULT http://www.xsane.org/download/
 * xaos DEFAULT GNU-DEFAULT
 * xar DEFAULT GOOGLE-DEFAULT
 * xarchiver DEFAULT SF-DEFAULT
 * xastir DEFAULT SF-DEFAULT
 * xautomation DEFAULT http://hoopajoo.net/projects/xautomation.html
 * Xaw3d DEFAULT:libXaw3d http://xorg.freedesktop.org/archive/individual/lib/
 * xbacklight DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xbean ([0-9]\.[0-9.]+)/ http://repo2.maven.org/maven2/org/apache/xbean/xbean/
 * xboard DEFAULT GNU-DEFAULT
 * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-image DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-keysyms DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-renderutil DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-wm DEFAULT http://xcb.freedesktop.org/dist/
 * xchat Source: (.*?)</a> http://www.xchat.org/
 * xchm DEFAULT SF-DEFAULT
 * xcompmgr DEFAULT http://xorg.freedesktop.org/archive/individual/app/
 * xdg-utils DEFAULT http://portland.freedesktop.org/download/
 * xdelta DEFAULT:xdelta3 GOOGLE-DEFAULT
 * xdrawchem DEFAULT SF-DEFAULT
 * xdrfile DEFAULT ftp://ftp.gromacs.org/pub/contrib/
 * xerces-c DEFAULT http://www.apache.org/dist/xerces/c/*/sources/
 * xerces-j2 (?i)xerces-j-src[-.]([\d.]+)\.(?:t|zip) http://www.apache.org/dist/xerces/j/source/
 * xfce4-embed-plugin DEFAULT http://archive.xfce.org/src/panel-plugins/xfce4-embed-plugin/*/
 * xfsdump xfsdump-([0-9.]*).tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
 * xfsprogs xfsprogs-([0-9.]*).tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
 * xgridfit DEFAULT SF-DEFAULT
 * xinetd DEFAULT http://www.xinetd.org/
 * xkbset DEFAULT http://www.math.missouri.edu/~stephen/software/xkbset/
 * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
 * xl2tpd archive/v(\d+\..+?\..*?)\.zip https://github.com/xelerance/xl2tpd/tags
 * xlhtml DEFAULT SF-DEFAULT:chicago
 * xmlbeans DEFAULT http://www.apache.org/dist/xmlbeans/source/
 * xmlgraphics-commons DEFAULT http://www.apache.org/dist/xmlgraphics/commons/source/
 * xml-security-c DEFAULT http://archive.apache.org/dist/santuario/c-library/
 * xml2 DEFAULT http://download.ofb.net/gale/
 * xmlrpc DEFAULT:apache-xmlrpc http://www.apache.org/dist/ws/xmlrpc/sources/
 * xmlstarlet DEFAULT SF-DEFAULT:xmlstar
 * xmltoman DEFAULT SF-DEFAULT
 * xmlunit DEFAULT SF-DEFAULT
 * xmms DEFAULT http://www.xmms.org/download.php
 * xmobar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmonad-log-applet DEFAULT GOOGLE-DEFAULT
 * xmoto DEFAULT http://download.tuxfamily.org/xmoto/xmoto/*/
 * xnoise DEFAULT https://bitbucket.org/shuerhaaken/xnoise/downloads
 * xorg-sgml-doctools DEFAULT http://xorg.freedesktop.org/archive/individual/doc/
 * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
 * xorg-x11-drv-apm xf86-video-apm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ati xf86-video-ati-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-cirrus xf86-video-cirrus-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-dummy xf86-video-dummy-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-evdev xf86-input-evdev-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-fbdev xf86-video-fbdev-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-geode xf86-video-geode-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-glint xf86-video-glint-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i128 xf86-video-i128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i740 xf86-video-i740-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-intel xf86-video-intel-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ivtv DEFAULT:xf86-video-ivtv http://dl.ivtvdriver.org/xf86-video-ivtv/archive/*/
 * xorg-x11-drv-keyboard xf86-input-keyboard-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mach64 xf86-video-mach64-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mga xf86-video-mga-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-modesetting xf86-video-modesetting-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mouse xf86-input-mouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-neomagic xf86-video-neomagic-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-nouveau xf86-video-nouveau-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-openchrome xf86-video-openchrome-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-qxl xf86-video-qxl-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-r128 xf86-video-r128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-rendition xf86-video-rendition-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-s3virge xf86-video-s3virge-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-savage xf86-video-savage-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-siliconmotion xf86-video-siliconmotion-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sis xf86-video-sis-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sisusb xf86-video-sisusb-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-synaptics xf86-input-synaptics-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-tdfx xf86-video-tdfx-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-trident xf86-video-trident-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-v4l xf86-video-v4l-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vesa xf86-video-vesa-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmmouse xf86-input-vmmouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmware xf86-video-vmware-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-void xf86-input-void-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-voodoo xf86-video-voodoo-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-wacom xf86-input-wacom-(.*?)\.tar\.bz2 http://sf.net/projects/linuxwacom/files/
 * xorg-x11-glamor glamor-egl-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-server xorg-server-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/xserver/
 * xorg-x11-twm twm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-util-macros util-macros-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/util/
 * xorg-x11-xauth xauth-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xbitmaps xbitmaps-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/data
 * xorg-x11-xdm xdm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xfs xfs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xfwp xfwp-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xinit xinit-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xsm xsm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xtrans-devel xtrans-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/lib/
 * xosd DEFAULT SF-DEFAULT:libxosd
 * xournal DEFAULT SF-DEFAULT
 * xpenguins DEFAULT http://xpenguins.seul.org/
 * xpp2 PullParser([0-9.]*?)\.tgz http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/
 * xrestop DEFAULT http://downloads.yoctoproject.org/releases/xrestop/
 * xscreensaver DEFAULT http://www.jwz.org/xscreensaver/download.html
 * xstream <version>([^<]+)</version> https://nexus.codehaus.org/content/repositories/releases/com/thoughtworks/xstream/xstream-distribution/maven-metadata.xml
 * xteddy DEFAULT http://webstaff.itn.liu.se/~stegu/xteddy
 * xterm DEFAULT ftp://invisible-island.net/xterm/
 * xvkbd DEFAULT http://homepage3.nifty.com/tsato/xvkbd/
 * xxdiff DEFAULT SF-DEFAULT
 * xz xz-(.*?)\.tar\.gz http://tukaani.org/xz/
 * xz-java xz-java-([0-9.]*?).zip http://tukaani.org/xz/java.html
 * x-tile x-tile-(.*?)\.tar\..* http://www.giuspen.com/x-tile/
 * yad DEFAULT GOOGLE-DEFAULT
 * yadex DEFAULT http://www.teaser.fr/~amajorel/yadex/download.html
 * yaml-cpp DEFAULT GOOGLE-DEFAULT
 * yasm DEFAULT http://www.tortall.net/projects/yasm/releases/
 * yaz DEFAULT http://ftp.indexdata.dk/pub/yaz/
 * yersinia DEFAULT http://www.yersinia.net/download/
 * ykpers DEFAULT GOOGLE-DEFAULT:yubikey-personalization
 * youtube-dl /youtube-dl">([\d.]+)</a> http://rg3.github.com/youtube-dl/download.html
 * ypbind DEFAULT:ypbind-mt http://www.linux-nis.org/download/ypbind-mt/
 * ypserv DEFAULT http://www.linux-nis.org/download/ypserv/
 * yp-tools DEFAULT http://www.linux-nis.org/download/yp-tools/
 * ytree DEFAULT http://www.han.de/~werner/ytree.html
 * z88dk DEFAULT SF-DEFAULT
 * zeroinstall-injector DEFAULT:0install SF-DEFAULT:zero-install
 * zidrav DEFAULT:zidrav4unix SF-DEFAULT
 * zile DEFAULT GNU-DEFAULT
 * Zim zim-(.*?)\.tar\.gz http://zim-wiki.org/downloads/
 * zinnia DEFAULT SF-DEFAULT
 * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
 * znc DEFAULT https://github.com/znc/znc/tags
 * zsh DEFAULT SF-DEFAULT
 * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf


Package Owner Ignore List

If you do not want to get any bug reports or mails from Upstream Release Monitoring for any of the packages you own, please add your FAS username to the list:

Note.png
Only for package owners
You might still be CC'ed on bug reports for packages you co-maintain.
  • ausil
  • corsepiu
  • davidz
  • ensc
  • tgl
  • mclasen
  • mtasaka

Package Ignore List

This is a list of packages, for which nobody should be nagged.

Note.png
For humans only
This list is not yet considered by the tool running this service.


Reason: it is released using daily snapshots:
* foomatic-db foomatic-db-(.*?[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
Impossible to track, they are formed by subpackages:
* xorg-x11-apps
* xorg-x11-font-utils
* xorg-x11-fonts
* xorg-x11-proto-devel
* xorg-x11-resutils
* xorg-x11-server-utils
* xorg-x11-utils
* xorg-x11-xkb-utils
Unplottable, fedora and upstream versions are incompatible.
* kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=635372#c2 ) :
* git
Package maintainer does not care about updates ( CLOSED WONTFIX https://bugzilla.redhat.com/show_bug.cgi?id=646941 ):
* elilo DEFAULT SF-DEFAULT
Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=722662#c2 ) :
* puppet
Remove shared-mime-info, I'm the upstream maintainer(Hadess)
* shared-mime-info DEFAULT http://people.freedesktop.org/~hadess/
Any package that is part of the coordinated KDE Software Compilation releases.
Those packages are handled as a whole and do not need individual bugs filed.
(Advance notification comes through the kde-packager mailing list.)

No notice wanted: https://bugzilla.redhat.com/show_bug.cgi?id=920611#c2 https://fedoraproject.org/w/index.php?title=Upstream_release_monitoring&diff=326643&oldid=326623

* gputils DEFAULT SF-DEFAULT
* ngspice (\d+[\d+]*) http://sourceforge.net/projects/ngspice/files/ng-spice-rework/
* piklab DEFAULT SF-DEFAULT
* pikloops DEFAULT SF-DEFAULT

Requested by Milan Crha to not be monitored:

* evolution DEFAULT GNOME-DEFAULT
* evolution-data-server
* evolution-ews
* evolution-mapi
* gtkhtml3

Retired Packages

This is a list of packages, that have been retired, i.e. do not exist anymore in Fedora devel

Note.png
For humans only
This list is not yet considered by the tool running this service.

Related Projects