From Fedora Project Wiki

Revision as of 14:05, 28 July 2014 by Theinric (talk | contribs) (Adding libmongo-client)

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 in Fedora. You can use globbing/wildcards supported by the python fnmatch module. It matches againsg source RPMS in Fedora Rawhide.
  • <version regex> - The regular expression used to find the upstream versions of a package. Examples can be found in the list. A default regex aliased DEFAULT usually works for packages distributed by sourceforge. 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/regex Aliases

There are some aliases supported for URLs or regexes. A full list can be found in the source code. If no implicit regex is defined, the DEFAULT regex is assumed. For some aliases a prefix is removed from the name before evaluating it, for these one or more prefixes are defined. If the automatic name processing is inappropriate, the name can be overridden using a colon, for example as follows: gnuchess DEFAULT GNU-DEFAULT:chess.

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.

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.

NOTICES

Google Code does not allow to create new downloads starting on January 15, 2014: http://google-opensource.blogspot.com/2013/05/a-change-to-google-code-download-service.html

In January 2014 BerliOS announced that they will disable their hosting services on 30th April 2014: http://en.wikipedia.org/wiki/BerliOS#Closure_and_relaunch

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
* gimp-paint-studio http://code.google.com/p/gps-gimp-paint-studio/
* campivisivi-titillium-fonts http://www.campivisivi.net/titillium/
* azureus(vuze) https://www.vuze.com/
* drupal6-features_extra http://drupal.org/project/features_extra
* xinetd http://github.com/xinetd-org/xinetd
* dhcp http://ftp.isc.org/isc/dhcp/
* lmdb http://symas.com/mdb/
* kismet http://www.kismetwireless.net/code/

* UPSTREAM SERVER DOWN
* 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
* wvdial http://alumnit.ca/wiki/index.php?page=DownloadReleases
* latencytop http://latencytop.org
* bltk http://www.lesswatts.org/patches/bltk/
* numlockx http://home.kde.org/~seli/numlockx/



'apanov-heuristica-fonts' (apanov-heuristica-fonts: no upstream version found. - http://code.google.com/p/evristika/downloads/list - (?i)\bheuristica[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'bip' (bip: Pycurl while retrieving upstream URL. - https://projects.duckcorp.org/projects/bip/files - (?i)\bbip[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (60, "Peer's Certificate issuer is not recognized."))
'brltty' (brltty: Pycurl while retrieving upstream URL. - http://mielke.cc/brltty/download.html - (?i)\bbrltty[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Operation timed out after 30562 milliseconds with 0 out of -1 bytes received'))
'bti' (bti: Pycurl while retrieving upstream URL. - https://github.com/gregkh/bti/tags - (\d\d\d)\.zip (28, 'Connection timed out after 10161 milliseconds'))
'btkbdd' (btkbdd: Pycurl while retrieving upstream URL. - https://github.com/lkundrak/virtkbd/tags - \bv([\d+\.]+)\b (28, 'Connection timed out after 10161 milliseconds'))
'buildbot' (buildbot: Pycurl while retrieving upstream URL. - https://github.com/buildbot/buildbot/releases - archive/v(.*?)\.zip (28, 'Connection timed out after 10162 milliseconds'))
'bzrtools' (bzrtools: Pycurl while retrieving upstream URL. - http://wiki.bazaar.canonical.com/BzrTools - (?i)\bbzrtools[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Operation timed out after 30222 milliseconds with 0 out of -1 bytes received'))
'chromaprint' (chromaprint: Pycurl while retrieving upstream URL. - https://github.com/lalinsky/chromaprint/downloads - (?i)\bchromaprint[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Connection timed out after 10160 milliseconds'))
'claws-mail' (claws-mail: no upstream version found. - http://sourceforge.net/api/file/index/project-name/sylpheed-claws/mtime/desc/limit/200/rss - (?i)\bclaws\-mail[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'clojure-maven-plugin' (clojure-maven-plugin: Pycurl while retrieving upstream URL. - https://github.com/talios/clojure-maven-plugin/tags - (?i)\bclojure\-maven\-plugin[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Connection timed out after 10160 milliseconds'))
'cmockery2' (cmockery2: Pycurl while retrieving upstream URL. - https://api.github.com/repos/lpabon/cmockery2/tags - "name":\s*"[^\d]*([\d\.]+)" (28, 'Connection timed out after 10161 milliseconds'))
'codeblocks' (codeblocks: no upstream version found. - http://sourceforge.net/api/file/index/project-name/codeblocks/mtime/desc/limit/200/rss - (?i)\bcodeblocks[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'coin-or-Sample' (coin-or-Sample: no upstream version found. - http://www.coin-or.org/download/source/Sample - (?i)\bSample[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'collada-dom' (collada-dom: Pycurl while retrieving upstream URL. - https://api.github.com/repos/rdiankov/collada-dom/tags - "name":\s*"[^\d]*([\d\.]+)" (28, 'Connection timed out after 10160 milliseconds'))
'corosync' (corosync: Pycurl while retrieving upstream URL. - https://github.com/corosync/corosync/downloads - (?i)\bcorosync[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Connection timed out after 10162 milliseconds'))
'cqrlog' (cqrlog: Pycurl while retrieving upstream URL. - http://www.cqrlog.com/download - cqrlog\_(.*?)\.src\.tar\.gz (28, 'Operation timed out after 30226 milliseconds with 0 out of -1 bytes received'))
'csmith' (csmith: Pycurl while retrieving upstream URL. - https://github.com/csmith-project/csmith/tags - csmith-([0-9.]*)\.tar\.gz (28, 'Connection timed out after 10161 milliseconds'))
'csslint' (csslint: Pycurl while retrieving upstream URL. - https://github.com/stubbornella/csslint/releases - archive/v(.*?)\.zip (28, 'Connection timed out after 10160 milliseconds'))
'dans-gdal-scripts' (dans-gdal-scripts: Pycurl while retrieving upstream URL. - https://api.github.com/repos/gina-alaska/dans-gdal-scripts/tags - "name":\s*"[^\d]*([\d\.]+)" (28, 'Connection timed out after 10160 milliseconds'))
'dbus-sharp' (dbus-sharp: Pycurl while retrieving upstream URL. - http://github.com/mono/dbus-sharp/releases - e/v(.*?)\.zip (28, 'Connection timed out after 10160 milliseconds'))
'docker-io' (docker-io: Pycurl while retrieving upstream URL. - https://github.com/dotcloud/docker/releases - v([0-9]+\.[0-9]+\.*[0-9]?).tar.gz (28, 'Connection timed out after 10162 milliseconds'))
'docker-registry' (docker-registry: Pycurl while retrieving upstream URL. - https://github.com/dotcloud/docker-registry/releases - ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz (28, 'Connection timed out after 10163 milliseconds'))
'drupal6-advanced-help' (drupal6-advanced-help: no upstream version found. - http://drupal.org/project/advanced-help - (?s)Recommended releases.*?>6.x-([^<]*))
'drupal6-authfas' (drupal6-authfas: no upstream version found. - http://drupal.org/project/authfas - (?s)Recommended releases.*?>6.x-([^<]*))
'drupal6-theme-ninesixty' (drupal6-theme-ninesixty: no upstream version found. - http://drupal.org/project/theme-ninesixty - (?s)Recommended releases.*?>6.x-([^<]*))
'drupal7-theme-adaptivetheme' (drupal7-theme-adaptivetheme: no upstream version found. - http://drupal.org/project/theme-adaptivetheme - (?s)Recommended releases.*?>7.x-([^<]*))
'drupal7-theme-ninesixty' (drupal7-theme-ninesixty: no upstream version found. - http://drupal.org/project/theme-ninesixty - (?s)Recommended releases.*?>7.x-([^<]*))
'drupal7-theme-zen' (drupal7-theme-zen: no upstream version found. - http://drupal.org/project/theme-zen - (?s)Recommended releases.*?>7.x-([^<]*))
'dsniff' (dsniff: Pycurl while retrieving upstream URL. - http://www.monkey.org/~dugsong/dsniff/ - (?i)\bdsniff[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (7, 'Failed connect to www.monkey.org:80; Connection refused'))
'dtv-scan-tables' (dtv-scan-tables: no upstream version found. - http://linuxtv.org/downloads/dtv-scan-tables/ - (?i)\bdtv\-scan\-tables[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'fedfs-utils' (fedfs-utils: no upstream version found. - http://oss.oracle.com/projects/fedfs-utils/files/ - fedfs-utils-([0-9.]*?).tar.gz)
'fido' (fido: no upstream version found. - http://www.joedog.org/pub/fido/ - fido-([0-9\.]+).tar.gz)
'filezilla' (filezilla: no upstream version found. - http://download.filezilla-project.org/ - FileZilla\_([0-9\.]+)\_src.tar.bz2)
'firehol' (firehol: no upstream version found. - http://firehol.org/download/latest/ - (?i)\bfirehol[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'fluxbox' (fluxbox: no upstream version found. - http://fluxbox.org/download/ - (?i)\bfluxbox[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'freight' (freight: no upstream version found. - https://api.github.com/repos/rcrowley/freight/tags - "name":\s*"[^\d]*([\d\.]+)")
'gdesklets' (gdesklets: Pycurl while retrieving upstream URL. - http://www.gdesklets.de/ - (?i)\bgdesklets[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (7, 'Failed connect to www.gdesklets.de:80; Connection refused'))
'ghc-rpm-macros' (ghc-rpm-macros: no upstream version found. - http://hackage.haskell.org/package/rpm-macros - (?i)\brpm\-macros[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'ghc-srpm-macros' (ghc-srpm-macros: no upstream version found. - http://hackage.haskell.org/package/srpm-macros - (?i)\bsrpm\-macros[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'glances' (glances: no upstream version found. - https://api.github.com/repos/nicolargo/glances/tags - "name":\s*"[^\d]*([\d\.]+)")
'gnu-getopt' (gnu-getopt: Pycurl while retrieving upstream URL. - http://www.urbanophile.com/arenn/hacking/download.html - (?i)\bjava\-getopt[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Connection timed out after 10161 milliseconds'))
'gourmet' (gourmet: no upstream version found. - https://api.github.com/repos/thinkle/gourmet/tags - "name":\s*"[^\d]*([\d\.]+)")
'gpaste' (gpaste: no upstream version found. - https://api.github.com/repos/Keruspe/GPaste/tags - "name":\s*"[^\d]*([\d\.]+)")
'gpscorrelate' (gpscorrelate: no upstream version found. - https://api.github.com/repos/freefoote/gpscorrelate/tags - "name":\s*"[^\d]*([\d\.]+)")
'greybird' (greybird: no upstream version found. - https://api.github.com/repos/shimmerproject/Greybird/tags - "name":\s*"[^\d]*([\d\.]+)")
'heimdall' (heimdall: no upstream version found. - https://api.github.com/repos/Benjamin-Dobell/Heimdall/tags - "name":\s*"[^\d]*([\d\.]+)")
'hiredis' (hiredis: no upstream version found. - https://api.github.com/repos/redis/hiredis/tags - "name":\s*"[^\d]*([\d\.]+)")
'iftop' (iftop: Pycurl while retrieving upstream URL. - http://www.ex-parrot.com/pdw/iftop/download/ - (?i)\biftop[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Connection timed out after 10161 milliseconds'))
'ikarus' (ikarus: no upstream version found. - http://ikarus-scheme.org/ - (?i)\bikarus[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'jasmine' (jasmine: no upstream version found. - http://registry.npmjs.org/jasmine - "version":"([0-9.]*?)")
'jhdf5' (jhdf5: no upstream version found. - http://www.hdfgroup.org/ftp/HDF5/hdf-java/src/ - (?i)\bhdf\-java[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'jna' (jna: no upstream version found. - https://api.github.com/repos/twall/jna/tags - "name":\s*"[^\d]*([\d\.]+)")
'kapow' (kapow: no upstream version found. - https://api.github.com/repos/gottcode/kapow/tags - "name":\s*"[^\d]*([\d\.]+)")
'kdesvn' (kdesvn: no upstream version found. - http://kdesvn.alwins-world.de/downloads/ - (?i)\bkdesvn[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'keybinder' (keybinder: no upstream version found. - http://kaizer.se/publicfiles/keybinder/ - (?i)\bkeybinder[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'ktikz' (ktikz: Pycurl while retrieving upstream URL. - http://www.hackenberger.at/ktikz/ - ktikz[_-](.*?)\.tar\.gz (7, 'Failed connect to www.hackenberger.at:80; No route to host'))
'lazarus' (lazarus: no upstream version found. - http://sourceforge.net/api/file/index/project-name/lazarus/mtime/desc/limit/200/rss - (?i)\blazarus[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'ledger' (ledger: no upstream version found. - https://api.github.com/repos/ledger/ledger/tags - "name":\s*"[^\d]*([\d\.]+)")
'lensfun' (lensfun: no upstream version found. - http://developer.berlios.de/project/showfiles.php?group_id=9034 - (?i)\blensfun[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'libchewing' (libchewing: no upstream version found. - https://api.github.com/repos/chewing/libchewing/tags - "name":\s*"[^\d]*([\d\.]+)")
'libetpan' (libetpan: no upstream version found. - https://api.github.com/repos/dinhviethoa/libetpan/tags - "name":\s*"[^\d]*([\d\.]+)")
'libfreenect' (libfreenect: no upstream version found. - https://api.github.com/repos/OpenKinect/libfreenect/tags - "name":\s*"[^\d]*([\d\.]+)")
'libgexiv2' (libgexiv2: no upstream version found. - http://yorba.org/download/gexiv2/*/ - (?i)\blibgexiv2[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'libgit2' (libgit2: no upstream version found. - https://api.github.com/repos/libgit2/libgit2/tags - "name":\s*"[^\d]*([\d\.]+)")
'libhtp' (libhtp: no upstream version found. - https://api.github.com/repos/ironbee/libhtp/tags - "name":\s*"[^\d]*([\d\.]+)")
'libidn2' (libidn2: no upstream version found. - http://ftp.gnu.org/gnu/libidn/ - (?i)\blibidn2[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'liblastfm' (liblastfm: no upstream version found. - https://api.github.com/repos/lastfm/liblastfm/tags - "name":\s*"[^\d]*([\d\.]+)")
'libpng15' (libpng15: IO error while retrieving upstream URL. - ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng15/ - (?i)\blibpng[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'librecad' (librecad: no upstream version found. - https://api.github.com/repos/LibreCAD/LibreCAD/tags - "name":\s*"[^\d]*([\d\.]+)")
'libreoffice-gallery-vrt-network-equipment' (libreoffice-gallery-vrt-network-equipment: no upstream version found. - http://www.vrt.com.au/downloads/vrt-network-equipment - VRTnetworkequipment_(\d+\.\d+\.\d+)\.oxt)
'libspiro' (libspiro: no upstream version found. - https://github.com/fontforge/libspiro/ - v(.*?)\.tar.gz)
'libuninameslist' (libuninameslist: no upstream version found. - https://github.com/fontforge/libuninameslist/releases - (0\.*?)\.tar.*)
'libwebp' (libwebp: no upstream version found. - http://code.google.com/p/libwebp/downloads/list - (?i)\blibwebp[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'logserial' (logserial: no upstream version found. - http://www.ibiblio.org/pub/Linux/system/serial/ - (?i)\blogserial[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'lrzip' (lrzip: Pycurl while retrieving upstream URL. - http://lrzip.kolivas.org/ - (?i)\blrzip[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (7, 'Failed connect to lrzip.kolivas.org:80; Operation now in progress'))
'lsnipes' (lsnipes: Pycurl while retrieving upstream URL. - http://www.ugcs.caltech.edu/~boultonj/snipes/ - (?i)\blsnipes[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Operation timed out after 30817 milliseconds with 0 out of -1 bytes received'))
'lua-filesystem' (lua-filesystem: no upstream version found. - http://luarocks.org/repositories/rocks/ - (?i)\bluafilesystem[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'midori' (midori: no upstream version found. - https://launchpad.net/midori - (?i)\bmidori[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'minised' (minised: no upstream version found. - http://www.exactcode.de/site/open_source/minised/ - (?i)\bminised[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'nagios-plugins' (nagios-plugins: no upstream version found. - http://www.monitoring-plugins.org/download.html - (?i)\bnagios\-plugins[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'netbsd-iscsi' (netbsd-iscsi: Pycurl while retrieving upstream URL. - http://www.alistaircrooks.co.uk/src/ - (?i)\bnetbsd\-iscsi[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (6, 'Could not resolve host: www.alistaircrooks.co.uk; Name or service not known'))
'NLopt' (NLopt: Pycurl while retrieving upstream URL. - http://ab-initio.mit.edu/wiki/index.php/NLopt - (?i)\bNLopt[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (28, 'Operation timed out after 30627 milliseconds with 6813 out of -1 bytes received'))
'nodejs-bignumber-js' (nodejs-bignumber-js: no upstream version found. - http://registry.npmjs.org/bignumber-js - "version":"([0-9.]*?)")
'nodejs-console-dot-log' (nodejs-console-dot-log: no upstream version found. - http://registry.npmjs.org/console-dot-log - "version":"([0-9.]*?)")
'nodejs-dateformat' (nodejs-dateformat: no upstream version found. - http://registry.npmjs.org/dateformat - "version":"([0-9.]*?)")
'nodejs-expect-dot-js' (nodejs-expect-dot-js: no upstream version found. - http://registry.npmjs.org/expect-dot-js - "version":"([0-9.]*?)")
'nodejs-highlight-js' (nodejs-highlight-js: no upstream version found. - http://registry.npmjs.org/highlight-js - "version":"([0-9.]*?)")
'nodejs-inherits1' (nodejs-inherits1: no upstream version found. - http://registry.npmjs.org/inherits1 - "version":"([0-9.]*?)")
'nodejs-nan0' (nodejs-nan0: no upstream version found. - http://registry.npmjs.org/nan0 - "version":"([0-9.]*?)")
'nodejs-packaging' (nodejs-packaging: no upstream version found. - http://registry.npmjs.org/packaging - "version":"([0-9.]*?)")
'nodejs-require-cs' (nodejs-require-cs: no upstream version found. - http://registry.npmjs.org/require-cs - "version":"([0-9.]*?)")
'nodejs-underscore-dot-logger' (nodejs-underscore-dot-logger: no upstream version found. - http://registry.npmjs.org/underscore-dot-logger - "version":"([0-9.]*?)")
'nodejs-underscore-dot-string' (nodejs-underscore-dot-string: no upstream version found. - http://registry.npmjs.org/underscore-dot-string - "version":"([0-9.]*?)")
'octave-audio' (octave-audio: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\baudio[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-dicom' (octave-dicom: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\bdicom[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-gsl' (octave-gsl: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\bgsl[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-lhapdf' (octave-lhapdf: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\blhapdf[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-NLopt' (octave-NLopt: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\bNLopt[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-specfun' (octave-specfun: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\bspecfun[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-struct' (octave-struct: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\bstruct[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'octave-symbolic' (octave-symbolic: no upstream version found. - http://sourceforge.net/api/file/index/project-name/octave/mtime/desc/limit/200/rss - (?i)\bsymbolic[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'odt2txt' (odt2txt: no upstream version found. - http://stosberg.net/odt2txt/ - odt2txt-(.*?).tar.gz)
'OmegaT' (OmegaT: no upstream version found. - http://sourceforge.net/api/file/index/project-name/omegat/mtime/desc/limit/200/rss - (?i)\bOmegaT[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'openobex' (openobex: no upstream version found. - http://gitorious.org/openobex/mainline/trees/master - trees/(\d[\d.]+)\W)
'parrot' (parrot: Pycurl while retrieving upstream URL. - http://www.parrot.org/release/developer - (?i)\bparrot[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b (78, 'RETR response: 550'))
'perl-DepGen-Perl-Tests' (perl-DepGen-Perl-Tests: no upstream version found. - http://ppisar.fedorapeople.org/perl-DepGen-Perl-Tests/ - perl-DepGen-Perl-Tests-v([^-/_\s]+)\.tar\b)
'perl-smartmatch-engine-core' (perl-smartmatch-engine-core: no upstream version found. - http://search.cpan.org/dist/smartmatch-engine-core/ - (?i)\bsmartmatch\-engine\-core[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'perl-smartmatch' (perl-smartmatch: no upstream version found. - http://search.cpan.org/dist/smartmatch/ - (?i)\bsmartmatch[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'perl-YUM-RepoQuery' (perl-YUM-RepoQuery: no upstream version found. - http://search.cpan.org/dist/YUM-RepoQuery/ - (?i)\bYUM\-RepoQuery[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'php-google-apiclient' (php-google-apiclient: no upstream version found. - https://github.com/google/google-api-php-client/releases - (\d[\.\d]+)\.tar\.gz)
'php-phpunit-phploc' (php-phpunit-phploc: no upstream version found. - http://pear.phpunit.de/feed.xml - <title>phploc\s([\d\.]+)premake+\s\(stable\)</title>)
'php-ZendFramework2' (php-ZendFramework2: no upstream version found. - http://framework.zend.com/downloads/latest - (?i)\bphp\-ZendFramework2[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python3-bsddb3' (python3-bsddb3: no upstream version found. - https://pypi.python.org/packages/source/b/bsddb3/ - (?i)\bbbsddb3[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python-apsw' (python-apsw: no upstream version found. - http://code.google.com/p/apsw/downloads/list - (?i)\bapsw[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python-dns' (python-dns: no upstream version found. - http://www.dnspython.org/kits/*/ - (?i)\bdnspython[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python-fabulous' (python-fabulous: no upstream version found. - https://pypi.python.org/packages/source/f/fabulous/ - (?i)\bfabulous[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python-peak-rules' (python-peak-rules: no upstream version found. - http://peak.telecommunity.com/snapshots - (?i)\bPEAK\-Rules[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python-robofab' (python-robofab: no upstream version found. - http://download.robofab.com/ - (?i)\bpython\-robofab[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'python-rosdistro' (python-rosdistro: no upstream version found. - https://github.com/ros/rosdistro/releases - ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz)
'R-car' (R-car: no upstream version found. - http://cran.r-project.org/src/contrib/ - (?i)\bR\-car[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'R-lmtest' (R-lmtest: no upstream version found. - http://cran.r-project.org/src/contrib/ - (?i)\bR\-lmtest[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'R-multcomp' (R-multcomp: no upstream version found. - http://cran.r-project.org/src/contrib/ - (?i)\bR\-multcomp[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'R-mvtnorm' (R-mvtnorm: no upstream version found. - http://cran.r-project.org/src/contrib/ - (?i)\bR\-mvtnorm[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'rubygem-goocanvas1' (rubygem-goocanvas1: no upstream version found. - http://rubygems.org/api/v1/gems/goocanvas1.json - "gem_uri":"http:\/\/rubygems.org\/gems\/goocanvas1-([0-9.]*?)\.gem")
'rubygem-hawler' (rubygem-hawler: no upstream version found. - http://rubygems.org/api/v1/gems/hawler.json - "gem_uri":"http:\/\/rubygems.org\/gems\/hawler-([0-9.]*?)\.gem")
'rubygem-minitest4' (rubygem-minitest4: no upstream version found. - http://rubygems.org/api/v1/gems/minitest4.json - "gem_uri":"http:\/\/rubygems.org\/gems\/minitest4-([0-9.]*?)\.gem")
'rubygem-openshift-origin-dns-nsupdate' (rubygem-openshift-origin-dns-nsupdate: no upstream version found. - http://rubygems.org/api/v1/gems/openshift-origin-dns-nsupdate.json - "gem_uri":"http:\/\/rubygems.org\/gems\/openshift\-origin\-dns\-nsupdate-([0-9.]*?)\.gem")
'rubygem-regin' (rubygem-regin: no upstream version found. - http://rubygems.org/api/v1/gems/regin.json - "gem_uri":"http:\/\/rubygems.org\/gems\/regin-([0-9.]*?)\.gem")
'rubygem-rots' (rubygem-rots: no upstream version found. - http://rubygems.org/api/v1/gems/rots.json - "gem_uri":"http:\/\/rubygems.org\/gems\/rots-([0-9.]*?)\.gem")
'R-zoo' (R-zoo: no upstream version found. - http://cran.r-project.org/src/contrib/ - (?i)\bR\-zoo[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'scim-fcitx' (scim-fcitx: no upstream version found. - http://sourceforge.net/api/file/index/project-name/scim/mtime/desc/limit/200/rss - (?i)\bscim\-fcitx[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'scitools' (scitools: no upstream version found. - http://code.google.com/p/scitools/downloads/list - (?i)\bscitools[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'sonata' (sonata: no upstream version found. - http://sonata.berlios.de/download.html - sonata-(.*?).tar.gz)
'spew' (spew: IO error while retrieving upstream URL. - ftp://ftp.berlios.de/pub/spew/Latest/ - (?i)\bspew[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'spyder' (spyder: no upstream version found. - http://code.google.com/p/spyderlib/downloads/list - spyder-([\d.]+\d).zip)
'symlinks' (symlinks: no upstream version found. - http://ibiblio.org/pub/Linux/utils/file/ - symlinks-(.*?)\.tar\.)
'sysbench' (sysbench: no upstream version found. - http://sourceforge.net/api/file/index/project-name/sysbench/mtime/desc/limit/200/rss - (?i)\bsysbench[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'sysfsutils' (sysfsutils: no upstream version found. - http://sourceforge.net/api/file/index/project-name/linux-diag/mtime/desc/limit/200/rss - (?i)\bsysfsutils[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'transmission-remote-cli' (transmission-remote-cli: no upstream version found. - https://raw.github.com/fagga/transmission-remote-cli/master/transmission-remote-cli - \bVERSION\s*=\s*'([^']+)')
'un-extra-fonts' (un-extra-fonts: no upstream version found. - http://kldp.net/projects/unfonts/download - un-fonts-extra-(.*?)\.tar\.gz)
'vdr-screenshot' (vdr-screenshot: no upstream version found. - http://www.joachim-wilke.de/vdr-screenshot.htm - (?i)\bvdr\-screenshot[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'viewnior' (viewnior: no upstream version found. - http://xsisqox.github.com/Viewnior/download.html - (?i)\bviewnior[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'wildfly' (wildfly: no upstream version found. - https://api.github.com/repos/wildfly/wildfly/tags - "name":\s*"[^\d]*([\d\.]+)")
'wise' (wise: no upstream version found. - http://www.jboss.org/wise/downloads - (?i)\bwise[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'wormux' (wormux: no upstream version found. - http://download.gna.org/wormux - wormux-([0-9\.]*?).tar.bz2)
'wqy-microhei-fonts' (wqy-microhei-fonts: no upstream version found. - http://sourceforge.net/api/file/index/project-name/wqy/mtime/desc/limit/200/rss - (?i)\bwqy\-microhei[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'xcircuit' (xcircuit: no upstream version found. - http://opencircuitdesign.com/xcircuit/ - (?i)\bxcircuit[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)
'xmlrpc' (xmlrpc: no upstream version found. - http://www.apache.org/dist/ws/xmlrpc/sources/ - (?i)\bapache\-xmlrpc[-_](?:(?:src|source)[-_])?([^-/_\s]*?\d[^-/_\s]*?)(?:[-_.](?:src|source|orig))?\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b)


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

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))


Get a list of unmonitored packages you maintain

bash

You can put this in ~/.bash_profile and run unmonpkgs to get a list of your unmonitored packages.

function unmonpkgs {
  username='YOUR_FAS_USERNAME'
  f="$(mktemp)"
  curl -so "$f" "https://fedoraproject.org/wiki/Upstream_release_monitoring"
  for i in $(pkgdb-cli list --user "$username" | head -n -1 | awk "{print \$1}"); do
    grep "\* $i " "$f" >/dev/null || echo "Not found: $i"
  done
  rm "$f"
}

More accurate (but way slower) bash

Again, you can put this in ~/.bash_profile. This takes much longer than the above, but is more accurate because it (roughly) tries to match globbed package names such as "ghc-*". It could probably be made faster especially if some other language were used.

function unmonpkgs {
  username='YOUR_FAS_USERNAME'
  f="$(mktemp)"
  curl -s "https://fedoraproject.org/wiki/Upstream_release_monitoring" | grep '^ * ' | awk '{print $2}' > "$f"
  for i in $(pkgdb-cli list --user "$username" | head -n -1 | awk "{print \$1}"); do
    grep "^$i\$" "$f" > /dev/null
    if [ "$?" != "0" ]; then
        echo -e "\033[1;31m$i\033[0m"
        while read line; do
          [ "$line" == "" ] && continue
          [ "$line" == " " ] && continue
          (echo "$line" | grep '\*' > /dev/null) || continue
          (echo "$i" | grep "^$line" > /dev/null) &&
            echo -e " ...\033[1;33m   Possible match (\033[1;31m$i\033[0m): $line\033[0m"
        done < "$f"
    fi
  done
  rm "$f"
}

List Of Packages

0-9

 * 0install DEFAULT:0install SF-DEFAULT:zero-install
 * 2ping DEFAULT http://www.finnie.org/software/2ping/
 * 3proxy DEFAULT http://www.3proxy.ru/download/
 * 64tass DEFAULT SF-DEFAULT:tass64

A

 * a2ps DEFAULT GNU-DEFAULT
 * abcde DEFAULT GOOGLE-DEFAULT
 * abcm2ps abcm2ps-(.*)\.tar\.gz http://moinejf.free.fr/
 * abduco DEFAULT http://www.brain-dump.org/projects/abduco/
 * 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 GITHUB-TAGS GITHUB-TAGS:lvc/abi-dumper
 * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
 * access-modifier-annotation GITHUB-TAGS GITHUB-TAGS:kohsuke/access-modifier
 * accumulo accumulo-(.*?)-src.tar.gz http://www.apache.org/dist/accumulo/*/
 * 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 SF-DEFAULT
 * 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/
 * advancecomp DEFAULT http://advancemame.sourceforge.net/comp-download.html
 * 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/
 * aime DEFAULT SF-DEFAULT:aime-embedded
 * aircrack-ng aircrack-ng-(.*?).tar.gz http://download.aircrack-ng.org/
 * alex HACKAGE-DEFAULT HACKAGE-DEFAULT
 * alglib alglib-(.*?).cpp.tgz http://www.alglib.net/translator/re/
 * 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 GITHUB-TAGS GITHUB-TAGS:kohsuke/akuma
 * 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/
 * 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/
 * antimicro GITHUB-TAGS GITHUB-TAGS:Ryochan7/antimicro
 * antlr-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/antlr-maven-plugin/
 * antlr3 GITHUB-TAGS GITHUB-TAGS:antlr/antlr3
 * antlrworks GITHUB-TAGS GITHUB-TAGS:antlr/antlrworks
 * annotation-indexer GITHUB-TAGS GITHUB-TAGS:jenkinsci/lib-annotation-indexer
 * 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
 * apcupsd DEFAULT SF-DEFAULT
 * api-sanity-checker GITHUB-TAGS GITHUB-TAGS:lvc/api-sanity-checker
 * 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 GITHUB-TAGS GITHUB-TAGS:falconindy/arch-install-scripts
 * 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/
 * arprec DEFAULT http://crd-legacy.lbl.gov/~dhbailey/mpdist/
 * arptables \barptables-v([\d.]+)(?:-|\.tar) SF-DEFAULT:ebtables
 * asc DEFAULT SF-DEFAULT:asc-hq
 * ascii-design DEFAULT SF-DEFAULT
 * asciinema GITHUB-TAGS GITHUB-TAGS:sickill/asciinema
 * asio DEFAULT SF-DEFAULT
 * askbot DEFAULT PYPI-DEFAULT
 * asm6809 DEFAULT http://www.6809.org.uk/dragon/asm6809.shtml
 * 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/
 * asymptote asymptote-(.*?).src.tgz SF-DEFAULT 
 * async-http-client GITHUB-TAGS GITHUB-TAGS:AsyncHttpClient/async-http-client
 * at DEFAULT DEBIAN-DEFAULT
 * atari++ DEFAULT http://www.xl-project.com/downloads.html
 * 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 PYPI-DEFAULT
 * 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 DEFAULT http://www.pps.univ-paris-diderot.fr/~jch/software/files/
 * backintime DEFAULT http://backintime.le-web.org/download_page/
 * backupninja DEFAULT https://labs.riseup.net/code/projects/backupninja/files
 * BackupPC DEFAULT SF-DEFAULT:backuppc
 * 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
 * barman DEFAULT PYPI-DEFAULT
 * base64coder ([0-9]{4}-[0-9]{2}-[0-9]{2}) http://repo2.maven.org/maven2/biz/source_code/base64coder/
 * bash DEFAULT GNU-DEFAULT
 * bashmount DEFAULT SF-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 DEFAULT http://www.johnath.com/beep/
 * beignet DEFAULT https://01.org/beignet/downloads
 * 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/
 * bind bind-(.*?)\.tar.gz http://ftp.isc.org/isc/bind9/cur/*/
 * bindfs DEFAULT http://bindfs.org/downloads/
 * biosdevname DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/biosdevname.git/
 * bip DEFAULT https://projects.duckcorp.org/projects/bip/files
 * bitmap DEFAULT http://xorg.freedesktop.org/releases/individual/app
 * bird DEFAULT http://bird.network.cz/?download
 * bison DEFAULT GNU-DEFAULT
 * bitbake DEFAULT http://git.openembedded.org/bitbake/
 * bitlbee DEFAULT http://get.bitlbee.org/src/
 * 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 GITHUB-TAGS GITHUB-TAGS:Blosc/c-blosc
 * bluefish DEFAULT SF-DEFAULT
 * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bmake DEFAULT http://www.crufty.net/ftp/pub/sjg/
 * bmon DEFAULT https://github.com/tgraf/bmon/releases
 * bodr DEFAULT SF-DEFAULT
 * boinc-client boinc_([0-9.]*?)\_i686\-pc\-linux\-gnu.sh http://boinc.berkeley.edu/dl/
 * bonnie++ DEFAULT http://www.coker.com.au/bonnie++/experimental/
 * 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 bridge-method-injector.*-([\d+.]*) https://github.com/infradna/bridge-method-injector/releases
 * brise DEFAULT GOOGLE-DEFAULT:rimeime
 * brltty DEFAULT http://mielke.cc/brltty/download.html
 * bro DEFAULT http://www.bro.org/downloads/release/
 * 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 archive/v(.*?)\.zip 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
 * bwa DEFAULT SF-DEFAULT:bio-bwa
 * 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 DEFAULT http://wiki.bazaar.canonical.com/BzrTools

C

 * cab HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-dev HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-install 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 SF-DEFAULT
 * calligra DEFAULT http://download.kde.org/stable/calligra-latest/
 * cantata DEFAULT https://code.google.com/p/cantata/wiki/Downloads
 * cardpeek DEFAULT http://pannetrat.com/Cardpeek/Install/
 * caribou DEFAULT GNOME-DEFAULT
 * carto NPM-DEFAULT NPM-DEFAULT
 * catfish DEFAULT LP-DEFAULT:catfish-search
 * CBFlib DEFAULT SF-DEFAULT:cbflib
 * 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/
 * cego DEFAULT http://www.lemke-it.com/litexec?request=pubdowncego&user=&lang=en
 * celt DEFAULT http://downloads.us.xiph.org/releases/celt/
 * centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
 * ceph DEFAULT http://ceph.com/resources/downloads/
 * ceph-deploy DEFAULT PYPI-DEFAULT
 * 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 DEFAULT https://gforge.inria.fr/frs/?group_id=52
 * cgit DEFAULT http://git.zx2c4.com/cgit/refs/tags
 * 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/
 * cln DEFAULT ftp://ftpthep.physik.uni-mainz.de/pub/gnu/
 * 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
 * clxclient DEFAULT http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html
 * cmake DEFAULT http://www.cmake.org/cmake/resources/software.html
 * cmdtest DEFAULT DEBIAN-DEFAULT
 * cmockery2 GITHUB-TAGS GITHUB-TAGS:lpabon/cmockery2
 * 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
 * codeblocks DEFAULT SF-DEFAULT
 * coccinelle Current\sversion:\s([^,]*), http://coccinelle.lip6.fr/download.php
 * cogl DEFAULT GNOME-DEFAULT
 * coin-or-Alps DEFAULT:Alps http://www.coin-or.org/download/source/Alps/
 * coin-or-Bcps DEFAULT:Bcps http://www.coin-or.org/download/source/Bcps/
 * coin-or-Blis DEFAULT:Blis http://www.coin-or.org/download/source/Blis/
 * coin-or-Cbc DEFAULT:Cbc http://www.coin-or.org/download/source/Cbc
 * coin-or-Cgl DEFAULT:Cgl http://www.coin-or.org/download/source/Cgl
 * coin-or-Clp DEFAULT:Clp http://www.coin-or.org/download/source/Clp
 * coin-or-CoinUtils DEFAULT:CoinUtils http://www.coin-or.org/download/source/CoinUtils
 * coin-or-DyLP DEFAULT:DyLP http://www.coin-or.org/download/source/DyLP
 * coin-or-Ipopt DEFAULT:Ipopt http://www.coin-or.org/download/source/Ipopt
 * coin-or-lemon DEFAULT:lemon http://lemon.cs.elte.hu/pub/sources/
 * coin-or-Osi DEFAULT:Osi http://www.coin-or.org/download/source/Osi
 * coin-or-Sample DEFAULT:Sample http://www.coin-or.org/download/source/Sample
 * coin-or-Vol DEFAULT:Vol http://www.coin-or.org/download/source/Vol
 * collada-dom GITHUB-TAGS GITHUB-TAGS:rdiankov/collada-dom
 * collectl DEFAULT SF-DEFAULT
 * colord-gtk DEFAULT http://www.freedesktop.org/software/colord/releases/
 * colordiff DEFAULT http://www.colordiff.org/
 * ColPack DEFAULT http://cscapes.cs.purdue.edu/download/ColPack/
 * community-mysql MySQL Community Server ([0-9].[0-9].\w*) http://dev.mysql.com/downloads/mysql/
 * compiz DEFAULT LP-DEFAULT
 * conduit DEFAULT GNOME-DEFAULT
 * connman DEFAULT https://www.kernel.org/pub/linux/network/connman/
 * conntrack-tools DEFAULT http://ftp.netfilter.org/pub/conntrack-tools/
 * console-setup DEFAULT DEBIAN-DEFAULT
 * 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 DEFAULT 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
 * cpmtools DEFAULT http://www.moria.de/~michael/cpmtools/files/
 * 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
 * cqrlog cqrlog\_(.*?)\.src\.tar\.gz http://www.cqrlog.com/download
 * 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/
 * criu DEFAULT 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/
 * csync2 DEFAULT http://oss.linbit.com/csync2/
 * ctags DEFAULT SF-DEFAULT 
 * ctdb DEFAULT http://www.samba.org/ftp/ctdb/
 * ctemplate ctemplate-(.*?) http://ctemplate.googlecode.com/svn/tags/
 * 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/
 * cwdaemon DEFAULT SF-DEFAULT
 * cxxtools DEFAULT http://www.tntnet.org/download.html
 * cyphesis DEFAULT SF-DEFAULT:worldforge

D

 * dar DEFAULT SF-DEFAULT
 * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * darkhttpd DEFAULT http://unix4lyfe.org/darkhttpd/
 * darktable DEFAULT SF-DEFAULT
 * dans-gdal-scripts GITHUB-TAGS GITHUB-TAGS:gina-alaska/dans-gdal-scripts
 * 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:libdbh2 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
 * dee DEFAULT LP-DEFAULT
 * 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 DEFAULT SF-DEFAULT
 * dhex DEFAULT http://www.dettus.net/dhex/
 * 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/
 * dmapd DEFAULT https://www.flyn.org/projects/dmapd/download.html
 * 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
 * docker-registry ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/dotcloud/docker-registry/releases
 * docky DEFAULT LP-DEFAULT
 * doodle DEFAULT 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
 * dpdk DEFAULT http://dpdk.org/browse/dpdk/refs/
 * 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/dropbear.html
 * drraw DEFAULT http://web.taranis.org/drraw/dist
 * drumstick DEFAULT SF-DEFAULT
 * drupal?-* DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6 (?s)Recommended releases.*?>(6.[^<]*) DRUPAL-DEFAULT:drupal
 * drupal7 (?s)Recommended releases.*?>(7.[^<]*) DRUPAL-DEFAULT:drupal
 * drwright DEFAULT GNOME-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/
 * dtv-scan-tables DEFAULT http://linuxtv.org/downloads/dtv-scan-tables/
 * 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
 * dvdbackup DEFAULT http://dvdbackup.sourceforge.net/
 * dvtm DEFAULT http://www.brain-dump.org/projects/dvtm/
 * dwb DEFAULT https://bitbucket.org/portix/dwb/downloads
 * dwdiff DEFAULT http://os.ghalkes.nl/dist/
 * 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
 * easytag DEFAULT GNOME-DEFAULT
 * ebtables \bebtables-v([\d.]+)(?:-|\.tar) SF-DEFAULT:ebtables
 * 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
 * ecryptfs-utils ecryptfs-utils_(.*?).orig.tar.gz https://launchpad.net/ecryptfs/+download
 * 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 e\/(.*?)\.tar\.gz http://github.com/vathpela/efibootmgr/releases
 * efivar e\/(.*?)\.tar\.gz http://github.com/vathpela/efivar/releases
 * efte DEFAULT SF-DEFAULT
 * eigen3 ([0-9]?\.[0-9.]+).tar.gz https://bitbucket.org/eigen/eigen/downloads
 * 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
 * elektra DEFAULT http://www.libelektra.org/ftp/elektra/releases/
 * elinks DEFAULT http://elinks.or.cz/download/
 * elixir \"v([0-9.]*?)\" https://api.github.com/repos/elixir-lang/elixir/tags
 * elk DEFAULT SF-DEFAULT
 * 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-rpm-spec-mode \bVersion:\s+([\w.]+) http://tihlde.org/~stigb/rpm-spec-mode.el
 * 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
 * emelfm2 DEFAULT http://emelfm2.net/rel/
 * 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
 * enlightenment DEFAULT http://download.enlightenment.org/rel/apps/enlightenment/
 * 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-([\d+\.]+)\" https://api.github.com/repos/erlang/otp/tags
 * 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 GITHUB-TAGS GITHUB-TAGS:extend/ranch
 * erlang-rebar GITHUB-TAGS GITHUB-TAGS:rebar/rebar
 * 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 GITHUB-TAGS GITHUB-TAGS:basho/riak_pb
 * erlang-riak_pipe GITHUB-TAGS GITHUB-TAGS:basho/riak_pipe
 * erlang-riak_search GITHUB-TAGS GITHUB-TAGS:basho/riak_search
 * erlang-riak_sysmon GITHUB-TAGS GITHUB-TAGS:basho/riak_sysmon
 * erlang-riaknostic GITHUB-TAGS GITHUB-TAGS:basho/riaknostic
 * erlang-rpm-macros GITHUB-TAGS GITHUB-TAGS:lemenkov/erlang-rpm-macros
 * erlang-sext GITHUB-TAGS GITHUB-TAGS:uwiger/sext
 * erlang-skerl GITHUB-TAGS GITHUB-TAGS:basho/skerl
 * erlang-webmachine GITHUB-TAGS GITHUB-TAGS:basho/webmachine
 * 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 GITHUB-TAGS GITHUB-TAGS:coreos/etcd
 * 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
 * facter DEFAULT https://downloads.puppetlabs.com/facter/
 * 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/
 * fcron fcron-(.*?).src.tar.gz http://fcron.free.fr/download.php
 * 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 GITHUB-TAGS GITHUB-TAGS: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.]*?)-source-release 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
 * filezilla FileZilla\_([0-9\.]+)\_src.tar.bz2 http://download.filezilla-project.org/
 * findbugs findbugs-([0-9\.]*?)-source\.zip SF-DEFAULT
 * findbugs-contrib fb-contrib-(.*?)-sources.jar SF-DEFAULT:fb-contrib
 * findutils DEFAULT GNU-DEFAULT
 * firebird \bFirebird-([\d.-]+)\.tar SF-DEFAULT:firebird
 * firehol DEFAULT http://firehol.org/download/latest/
 * fish DEFAULT http://fishshell.com/
 * fityk GITHUB-TAGS GITHUB-TAGS:wojdyr/fityk
 * flac DEFAULT SF-DEFAULT
 * fldigi fldigi-(.*?).tar.gz http://www.w1hkj.com/downloads/fldigi/
 * flex DEFAULT SF-DEFAULT
 * flexdock DEFAULT http://forge.scilab.org/index.php/p/flexdock/downloads/
 * flickcurl DEFAULT http://download.dajobe.org/flickcurl/
 * flterm DEFAULT:Release https://github.com/milkymist/milkymist/tags
 * fltk DEFAULT http://www.fltk.org/software.php
 * fluxbox DEFAULT http://fluxbox.org/download/
 * focuswriter GITHUB-TAGS GITHUB-TAGS:gottcode/focuswriter
 * 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/
 * fotoxx fotoxx-(.*?).tar.gz http://www.kornelix.com/tarballs.html
 * foxtrotgps foxtrotgps-(.*?).tar.xz http://www.foxtrotgps.org/releases/
 * fparser fparser((?:[0-9]+\.){1,2}[0-9]+)\.zip http://warp.povusers.org/FunctionParser/
 * fpc DEFAULT:fpcbuild SF-DEFAULT:freepascal
 * fping DEFAULT http://www.fping.org/dist/
 * fprintd DEFAULT http://people.freedesktop.org/~hadess/
 * freecad DEFAULT SF-DEFAULT:free-cad
 * freecode-submit DEFAULT http://www.catb.org/~esr/freecode-submit/
 * freecol DEFAULT SF-DEFAULT
 * freecolor DEFAULT http://www.rkeene.org/files/oss/freecolor/
 * 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/
 * freight GITHUB-TAGS GITHUB-TAGS:rcrowley/freight
 * fribidi DEFAULT http://fribidi.org/download/
 * 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

 * g-wrap DEFAULT http://download.savannah.gnu.org/releases/g-wrap/
 * 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 DEFAULT 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
 * gaupol DEFAULT http://home.gna.org/gaupol/download.html
 * gausssum DEFAULT:GaussSum SF-DEFAULT
 * gc DEFAULT http://www.hboehm.info/gc/
 * gcin DEFAULT http://hyperrate.com/gcin-source/
 * gcl DEFAULT GNU-DEFAULT
 * gcompris DEFAULT http://gcompris.net/download/
 * gd DEFAULT https://bitbucket.org/libgd/gd-libgd/downloads
 * gdal DEFAULT http://download.osgeo.org/gdal/CURRENT/
 * gdbm DEFAULT GNU-DEFAULT
 * gdcm gdcm-([0-9.]*?)\.tar SF-DEFAULT
 * gdesklets DEFAULT http://www.gdesklets.de/
 * gdisk DEFAULT:gptfdisk SF-DEFAULT:gptfdisk
 * gdome2 DEFAULT http://gdome2.cs.unibo.it/
 * gearmand DEFAULT https://launchpad.net/gearmand/+download
 * geary DEFAULT GNOME-DEFAULT
 * gedit-valencia DEFAULT:valencia GNOME-DEFAULT:valencia
 * 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
 * gerbv DEFAULT SF-DEFAULT
 * getdata DEFAULT SF-DEFAULT
 * getmail DEFAULT http://pyropus.ca/software/getmail/old-versions/
 * 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-* HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://downloads.ghostscript.com/public/
 * giflib DEFAULT SF-DEFAULT
 * gifsicle DEFAULT http://www.lcdf.org/gifsicle/
 * giggle DEFAULT GNOME-DEFAULT
 * gimp DEFAULT http://download.gimp.org/pub/gimp/stable/
 * gimp-help DEFAULT http://download.gimp.org/pub/gimp/help/
 * gimp-separate+ DEFAULT:separate+ http://sourceforge.jp/projects/separate-plus/releases/?package_id=8879
 * gipfel DEFAULT http://www.ecademix.com/JohannesHofmann/gipfel.html
 * 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 GITHUB-TAGS GITHUB-TAGS:nicolargo/glances
 * 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
 * glfw DEFAULT SF-DEFAULT
 * glm DEFAULT SF-DEFAULT:ogl-math
 * glogg DEFAULT http://glogg.bonnefon.org/files/
 * glpk DEFAULT GNU-DEFAULT
 * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
 * gmm DEFAULT http://download.gna.org/getfem/stable/
 * gmp DEFAULT http://gmplib.org/
 * gmpy DEFAULT GOOGLE-DEFAULT
 * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
 * gnome-code-assistance DEFAULT https://git.gnome.org/browse/gnome-code-assistance
 * gnome-do DEFAULT LP-DEFAULT:do
 * gnome-gmail DEFAULT SF-DEFAULT
 * gnome-icon-theme DEFAULT GNOME-DEFAULT
 * gnome-logs DEFAULT GNOME-DEFAULT
 * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
 * gnome-shell-extensions DEFAULT GNOME-DEFAULT
 * gnome-sound-recorder 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 DEFAULT:java-getopt 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 http://tar.goaccess.io/
 * gobject-introspection DEFAULT GNOME-DEFAULT
 * gocl ([0-9.]*?)\.tar.* https://github.com/elima/gocl/tags
 * gocr DEFAULT http://www-e.uni-magdeburg.de/jschulen/ocr/download.html
 * goffice DEFAULT GNOME-DEFAULT
 * golang go(\d+\.\d+.\d+)\.src\.tar\.gz http://golang.org/dl/
 * 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 GITHUB-TAGS GITHUB-TAGS:thinkle/gourmet
 * gparted DEFAULT SF-DEFAULT
 * gpaste GITHUB-TAGS GITHUB-TAGS:Keruspe/GPaste
 * gperf DEFAULT GNU-DEFAULT
 * gperftools DEFAULT GOOGLE-DEFAULT
 * gpgme DEFAULT ftp://ftp.gnupg.org/gcrypt/gpgme/
 * gpick DEFAULT GOOGLE-DEFAULT
 * gplcver DEFAULT SF-DEFAULT
 * gpm DEFAULT http://www.nico.schottelius.org/software/gpm/archives/
 * gpm gpm-(1\.20\..*?)\.tar\.gz http://www.nico.schottelius.org/software/gpm/archives/
 * gpodder DEFAULT http://gpodder.org/src/
 * gpredict DEFAULT SF-DEFAULT
 * gprolog DEFAULT GNU-DEFAULT
 * gpsbabel DEFAULT http://www.gpsbabel.org/download.html
 * gpscorrelate GITHUB-TAGS GITHUB-TAGS:freefoote/gpscorrelate
 * GraphicsMagick DEFAULT SF-DEFAULT:graphicsmagick
 * graphviz DEFAULT http://www.graphviz.org/pub/graphviz/stable/SOURCES/
 * greybird GITHUB-TAGS GITHUB-TAGS:shimmerproject/Greybird
 * 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
 * gsoap gsoap_(.*?).zip SF-DEFAULT:gsoap2
 * gspiceui DEFAULT SF-DEFAULT
 * 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/
 * gstreamer1-vaapi DEFAULT:gstreamer-vaapi http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/
 * 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
 * guile-lib DEFAULT http://download.savannah.gnu.org/releases/guile-lib/
 * 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
 * happy HACKAGE-DEFAULT HACKAGE-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/  
 * hdf5 DEFAULT http://www.hdfgroup.org/ftp/HDF5/current/src/
 * hdparm DEFAULT SF-DEFAULT
 * hdapsd DEFAULT SF-DEFAULT:hdaps
 * hedgewars hedgewars-src-(.*?).tar.bz2 http://download.gna.org/hedgewars/
 * heimdal DEFAULT http://www.h5l.org/dist/src/
 * heimdall GITHUB-TAGS GITHUB-TAGS:Benjamin-Dobell/Heimdall
 * 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/
 * hg-git DEFAULT PYPI-DEFAULT
 * hgview DEFAULT http://download.logilab.org/pub/hgview/
 * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
 * hiera DEFAULT https://downloads.puppetlabs.com/hiera/
 * hiredis GITHUB-TAGS GITHUB-TAGS:redis/hiredis
 * hledger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hoard Hoard-(.*?)-source\.tar\.gz http://www.hoard.org/download-hoard/
 * homebank DEFAULT http://homebank.free.fr/public/
 * 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

 * i3 DEFAULT http://i3wm.org/downloads/
 * i3lock DEFAULT http://i3wm.org/i3lock/
 * i3status DEFAULT http://i3wm.org/i3status/
 * 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
 * icecast DEFAULT http://www.icecast.org/
 * 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
 * idjc DEFAULT SF-DEFAULT
 * idris HACKAGE-DEFAULT HACKAGE-DEFAULT
 * idzebra DEFAULT http://ftp.indexdata.dk/pub/zebra/
 * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
 * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
 * ignuit DEFAULT http://homepages.ihug.co.nz/~trmusson/stuff/
 * iguanaIR DEFAULT http://iguanaworks.net/files/
 * 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
 * inadyn-mt inadyn-mt\.v\.0+([\d.]*)\.t SF-DEFAULT
 * indent DEFAULT GNU-DEFAULT
 * infiniband-diags DEFAULT http://www.openfabrics.org/downloads/management/
 * iniparser iniparser-([0-9.]*)\.tar\.gz http://ndevilla.free.fr/iniparser/
 * inkscape DEFAULT http://www.inkscape.org/en/download/source/
 * inn DEFAULT http://ftp.isc.org/isc/inn/
 * innotop DEFAULT GOOGLE-DEFAULT
 * InsightToolkit DEFAULT http://sourceforge.net/api/file/index/project-name/itk/mtime/desc/limit/20/rss
 * intltool DEFAULT LP-DEFAULT
 * iodine DEFAULT http://code.kryo.se/iodine/
 * 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
 * iputils e/s(.*?)\.tar\.gz http://github.com/iputils/iputils/tags
 * 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/
 * 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/
 * jalv DEFAULT http://download.drobilla.net/
 * jam DEFAULT ftp://ftp.perforce.com/jam/
 * jansi jansi-([0-9.]*?).jar http://jansi.fusesource.org/download.html
 * jansson DEFAULT http://www.digip.org/jansson/releases/
 * 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 DEFAULT 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
 * javamail JavaMail.API.([^<]+).Release http://www.oracle.com/technetwork/java/javamail/index.html
 * 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 DEFAULT https://github.com/mikiobraun/jblas/releases
 * jcifs DEFAULT http://jcifs.samba.org/src/
 * jdependency DEFAULT https://github.com/tcurdt/jdependency/tags
 * jdns DEFAULT http://delta.affinix.com/jdns/
 * jdom DEFAULT 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 GITHUB-TAGS GITHUB-TAGS:twall/jna
 * 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
 * jpegoptim DEFAULT http://www.kokkonen.net/tjko/src/
 * jpilot DEFAULT http://www.jpilot.org/download.html
 * jpnevulator DEFAULT http://jpnevulator.snarl.nl/download/
 * 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
 * json-parser archive/v(.*?)\.tar.gz https://github.com/udp/json-parser/releases 
 * 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
 * kakasi DEFAULT http://kakasi.namazu.org/stable/
 * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
 * kapow GITHUB-TAGS GITHUB-TAGS:gottcode/kapow
 * 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
 * kcm_systemd DEFAULT:kcmsystemd http://kde-apps.org/content/show.php?content=161871
 * kdbg DEFAULT SF-DEFAULT
 * kde-partitionmanager >([.0-9]+?)/< http://download.kde.org/stable/partitionmanager/
 * 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/
 * keepass DEFAULT:KeePass SF-DEFAULT
 * 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
 * kpcli kpcli-(.*?).pl SF-DEFAULT
 * krename the last stable release is: <.*?> (.*?) </a> http://www.krename.net/
 * krop DEFAULT http://arminstraub.com/computer/krop
 * 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
 * kshutdown kshutdown-source-(.*?).zip SF-DEFAULT
 * 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.pwsp.net/?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
 * latte-integrale DEFAULT https://www.math.ucdavis.edu/~latte/software/packages/latte_current/
 * lazarus DEFAULT SF-DEFAULT:lazarus
 * lazygal DEFAULT http://sousmonlit.zincube.net/~niol/reposnapshots/
 * lbrickbuster2 DEFAULT:lbreakout2 http://sourceforge.net/api/file/index/project-name/lgames/mtime/desc/limit/50/rss
 * lbzip2 DEFAULT http://lbzip2.org/download
 * lcms2 DEFAULT SF-DEFAULT:lcms
 * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
 * leafpad DEFAULT http://download.savannah.gnu.org/releases/leafpad/
 * ledger GITHUB-TAGS GITHUB-TAGS:ledger/ledger
 * leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
 * leksah-server HACKAGE-DEFAULT HACKAGE-DEFAULT
 * lensfun DEFAULT http://developer.berlios.de/project/showfiles.php?group_id=9034
 * leptonica DEFAULT http://leptonica.com/download.html
 * less DEFAULT http://www.greenwoodsoftware.com/less/download.html
 * lfcbase DEFAULT http://www.lemke-it.com/litexec?request=pubdownlfc
 * lfcxml DEFAULT http://www.lemke-it.com/litexec?request=pubdownlfcxml
 * libpam4j DEFAULT https://github.com/kohsuke/libpam4j/tags
 * localizer localizer-parent-([\d\.]+).tar.gz https://github.com/kohsuke/localizer/tags
 * lftp lftp-([0-9.]*?).tar.xz http://lftp.yar.ru/get.html
 * libabw libabw-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libabw
 * 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
 * libatomic_ops DEFAULT https://github.com/ivmai/libatomic_ops/wiki/Download
 * 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 DEFAULT http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/
 * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
 * libccd DEFAULT http://libccd.danfis.cz/
 * 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/libcdr
 * libcgroup DEFAULT SF-DEFAULT:libcg
 * libchamplain DEFAULT GNOME-DEFAULT
 * libchewing GITHUB-TAGS GITHUB-TAGS:chewing/libchewing
 * 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/
 * libcss libcss-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libcss/
 * libcsv DEFAULT SF-DEFAULT
 * libcue DEFAULT SF-DEFAULT
 * libcutl DEFAULT:libcutl http://codesynthesis.com/download/libcutl/*/
 * 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
 * libdiscid DEFAULT http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/
 * libdivecomputer DEFAULT http://www.libdivecomputer.org/releases/
 * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
 * libdwarf libdwarf-([0-9]+)\.tar\.gz http://www.prevanders.net/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
 * libeina DEFAULT:eina http://download.enlightenment.org/releases/
 * libepubgen DEFAULT SF-DEFAULT:libepubgen
 * libetonyek libetonyek-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libetonyek
 * libetpan GITHUB-TAGS GITHUB-TAGS:dinhviethoa/libetpan
 * libev DEFAULT http://dist.schmorp.de/libev/
 * 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/
 * libflatarray DEFAULT http://www.libgeodecomp.org/archive/
 * 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/libfreehand
 * libfreenect GITHUB-TAGS GITHUB-TAGS:OpenKinect/libfreenect
 * 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/*/
 * libgit2 GITHUB-TAGS GITHUB-TAGS:libgit2/libgit2
 * 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/
 * libhtp GITHUB-TAGS GITHUB-TAGS:ironbee/libhtp
 * libhubbub libhubbub-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/hubbub/
 * libHX DEFAULT SF-DEFAULT:libhx
 * libibmad DEFAULT http://www.openfabrics.org/downloads/management/
 * libibumad DEFAULT http://www.openfabrics.org/downloads/management/
 * libical DEFAULT SF-DEFAULT:freeassociation
 * libICE DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libidn DEFAULT GNU-DEFAULT
 * libidn2 DEFAULT GNU-DEFAULT:libidn
 * libiec61883 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
 * libinfinity DEFAULT http://releases.0x539.de/libinfinity/
 * libint DEFAULT SF-DEFAULT
 * libiodbc DEFAULT SF-DEFAULT:iodbc
 * libisds DEFAULT http://xpisar.wz.cz/libisds/dist/
 * libisoburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libisofs DEFAULT http://libburnia-project.org/wiki/Releases
 * libixion DEFAULT http://gitorious.org/ixion/pages/Download
 * libjpeg-turbo DEFAULT SF-DEFAULT
 * libksba DEFAULT ftp://ftp.gnupg.org/gcrypt/libksba/
 * liblangtag DEFAULT https://bitbucket.org/tagoh/liblangtag/downloads
 * liblastfm GITHUB-TAGS GITHUB-TAGS:lastfm/liblastfm
 * libldb DEFAULT:ldb http://www.samba.org/ftp/pub/ldb/
 * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
 * liblogging DEFAULT http://download.rsyslog.com/liblogging/
 * 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
 * libmikmod DEFAULT http://mikmod.sourceforge.net/
 * libmimedir DEFAULT SF-DEFAULT
 * libmirage DEFAULT http://sourceforge.net/projects/cdemu/files/libmirage/
 * 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
 * libmongo-client GITHUB-TAGS GITHUB-TAGS:algernon/libmongo-client
 * 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/libmspub
 * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
 * libmwaw DEFAULT SF-DEFAULT
 * libnatpmp DEFAULT http://miniupnp.free.fr/files/
 * 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 http://bintray.com/nfc-tools/sources/libnfc
 * libnftnl DEFAULT http://ftp.netfilter.org/pub/libnftnl/
 * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
 * 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
 * libodb DEFAULT:libodb http://codesynthesis.com/download/odb/*/
 * libodb-boost DEFAULT:libodb-boost http://codesynthesis.com/download/odb/*/
 * libodb-mysql DEFAULT:libodb-mysql http://codesynthesis.com/download/odb/*/
 * libodb-pgsql DEFAULT:libodb-pgsql http://codesynthesis.com/download/odb/*/
 * libodb-qt DEFAULT:libodb-qt http://codesynthesis.com/download/odb/*/
 * libodb-sqlite DEFAULT:libodb-sqlite http://codesynthesis.com/download/odb/*/
 * libodfgen libodfgen-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
 * liboping DEFAULT http://verplant.org/liboping/files
 * liborcus DEFAULT 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
 * libpagemaker libpagemaker-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libpagemaker
 * libparserutils libparserutils-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libparserutils/
 * 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
 * librecad GITHUB-TAGS GITHUB-TAGS:LibreCAD/LibreCAD
 * librelp DEFAULT http://download.rsyslog.com/librelp/
 * libreoffice-gallery-vrt-network-equipment VRTnetworkequipment_(\d+\.\d+\.\d+)-lo\.oxt http://www.vrt.com.au/downloads/vrt-network-equipment
 * libreswan DEFAULT http://download.libreswan.org/
 * librevenge librevenge-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
 * 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
 * libserf DEFAULT:serf http://serf.googlecode.com/svn/src_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/
 * libsodium DEFAULT https://download.libsodium.org/libsodium/releases/
 * libssh DEFAULT https://red.libssh.org/projects/libssh/files
 * libssh2 DEFAULT http://www.libssh2.org/download/
 * libstatgrab DEFAULT http://ftp.i-scream.org/pub/i-scream/libstatgrab/
 * 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/
 * libthai libthai-(.*?)\.tar\.xz http://linux.thai.net/pub/thailinux/software/libthai/
 * libtiff DEFAULT:tiff http://download.osgeo.org/libtiff/
 * libtimezonemap DEFAULT http://archive.ubuntu.com/ubuntu/pool/main/libt/libtimezonemap/
 * 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/libvisio
 * libvorbis DEFAULT http://downloads.xiph.org/releases/vorbis/
 * libwapcaplet libwapcaplet-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libwapcaplet/
 * libwbxml DEFAULT SF-DEFAULT
 * libwebp DEFAULT GOOGLE-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/
 * libXcm DEFAULT SF-DEFAULT:oyranos
 * 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/
 * libxmp DEFAULT SF-DEFAULT:xmp
 * 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/
 * libxshmfence 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/
 * libykneomgr DEFAULT http://opensource.yubico.com/libykneomgr/releases.html
 * 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
 * libzdb DEFAULT http://www.tildeslash.com/libzdb/dist/
 * libzen libzen_([0-9.]*?).tar.bz2 SF-DEFAULT:zenlib
 * 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/
 * lilv DEFAULT http://download.drobilla.net/
 * linbox DEFAULT http://www.linalg.org/download.html
 * lingot DEFAULT http://download.savannah.gnu.org/releases/lingot/
 * linkchecker DEFAULT http://wummel.github.io/linkchecker/
 * links DEFAULT http://links.twibright.com/download/
 * linphone <a id="download" href="eng/download/packages/linphone-([0-9.]+)[.]html" title="Download last Linphone version"> http://www.linphone.org/eng/download/packages/
 * linpsk DEFAULT SF-DEFAULT
 * linsmith DEFAULT SF-DEFAULT
 * linux-libertine-fonts LinLibertineSRC-(.*?).tgz SF-DEFAULT:linuxlibertine
 * linuxconsoletools DEFAULT SF-DEFAULT:linuxconsole
 * liquibase liquibase-(.*?)-bin\.tar\.gz http://www.liquibase.org/download/index.html
 * 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
 * lnav GITHUB-TAGS GITHUB-TAGS:tstack/lnav
 * lockdev \blockdev\s+([\d.]+)\.\s https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=lockdev/lockdev.git;a=blob_plain;f=NEWS
 * 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/
 * logstalgia DEFAULT https://github.com/acaudwell/Logstalgia/releases
 * 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-ldoc GITHUB-TAGS GITHUB-TAGS:stevedonovan/LDoc
 * lua-lgi GITHUB-TAGS GITHUB-TAGS:pavouk/lgi
 * 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 GITHUB-TAGS GITHUB-TAGS:stevedonovan/Penlight
 * 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
 * lwtools DEFAULT http://lwtools.projects.l-w.ca/releases/lwtools/
 * lxc GITHUB-TAGS GITHUB-TAGS:lxc/lxc
 * 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-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
 * makepasswd DEFAULT ftp://ftp.defora.org/pub/projects/makepasswd/
 * makeself release-([0-9.]+) https://github.com/megastep/makeself/releases
 * manchu-fonts DEFAULT:Manchu_Font_2005 SF-DEFAULT:manchufont
 * mandelbulber mandelbulber(.*?).orig.tar.gz SF-DEFAULT
 * 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
 * maradns DEFAULT http://maradns.samiam.org/download.html
 * mariadb Download ([0-9]+.[0-9].\w*) Stable https://downloads.mariadb.org/mariadb/
 * mariadb-galera Download ([0-9]+.[0-9].\w*) Stable Now https://downloads.mariadb.org/mariadb-galera/
 * marked NPM-DEFAULT NPM-DEFAULT
 * masscan GITHUB-TAGS GITHUB-TAGS:robertdavidgraham/masscan
 * 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-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-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/
 * mcollective DEFAULT http://downloads.puppetlabs.com/mcollective/
 * 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
 * mikmod DEFAULT http://mikmod.sourceforge.net/
 * mimedefang DEFAULT http://www.mimedefang.org/download
 * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
 * minetest archive/(.*?)\.tar.gz https://github.com/minetest/minetest/tags
 * 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
 * mingw-taglib GITHUB-TAGS GITHUB-TAGS:taglib/taglib
 * minicom DEFAULT http://alioth.debian.org/frs/?group_id=30018
 * minimodem DEFAULT http://www.whence.com/minimodem/
 * minised DEFAULT http://www.exactcode.de/site/open_source/minised/
 * miniupnpc miniupnpc-([0-9\.]*?) http://miniupnp.free.fr/files/
 * mirall DEFAULT http://owncloud.org/sync-clients/
 * mirrorbrain DEFAULT http://mirrorbrain.org/files/releases/
 * mj mj-([0-9.]+)-src.tar.gz http://mahjong.julianbradfield.org/Source/
 * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
 * mldonkey DEFAULT SF-DEFAULT
 * mmapper DEFAULT SF-DEFAULT
 * mmdb DEFAULT ftp://ftp.ccp4.ac.uk/opensource
 * 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 GITHUB-TAGS GITHUB-TAGS:GrahamDumpleton/mod_wsgi
 * 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
 * mongodb mongodb-src-r(\d+\.)(\d[02468])?([02468])?(\.\d+)\.tar\.gz http://www.mongodb.org/downloads
 * 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
 * motif motif-(.*?)\-src.tgz 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 SF-DEFAULT
 * 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/?os=26
 * mysql-proxy DEFAULT http://dev.mysql.com/downloads/mysql-proxy/?os=src
 * mysql-utilities <h1>MySQL Utilities ([0-9.]*) </h1> http://dev.mysql.com/downloads/utilities/
 * mysql-workbench DEFAULT:mysql-workbench-community http://dev.mysql.com/downloads/workbench/?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 - NodeJS

 * nagios DEFAULT SF-DEFAULT
 * nagios-plugins DEFAULT http://www.monitoring-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
 * nbd DEFAULT SF-DEFAULT
 * ncdc DEFAULT http://dev.yorhel.nl/ncdc
 * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
 * ncmpc DEFAULT http://www.musicpd.org/clients/ncmpc/
 * ncompress DEFAULT SF-DEFAULT
 * ncurses DEFAULT GNU-DEFAULT
 * ncview DEFAULT ftp://cirrus.ucsd.edu/pub/ncview/
 * neap "name":\s*"v([\d\.]+)" https://api.github.com/repos/10sr/neap/tags
 * 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
 * netsed DEFAULT http://silicone.homelinux.org/release/netsed/
 * netsniff-ng DEFAULT http://www.netsniff-ng.org/pub/netsniff-ng/
 * netsurf-buildsystem buildsystem-(\d+\.\d+).tar.gz http://download.netsurf-browser.org/libs/releases/
 * nettle DEFAULT http://www.lysator.liu.se/~nisse/archive/
 * netty netty-([0-9.]*?).Final https://github.com/netty/netty/tags
 * neverball DEFAULT http://neverball.org/download.php
 * newlisp DEFAULT http://www.newlisp.org/downloads/
 * newsbeuter DEFAULT http://www.newsbeuter.org/downloads/
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nfacct DEFAULT http://ftp.netfilter.org/pub/nfacct/
 * nfoview DEFAULT http://home.gna.org/nfoview/
 * 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
 * nifti2dicom GITHUB-TAGS GITHUB-TAGS:biolab-unige/nifti2dicom
 * 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/
 * NLopt DEFAULT http://ab-initio.mit.edu/wiki/index.php/NLopt
 * nmap DEFAULT http://nmap.org/dist/
 * nmon lmon(.*?)\.c http://nmon.sourceforge.net/pmwiki.php?n=Site.CompilingNmon

NodeJS

 * nodejs-* NPM-DEFAULT NPM-DEFAULT

NodeJS - O

 * nodeunit NPM-DEFAULT NPM-DEFAULT
 * nomacs nomacs-(.*?)-source\.tar\.bz2 SF-DEFAULT
 * notmuch DEFAULT http://notmuchmail.org/releases/
 * npush DEFAULT SF-DEFAULT
 * nsd DEFAULT http://www.nlnetlabs.nl/downloads/nsd/
 * nsnake GITHUB-TAGS GITHUB-TAGS:alexdantas/nSnake
 * 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
 * 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
 * numpy numpy-([0-9.]*?).tar.gz SF-DEFAULT
 * nut DEFAULT http://www.networkupstools.org/download.html
 * nuttcp DEFAULT http://lcp.nrl.navy.mil/nuttcp/
 * nwchem Nwchem-([0-9.]*?)\.revision([0-9]*?)-src\..*\.tar\.gz http://www.nwchem-sw.org/images/
 * nx-libs nx-libs-(.*?)-full\.tar\.gz http://code.x2go.org/releases/source/nx-libs/
 * nzbget DEFAULT SF-DEFAULT

O

 * 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
 * ocaml-biniou DEFAULT:biniou http://mjambon.com/releases/biniou/
 * ocaml-cppo DEFAULT:cppo http://mjambon.com/releases/cppo/
 * ocaml-easy-format DEFAULT:easy-format http://mjambon.com/releases/easy-format/
 * ocaml-ssl DEFAULT SF-DEFAULT:savonet
 * ocaml-xmlm DEFAULT:xmlm http://erratique.ch/software/xmlm/releases/
 * ocaml-yojson DEFAULT:yojson http://mjambon.com/releases/yojson/
 * ocl-icd DEFAULT https://forge.imag.fr/frs/?group_id=395
 * ocrad DEFAULT GNU-DEFAULT
 * ocserv DEFAULT ftp://ftp.infradead.org/pub/ocserv/
 * octave DEFAULT GNU-DEFAULT
 * octave-audio DEFAULT:audio SF-DEFAULT:octave
 * octave-communications DEFAULT:communications SF-DEFAULT:octave
 * octave-control DEFAULT:control SF-DEFAULT:octave
 * octave-dicom DEFAULT:dicom SF-DEFAULT:octave
 * octave-gsl DEFAULT:gsl SF-DEFAULT:octave
 * octave-image DEFAULT:image SF-DEFAULT:octave
 * octave-io DEFAULT:io SF-DEFAULT:octave
 * octave-lhapdf DEFAULT:lhapdf SF-DEFAULT:octave
 * octave-miscellaneous DEFAULT:miscellaneous SF-DEFAULT:octave
 * octave-ncarray DEFAULT:ncarray SF-DEFAULT:octave
 * octave-netcdf DEFAULT:netcdf SF-DEFAULT:octave
 * octave-NLopt DEFAULT:NLopt SF-DEFAULT:octave
 * octave-octcdf DEFAULT:octcdf SF-DEFAULT:octave
 * octave-odepkg DEFAULT:odepkg SF-DEFAULT:octave
 * octave-optim DEFAULT:optim SF-DEFAULT:octave
 * octave-parallel DEFAULT:parallel SF-DEFAULT:octave
 * octave-quaternion DEFAULT:quaternion SF-DEFAULT:octave
 * octave-signal DEFAULT:signal SF-DEFAULT:octave
 * octave-specfun DEFAULT:specfun SF-DEFAULT:octave
 * octave-statistics DEFAULT:statistics SF-DEFAULT:octave
 * octave-struct DEFAULT:struct SF-DEFAULT:octave
 * octave-symbolic DEFAULT:symbolic SF-DEFAULT:octave
 * octomap GITHUB-TAGS GITHUB-TAGS:OctoMap/octomap
 * odb DEFAULT http://codesynthesis.com/download/odb/*/
 * odt2txt DEFAULT http://stosberg.net/odt2txt/
 * offlineimap v([0-9.]+).zip https://github.com/OfflineIMAP/offlineimap/tags
 * OmegaT DEFAULT SF-DEFAULT:omegat
 * oorexx ooRexx-(.*?)-source.tar.gz SF-DEFAULT
 * open-mtools \bmtools\.([^-/_\s]+?)(?i)(?:[-_])?\.(?:tar|t[bglx]z|tbz2|zip)\b https://code.google.com/p/open-mtools/downloads/list
 * 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
 * openchange openchange-(.*?)-(.*?).tar.gz http://tracker.openchange.org/projects/openchange/files
 * opencsg DEFAULT:OpenCSG http://www.opencsg.org/
 * opendkim \bopendkim[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?(?<!Beta\d)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * opendnssec DEFAULT http://dist.opendnssec.org/source/
 * opengrok DEFAULT http://opengrok.github.io/OpenGrok/
 * OpenImageIO Release-([0-9]+\.[0-9]+\.*[0-9]?) https://github.com/OpenImageIO/oiio/tags
 * OpenIPMI DEFAULT SF-DEFAULT:openipmi
 * openjpeg DEFAULT SF-DEFAULT:openjpeg.mirror
 * openjpeg2 DEFAULT:openjpeg SF-DEFAULT:openjpeg.mirror
 * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
 * openlierox OpenLieroX_(.*?).src.tar.bz2 SF-DEFAULT
 * OpenLP DEFAULT http://openlp.org/en/download
 * 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
 * openscad openscad-(.*?).src.tar.gz http://files.openscad.org/
 * opensips (?<=\<a href=")(\d+\.\d*[02468]\.\d+)(?=/"\>) https://opensips.org/pub/opensips/
 * openshift-java-client (\d+\.\d+\.\d+.*).tar.gz https://github.com/openshift/openshift-java-client/releases
 * opensm DEFAULT http://www.openfabrics.org/downloads/management/
 * 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://cgit.freedesktop.org/gstreamer/orc/refs/tags
 * os-prober DEFAULT DEBIAN-DEFAULT
 * osm2pgsql GITHUB-TAGS GITHUB-TAGS:openstreetmap/osm2pgsql
 * 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]+).pom http://central.maven.org/maven2/com/googlecode/owasp-java-html-sanitizer/owasp-java-html-sanitizer/*/
 * owncloud Version ([0-9.]+) http://owncloud.org/changelog/
 * oyranos DEFAULT SF-DEFAULT

P - Perl

 * 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
 * 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
 * pari DEFAULT http://pari.math.u-bordeaux.fr/download.html
 * parrot DEFAULT http://www.parrot.org/release/developer
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * patchelf GITHUB-TAGS GITHUB-TAGS:NixOS/patchelf
 * 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
 * pem DEFAULT GNU-DEFAULT
 * pen DEFAULT http://siag.nu/pub/pen/
 * pencil DEFAULT GOOGLE-DEFAULT:evoluspencil

Perl

 * perl-accessors CPAN-DEFAULT 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 CPAN-DEFAULT 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-I3 DEFAULT:AnyEvent-I3 CPAN-DEFAULT:AnyEvent-I3
 * perl-AnyEvent-Handle-UDP DEFAULT:AnyEvent-Handle-UDP CPAN-DEFAULT
 * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
 * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
 * perl-App-a2p DEFAULT:App-a2p CPAN-DEFAULT
 * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
 * perl-App-FatPacker DEFAULT:App-FatPacker CPAN-DEFAULT
 * perl-App-find2perl DEFAULT:App-find2perl CPAN-DEFAULT
 * perl-App-grindperl DEFAULT:App-grindperl CPAN-DEFAULT
 * perl-App-mymeta_requires DEFAULT:App-mymeta_requires CPAN-DEFAULT
 * perl-App-Nopaste DEFAULT:App-Nopaste CPAN-DEFAULT
 * perl-App-p DEFAULT:App-p CPAN-DEFAULT
 * perl-App-s2p DEFAULT:App-s2p 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-autobox-Junctions DEFAULT:autobox-Junctions 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-Business-PayPal-API DEFAULT:Business-PayPal-API CPAN-DEFAULT
 * perl-Business-Stripe DEFAULT:Business-Stripe 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-Catalyst-Plugin-Compress DEFAULT:Catalyst-Plugin-Compress CPAN-DEFAULT
 * perl-Catalyst-Plugin-CustomErrorMessage DEFAULT:Catalyst-Plugin-CustomErrorMessage CPAN-DEFAULT
 * perl-Catalyst-Plugin-Redirect DEFAULT:Catalyst-Plugin-Redirect CPAN-DEFAULT
 * perl-Catalyst-View-GD DEFAULT:Catalyst-View-GD 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-CGI-Fast DEFAULT:CGI-Fast 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-LZF DEFAULT:Compress-LZF 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-Convert-UU DEFAULT:Convert-UU 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-CPS DEFAULT:CPS CPAN-DEFAULT
 * perl-criticism DEFAULT:criticism CPAN-DEFAULT
 * perl-Crypt-Blowfish DEFAULT:Crypt-Blowfish 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-PBKDF2 DEFAULT:Crypt-PBKDF2 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-SaltedHash DEFAULT:Crypt-SaltedHash CPAN-DEFAULT
 * 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-Concise DEFAULT:Data-Dumper-Concise 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-Calc-XS DEFAULT:Date-Calc-XS CPAN-DEFAULT
 * perl-Date-Easter DEFAULT:Date-Easter 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-ODBC DEFAULT:DBD-ODBC CPAN-DEFAULT
 * 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-ArgNames DEFAULT:Devel-ArgNames CPAN-DEFAULT
 * 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-Hexdump DEFAULT:Devel-Hexdump CPAN-DEFAULT
 * perl-Devel-FindPerl DEFAULT:Devel-FindPerl CPAN-DEFAULT
 * perl-Devel-FindRef DEFAULT:Devel-FindRef 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-Bcrypt DEFAULT:Digest-Bcrypt CPAN-DEFAULT
 * 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-DoubleEncodedUTF8 DEFAULT:Encode-DoubleEncodedUTF8 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-Excel-Template DEFAULT:Excel-Template CPAN-DEFAULT
 * perl-Excel-Template-Plus DEFAULT:Excel-Template-Plus CPAN-DEFAULT
 * perl-Excel-Writer-XLSX DEFAULT:Excel-Writer-XLSX 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-MakeMaker-CPANfile DEFAULT:ExtUtils-MakeMaker-CPANfile CPAN-DEFAULT
 * 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-ShareDir-ProjectDistDir DEFAULT:File-ShareDir-ProjectDistDir 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-Geo-ShapeFile DEFAULT:Geo-ShapeFile 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-GraphViz DEFAULT:GraphViz 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-Gtk3-WebKit DEFAULT:Gtk3-WebKit CPAN-DEFAULT
 * perl-GTop DEFAULT:GTop 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-FormFu-Element-reCAPTCHA DEFAULT:HTML-FormFu-Element-reCAPTCHA CPAN-DEFAULT
 * perl-HTML-FormFu-MultiForm DEFAULT:HTML-FormFu-MultiForm 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-Soup DEFAULT:HTTP-Soup CPAN-DEFAULT
 * perl-HTTP-Tiny DEFAULT:HTTP-Tiny CPAN-DEFAULT
 * perl-Image-SubImageFind DEFAULT:Image-SubImageFind 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-Interactive DEFAULT:IO-Interactive 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-PortState CPAN-DEFAULT
 * perl-IO-Socket-Timeout DEFAULT:IO-Socket-Timeout CPAN-DEFAULT
 * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
 * perl-IO-Stty DEFAULT:IO-Stty 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-KinoSearch DEFAULT:KinoSearch CPAN-DEFAULT
 * perl-L DEFAULT:L 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-Log-Report DEFAULT:Log-Report CPAN-DEFAULT
 * perl-Log-Report-Optional DEFAULT:Log-Report-Optional CPAN-DEFAULT
 * perl-LWP-Authen-Wsse DEFAULT:LWP-Authen-Wsse CPAN-DEFAULT
 * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
 * perl-LWP-Protocol-connect DEFAULT:LWP-Protocol-connect 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-MDV-Packdrakeng DEFAULT:MDV-Packdrakeng 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-Modern-Perl DEFAULT:Modern-Perl 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-Path DEFAULT:Module-Path CPAN-DEFAULT
 * perl-Module-Pluggable DEFAULT:Module-Pluggable CPAN-DEFAULT
 * perl-Module-Reader DEFAULT:Module-Reader 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-Starter-PBP DEFAULT:Module-Starter-PBP 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 MongoDB-v?([0-9.]+)/ CPAN-DEFAULT
 * perl-Monotone-AutomateStdio DEFAULT:Monotone-AutomateStdio CPAN-DEFAULT
 * perl-Moo DEFAULT:Moo 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-POP3S DEFAULT:Net-POP3S 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-SMTPS DEFAULT:Net-SMTPS CPAN-DEFAULT
 * perl-Net-SSH2 DEFAULT:Net-SSH2 CPAN-DEFAULT
 * perl-Net-Statsd DEFAULT:Net-Statsd CPAN-DEFAULT
 * perl-Net-Statsd-Server DEFAULT:Net-Statsd-Server CPAN-DEFAULT
 * perl-Net-Stomp CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-Twitter DEFAULT:Net-Twitter CPAN-DEFAULT
 * perl-Net-Twitter-Lite DEFAULT:Net-Twitter-Lite 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-Accessor DEFAULT:Object-Accessor CPAN-DEFAULT
 * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
 * perl-Object-InsideOut DEFAULT:Object-InsideOut CPAN-DEFAULT
 * perl-Object-Pluggable DEFAULT:Object-Pluggable 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-Package-Constants DEFAULT:Package-Constants CPAN-DEFAULT
 * perl-Padre DEFAULT:Padre CPAN-DEFAULT
 * perl-Pango DEFAULT:Pango 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-ParseTemplate DEFAULT:ParseTemplate CPAN-DEFAULT
 * perl-Parse-DMIDecode DEFAULT:Parse-DMIDecode 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-PDL-Graphics-PLplot DEFAULT:PDL-Graphics-PLplot 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-perlindex DEFAULT:perlindex 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-PerlIO-via-Timeout DEFAULT:PerlIO-via-Timeout 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-Promises DEFAULT:Promises 
 * perl-Protocol-WebSocket DEFAULT:Protocol-WebSocket CPAN-DEFAULT
 * perl-re-engine-PCRE DEFAULT:re-engine-PCRE CPAN-DEFAULT
 * perl-Redis DEFAULT:Redis CPAN-DEFAULT
 * perl-Regexp-Grammars DEFAULT:Regexp-Grammars CPAN-DEFAULT
 * perl-Regexp-Shellish DEFAULT:Regexp-Shellish CPAN-DEFAULT
 * perl-REST-Client DEFAULT:REST-Client 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-Socket6 DEFAULT:Socket6 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-SOCKS DEFAULT:SOCKS CPAN-DEFAULT
 * 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-CaseResampling DEFAULT:Statistics-CaseResampling 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-Storm DEFAULT:Storm 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-Detect-Virtualization DEFAULT:Sys-Detect-Virtualization CPAN-DEFAULT
 * 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-Testing DEFAULT:Task-Kensho-Testing 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-Encoding DEFAULT:Term-Encoding CPAN-DEFAULT
 * perl-Term-ProgressBar DEFAULT:Term-ProgressBar CPAN-DEFAULT
 * perl-Term-ProgressBar-Quiet DEFAULT:Term-ProgressBar-Quiet CPAN-DEFAULT
 * perl-Term-ProgressBar-Simple DEFAULT:Term-ProgressBar-Simple 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-Identity DEFAULT:Test-Identity CPAN-DEFAULT
 * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
 * perl-Test-Image-GD DEFAULT:Test-Image-GD 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-Output DEFAULT:Test-Output 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-TrailingSpace DEFAULT:Test-TrailingSpace 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-Text-Xslate DEFAULT:Text-Xslate 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-Tie-Simple DEFAULT:Tie-Simple 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-Out DEFAULT:Time-Out CPAN-DEFAULT
 * perl-Time-ParseDate DEFAULT:Time-ParseDate 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-Tree-R DEFAULT:Tree-R 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-Linode DEFAULT:WebService-Linode 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-DuckDuckGo DEFAULT:WWW-DuckDuckGo 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-GUITest DEFAULT:X11-GUITest 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-Base DEFAULT:XML-SAX-Base 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-XMLRPC-Lite DEFAULT:XMLRPC-Lite 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 DEFAULT:Perl-Tidy CPAN-DEFAULT:Perl-Tidy

PF - PX

 * pesign GITHUB-TAGS GITHUB-TAGS:vathpela/pesign
 * pg_journal archive/v(.*?)\.zip 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-annotations (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/annotations/tags
 * php-doctrine-cache (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/cache/tags
 * php-doctrine-collections (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/collections/tags
 * php-doctrine-common (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/common/tags
 * php-doctrine-datafixtures (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/data-fixtures/tags
 * php-doctrine-dbal (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/dbal/tags
 * php-doctrine-inflector (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/inflector/tags
 * php-doctrine-lexer (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/lexer/tags
 * php-doctrine-orm (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/doctrine2/tags
 * 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-gitter (\d[\.\d]+)\.tar\.gz https://github.com/klaussilveira/gitter/releases
 * php-gliph (0.1[\.\d]+)\.tar\.gz https://github.com/sdboyer/gliph/releases
 * php-google-apiclient  (\d[\.\d]+)\.tar\.gz https://github.com/google/google-api-php-client/releases
 * php-goutte (\d[\.\d]+)\.tar\.gz https://github.com/fabpot/Goutte/releases
 * php-guzzle-Guzzle <title>Guzzle\s([\d\.]+)+\s\(stable\)</title> http://guzzlephp.org/pear/feed.xml
 * php-guzzlehttp-guzzle (\d[\.\d]+)\.tar\.gz https://github.com/guzzle/guzzle/tags
 * php-guzzlehttp-streams (\d[\.\d]+)\.tar\.gz https://github.com/guzzle/streams/tags
 * 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 PEAR-DEFAULT PEAR-DEFAULT
 * 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 PEAR-DEFAULT
 * 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\.]+)premake+\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
 * phrel DEFAULT ftp://ftp.digitalgenesis.com/pub/phrel
 * physfs DEFAULT http://icculus.org/physfs/downloads/
 * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
 * picard DEFAULT http://musicbrainz.org/doc/PicardDownload
 * picocom DEFAULT GOOGLE-DEFAULT
 * picojson GITHUB-TAGS GITHUB-TAGS:kazuho/picojson
 * 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
 * pipelight v([0-9]+[0-9a-zA-Z.-]*)\.tar.* https://bitbucket.org/mmueller2012/pipelight/downloads/
 * 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 e\/(.*?)\.tar\.gz http://github.com/lvc/pkgdiff/releases
 * 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:plexus SF-DEFAULT:plexus
 * 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
 * po4a DEFAULT https://alioth.debian.org/frs/?group_id=30267
 * pocl DEFAULT http://pocl.sourceforge.net/downloads/
 * poezio DEFAULT PYPI-DEFAULT
 * pokerth DEFAULT:PokerTH SF-DEFAULT
 * polarssl \bpolarssl-([\d.]+)-gpl https://polarssl.org/code/releases/
 * policycoreutils DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * polipo DEFAULT http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/
 * polkit DEFAULT http://freedesktop.org/software/polkit/releases/
 * polyclipping clipper_ver(.*?).zip SF-DEFAULT
 * 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/
 * 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/
 * postgis DEFAULT http://postgis.net/source
 * postgresql-ip4r </a> <a href="(.*?)"> http://www.postgresql.org/ftp/projects/pgFoundry/ip4r/ip4r/
 * postgresql-jdbc postgresql-jdbc-(.*?)(?:[-_.](?:src|source|orig))?.(?:[jt]ar|t[bglx]z|tbz2|zip) http://jdbc.postgresql.org/download.html
 * postgresql-odbc DEFAULT:psqlodbc http://www.postgresql.org/ftp/odbc/versions/src/
 * postgresql-pgpool-II pgpool-II-(.*?)\.(?:[jt]ar|t[bglx]z|tbz2|zip) http://pgpool.net/mediawiki/index.php/Downloads
 * postgresql-plruby GITHUB-TAGS GITHUB-TAGS:knu/postgresql-plruby
 * postgresql-table_log href="table_log-([0-9].*)/" http://ftp.postgresql.org/pub/projects/pgFoundry/tablelog/tablelog/
 * postgrey DEFAULT http://postgrey.schweikert.ch/pub/
 * powertop DEFAULT https://01.org/powertop/downloads
 * ppp DEFAULT http://www.samba.org/ftp/ppp/
 * pptp DEFAULT SF-DEFAULT:pptpclient
 * pptpd DEFAULT SF-DEFAULT:poptop
 * prboom prboom-([0-9.]*?)\.tar\.gz SF-DEFAULT
 * premake premake-(.*?)-src.zip http://industriousone.com/premake/download
 * procps-ng DEFAULT SF-DEFAULT
 * prosody DEFAULT http://prosody.im/downloads/source/
 * 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
 * pstreams-devel DEFAULT:pstreams SF-DEFAULT:pstreams
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * ptpd DEFAULT SF-DEFAULT
 * puddletag DEFAULT http://puddletag.sourceforge.net/download.html
 * 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/
 * pure-glpk DEFAULT https://bitbucket.org/purelang/pure-lang/downloads
 * 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://bitbucket.org/rekkanoryo/purple-plugin-pack/downloads
 * 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
 * pycscope 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
 * PyGreSQL DEFAULT PYPI-DEFAULT
 * pygrib DEFAULT PYPI-DEFAULT
 * pyicq-t DEFAULT 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/
 * pyodbc DEFAULT GOOGLE-DEFAULT
 * pypar DEFAULT SF-DEFAULT
 * pyparsing DEFAULT PYPI-DEFAULT
 * pyPdf DEFAULT 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 PYPI-DEFAULT:ansi2html
 * python-anykeystore DEFAULT:anykeystore PYPI-DEFAULT:anykeystore
 * python-application DEFAULT PYPI-DEFAULT
 * python-apsw DEFAULT:apsw GOOGLE-DEFAULT:apsw
 * python-argcomplete DEFAULT:argcomplete PYPI-DEFAULT:argcomplete
 * python-ase DEFAULT PYPI-DEFAULT
 * python-askbot-fedmsg DEFAULT:askbot-fedmsg PYPI-DEFAULT:askbot-fedmsg
 * python-astropy DEFAULT:astropy PYPI-DEFAULT:astropy
 * 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 DEFAULT:biopython PYPI-DEFAULT:biopython
 * python-bitlyapi DEFAULT:bitlyapi PYPI-DEFAULT:bitlyapi
 * python-blessings DEFAULT:blessings PYPI-DEFAULT:blessings
 * python-blist DEFAULT:blist PYPI-DEFAULT:blist
 * python-bloom ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros-infrastructure/bloom/releases
 * python-blosc GITHUB-TAGS GITHUB-TAGS:Blosc/python-blosc
 * python-Bottleneck DEFAULT:Bottleneck PYPI-DEFAULT:Bottleneck
 * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
 * python-cairosvg DEFAULT:CairoSVG PYPI-DEFAULT:CairoSVG
 * python-catkin_lint GITHUB-TAGS GITHUB-TAGS:fkie/catkin_lint
 * python-catkin_pkg GITHUB-TAGS GITHUB-TAGS:ros-infrastructure/catkin_pkg
 * python-catkin_tools GITHUB-TAGS GITHUB-TAGS:catkin/catkin_tools
 * 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-chardet DEFAULT:chardet PYPI-DEFAULT:chardet
 * python-cherrypy DEFAULT:CherryPy PYPI-DEFAULT: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-click DEFAULT:click PYPI-DEFAULT:click
 * 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-defusedxml DEFAULT:defusedxml PYPI-DEFAULT:defusedxml
 * python-demjson DEFAULT:demjson PYPI-DEFAULT:demjson
 * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
 * python-dingus DEFAULT:dingus PYPI-DEFAULT:dingus
 * python-dirq DEFAULT:dirq PYPI-DEFAULT:dirq
 * 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-dropbox DEFAULT:dropbox PYPI-DEFAULT:dropbox
 * python-dtopt DEFAULT:dtopt PYPI-DEFAULT:dtopt
 * python-elixir DEFAULT:Elixir PYPI-DEFAULT:Elixir
 * python-enchant DEFAULT:pyenchant PYPI-DEFAULT:pyenchant
 * python-execnet DEFAULT:execnet PYPI-DEFAULT:execnet
 * python-fabulous DEFAULT:fabulous PYPI-DEFAULT: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 PYPI-DEFAULT: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-gensim DEFAULT:gensim PYPI-DEFAULT:gensim
 * python-glue DEFAULT:glue PYPI-DEFAULT:glue
 * python-grapefruit DEFAULT:grapefruit GOOGLE-DEFAULT:grapefruit
 * python-gstreamer1 DEFAULT:gst-python http://gstreamer.freedesktop.org/src/gst-python/
 * python-gunicorn DEFAULT:gunicorn PYPI-DEFAULT:gunicorn
 * python-GeoIP DEFAULT:GeoIP PYPI-DEFAULT:GeoIP
 * python-gstreamer1 DEFAULT:gst-python http://gstreamer.freedesktop.org/src/gst-python/
 * python-heatclient DEFAULT PYPI-DEFAULT
 * python-hghooks DEFAULT:hghooks PYPI-DEFAULT:hghooks
 * python-http-parser DEFAULT:http-parser PYPI-DEFAULT:http-parser
 * python-httplib2 DEFAULT:httplib2 PYPI-DEFAULT:httplib2
 * python-irclib DEFAULT SF-DEFAULT
 * python-itsdangerous DEFAULT:itsdangerous PYPI-DEFAULT:itsdangerous
 * python-jedi DEFAULT:jedi PYPI-DEFAULT:jedi
 * python-jinja2 DEFAULT:Jinja2 PYPI-DEFAULT:Jinja2
 * python-jsonschema DEFAULT:jsonschema PYPI-DEFAULT:jsonschema
 * python-kajiki DEFAULT:Kajiki PYPI-DEFAULT:Kajiki
 * python-keyring DEFAULT:keyring 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-lazy DEFAULT:lazy PYPI-DEFAULT:lazy
 * python-lettuce DEFAULT:lettuce PYPI-DEFAULT:lettuce
 * python-Levenshtein DEFAULT PYPI-DEFAULT
 * python-llfuse DEFAULT:llfuse PYPI-DEFAULT:llfuse
 * 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-matplotlib DEFAULT:matplotlib PYPI-DEFAULT:matplotlib
 * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
 * python-meliae DEFAULT:meliae LP-DEFAULT:meliae
 * python-msgpack DEFAULT:msgpack-python PYPI-DEFAULT:msgpack-python
 * 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 DEFAULT: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-ngram DEFAULT:ngram PYPI-DEFAULT:ngram
 * python-nikola DEFAULT:nikola PYPI-DEFAULT:Nikola
 * 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-OWSLib DEFAULT:OWSLib PYPI-DEFAULT:OWSLib
 * 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-patsy DEFAULT:patsy PYPI-DEFAULT:patsy
 * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
 * python-pbr DEFAULT:pbr PYPI-DEFAULT:pbr
 * python-peak-rules DEFAULT:PEAK-Rules 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 DEFAULT:plyvel PYPI-DEFAULT:plyvel
 * python-power DEFAULT:power PYPI-DEFAULT:power
 * python-praw DEFAULT:praw PYPI-DEFAULT:praw
 * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
 * python-profilehooks DEFAULT:profilehooks PYPI-DEFAULT:profilehooks
 * python-progressbar DEFAULT:progressbar 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-psycopg2 DEFAULT:psycopg2 http://www.psycopg.org/psycopg/
 * python-pudb DEFAULT:pudb PYPI-DEFAULT:pudb
 * python-py DEFAULT:py PYPI-DEFAULT:py
 * python-pybloomfiltermmap DEFAULT:pybloomfiltermmap PYPI-DEFAULT:pybloomfiltermmap
 * python-pygal DEFAULT:pygal PYPI-DEFAULT:pygal
 * python-pygit2 DEFAULT:pygit2 PYPI-DEFAULT:pygit2
 * 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-remoto DEFAULT:remoto PYPI-DEFAULT:remoto
 * python-reportlab DEFAULT:reportlab PYPI-DEFAULT:reportlab
 * 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-robofab DEFAULT http://download.robofab.com/
 * python-rope DEFAULT:rope PYPI-DEFAULT:rope
 * python-rosdep GITHUB-TAGS GITHUB-TAGS:ros-infrastructure/rosdep
 * python-rosdistro GITHUB-TAGS GITHUB-TAGS:ros-infrastructure/rosdistro
 * python-rosinstall GITHUB-TAGS GITHUB-TAGS:vcstools/rosinstall
 * python-rosinstall_generator GITHUB-TAGS GITHUB-TAGS:ros-infrastructure/rosinstall_generator
 * python-rospkg GITHUB-TAGS GITHUB-TAGS:ros-infrastructure/rospkg
 * python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
 * python-rpyc DEFAULT:rpyc PYPI-DEFAULT:rpyc
 * python-ruledispatch >RuleDispatch-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * python-scrapy DEFAULT:Scrapy PYPI-DEFAULT:Scrapy
 * python-SecretStorage DEFAULT:SecretStorage PYPI-DEFAULT:SecretStorage
 * python-setuptools DEFAULT:setuptools PYPI-DEFAULT:setuptools
 * python-shadowsocks DEFAULT:shadowsocks PYPI-DEFAULT:shadowsocks
 * python-shapely DEFAULT:Shapely PYPI-DEFAULT:Shapely
 * 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-social-auth DEFAULT PYPI-DEFAULT
 * 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-sqlparse GITHUB-TAGS GITHUB-TAGS:andialbrecht/sqlparse
 * python-statsmodels DEFAULT:statsmodels PYPI-DEFAULT:statsmodels
 * 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 GITHUB-TAGS GITHUB-TAGS:PyTables/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-trollius DEFAULT:trollius PYPI-DEFAULT:trollius
 * 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 PYPI-DEFAULT:txWS
 * python-txzmq DEFAULT:txZMQ PYPI-DEFAULT: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-vcstools GITHUB-TAGS GITHUB-TAGS:vcstools/vcstools
 * python-versiontools DEFAULT:versiontools PYPI-DEFAULT:versiontools
 * python-virtualenvwrapper DEFAULT:virtualenvwrapper PYPI-DEFAULT:virtualenvwrapper
 * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
 * python-volatility DEFAULT:volatility 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-wikitools GITHUB-TAGS GITHUB-TAGS:alexz-enwp/wikitools
 * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
 * python-wstool GITHUB-TAGS GITHUB-TAGS:vcstools/wstool
 * python-x2go DEFAULT 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 DEFAULT:zc.buildout PYPI-DEFAULT:zc.buildout
 * python-zc-lockfile DEFAULT:zc.lockfile PYPI-DEFAULT:zc.lockfile
 * python-ZConfig DEFAULT:ZConfig PYPI-DEFAULT:ZConfig
 * python-ZODB3 DEFAULT:ZODB3 PYPI-DEFAULT:ZODB3
 * python-zdaemon DEFAULT:zdaemon PYPI-DEFAULT:zdaemon
 * python-zmq DEFAULT:pyzmq 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 DEFAULT:zope.sqlalchemy PYPI-DEFAULT:zope.sqlalchemy
 * python-zope-testing DEFAULT:zope.testing PYPI-DEFAULT:zope.testing
 * python3-bsddb3 DEFAULT:bbsddb3 PYPI-DEFAULT:bsddb3
 * python3-cherrypy DEFAULT:CherryPy PYPI-DEFAULT:CherryPy
 * python3-dugong DEFAULT:dugong PYPI-DEFAULT:dugong
 * python3-postgresql GITHUB-TAGS GITHUB-TAGS:python-postgres/fe
 * 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

 * qbzr DEFAULT LP-DEFAULT
 * qdigidoc DEFAULT https://installer.id.ee/media/sources/
 * qiv DEFAULT http://spiegl.de/qiv/download/
 * qjackctl DEFAULT http://qjackctl.sourceforge.net/
 * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * qmmp DEFAULT http://qmmp.ylsoftware.com/files/
 * qmmp-plugin-pack DEFAULT http://qmmp.ylsoftware.com/files/plugins/
 * qof DEFAULT SF-DEFAULT
 * qrupdate DEFAULT SF-DEFAULT
 * qsstv DEFAULT http://users.telenet.be/on4qz/qsstv/downloads/
 * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
 * qsynth DEFAULT http://qsynth.sourceforge.net/qsynth-index.html#Downloads
 * qt-creator DEFAULT:qt-creator-opensource-src http://download.qt-project.org/official_releases/qtcreator/*/*/
 * qterm DEFAULT SF-DEFAULT
 * qtkeychain GITHUB-TAGS GITHUB-TAGS:frankosterfeld/qtkeychain
 * quagga DEFAULT http://download.savannah.gnu.org/releases/quagga/
 * quassel DEFAULT http://quassel-irc.org/pub/
 * 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 https://bitbucket.org/lazka/quodlibet-files/src/default/releases/
 * quota DEFAULT SF-DEFAULT:linuxquota
 * quotatool DEFAULT http://quotatool.ekenberg.se/index.php?node=download
 * qwt DEFAULT SF-DEFAULT
 * qwtpolar DEFAULT SF-DEFAULT

R - Ruby

 * 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/
 * raptor2 DEFAULT http://download.librdf.org/source/
 * rasterview DEFAULT https://www.msweet.org/downloads.php?L+Z7
 * ratproxy DEFAULT GOOGLE-DEFAULT
 * rawtherapee DEFAULT http://rawtherapee.com/shared/source/
 * 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 GITHUB-TAGS GITHUB-TAGS:pinard/Recode
 * recutils DEFAULT GNU-DEFAULT
 * redet DEFAULT http://billposer.org/Software/redet.html
 * redet-doc DEFAULT:redet_manual http://billposer.org/Software/redet.html
 * redis DEFAULT http://redis.io/download
 * redshift DEFAULT LP-DEFAULT
 * regionset DEFAULT http://linvdr.org/download/regionset/
 * reiserfs-utils DEFAULT:reiserfsprogs http://kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/*/
 * relaxngDatatype DEFAULT SF-DEFAULT:relaxng
 * relevation DEFAULT http://p.outlyer.net/relevation/files/
 * remind DEFAULT http://www.roaringpenguin.com/files/download/
 * remmina DEFAULT SF-DEFAULT
 * RemoteBox DEFAULT http://knobgoblin.org.uk/downloads.cgi
 * rendercheck DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * reposurgeon DEFAULT http://www.catb.org/~esr/reposurgeon/
 * reptyr DEFAULT https://github.com/nelhage/reptyr/tags
 * resource-agents GITHUB-TAGS GITHUB-TAGS:ClusterLabs/resource-agents
 * 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
 * ripright DEFAULT http://www.mcternan.me.uk/ripright/index.html
 * 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 DEFAULT SF-DEFAULT
 * rng-tools DEFAULT SF-DEFAULT:gkernel
 * root root_v(.*).source.tar.gz ftp://root.cern.ch/root/
 * 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/downloads/download-v8-stable/
 * rtl-sdr GITHUB-TAGS GITHUB-TAGS:steve-m/librtlsdr
 * rtmidi DEFAULT http://www.music.mcgill.ca/~gary/rtmidi/
 * rtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
 * rubberband DEFAULT http://www.breakfastquay.com/rubberband/

Ruby

 * ruby DEFAULT http://ftp.ruby-lang.org/pub/ruby/stable/
 * rubygem-* RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT

Ruby - S

 * rwhoisd DEFAULT http://projects.arin.net/rwhois/ftp/
 * rxvt-unicode DEFAULT http://dist.schmorp.de/rxvt-unicode/
 * rygel DEFAULT GNOME-DEFAULT

S

 * s3cmd DEFAULT SF-DEFAULT:s3tools
 * s3ql DEFAULT http://bitbucket.org/nikratio/s3ql/downloads
 * saga saga_(.*?).tar.gz https://sourceforge.net/projects/saga-gis/files/
 * sage DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
 * sagemath DEFAULT:sage http://boxen.math.washington.edu/home/sagemath/sage-mirror/src/index.html
 * sakura DEFAULT LP-DEFAULT
 * samba DEFAULT http://samba.org/ftp/samba/
 * samtools DEFAULT SF-DEFAULT
 * 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/
 * schroot DEFAULT DEBIAN-DEFAULT
 * ScientificPython DEFAULT https://sourcesup.renater.fr/frs/?group_id=180
 * 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 http://download.savannah.gnu.org/releases/screen/
 * 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
 * SDL_gfx DEFAULT http://cms.ferzkopp.net/index.php/software/13-sdl-gfx
 * SDL2 DEFAULT http://www.libsdl.org/download-2.0.php
 * SDL2_gfx DEFAULT http://cms.ferzkopp.net/index.php/software/13-sdl-gfx
 * SDL2_image DEFAULT http://www.libsdl.org/projects/SDL_image/
 * SDL2_mixer DEFAULT http://www.libsdl.org/projects/SDL_mixer/
 * SDL2_net DEFAULT http://www.libsdl.org/projects/SDL_net/
 * SDL2_ttf DEFAULT http://www.libsdl.org/projects/SDL_ttf/
 * sdcv DEFAULT SF-DEFAULT
 * sdformat sdformat_(.*?) https://bitbucket.org/osrf/sdformat/downloads
 * sdparm DEFAULT http://sg.danny.cz/sg/p/
 * 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 archive/v(.*?)\.zip https://github.com/lhost/sendxmpp/releases
 * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
 * sfk DEFAULT SF-DEFAULT:swissfileknife
 * sg3_utils DEFAULT http://sg.danny.cz/sg/sg3_utils.html
 * shadow-utils DEFAULT:shadow http://pkg-shadow.alioth.debian.org/releases/
 * shake HACKAGE-DEFAULT HACKAGE-DEFAULT
 * shapelib DEFAULT http://download.osgeo.org/shapelib/
 * sharutils DEFAULT GNU-DEFAULT
 * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
 * shogun DEFAULT https://github.com/shogun-toolbox/shogun/releases
 * shorewall DEFAULT http://www.shorewall.net/pub/shorewall/CURRENT_STABLE_VERSION_IS_*/shorewall-*/
 * shortrpm DEFAULT http://v3.sk/~lkundrak/shortrpm
 * shotwell DEFAULT GNOME-DEFAULT
 * shtool DEFAULT GNU-DEFAULT
 * shutter DEFAULT http://shutter-project.org/wp-content/uploads/releases/tars/
 * siege siege-([0-9\.]+).tar.gz http://download.joedog.org/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
 * skrooge DEFAULT http://skrooge.org/download
 * sks DEFAULT https://bitbucket.org/skskeyserver/sks-keyserver/downloads
 * skstream DEFAULT SF-DEFAULT:worldforge
 * SkyX SkyX-v(.*).rar http://modclub.rigsofrods.com/xavi/SkyX/
 * 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
 * snapper DEFAULT ftp://ftp.suse.com/pub/projects/snapper
 * snappy DEFAULT GOOGLE-DEFAULT
 * snapraid DEFAULT SF-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
 * softhsm DEFAULT http://dist.opendnssec.org/source/
 * 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
 * spatialindex spatialindex-src-(.*?).tar.bz2 http://download.osgeo.org/libspatialindex/
 * 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 DEFAULT https://opensource.conformal.com/snapshots/spectrwm/
 * speedcrunch SpeedCrunch-(.*?)-src.zip https://bitbucket.org/heldercorreia/speedcrunch/downloads/
 * spew DEFAULT ftp://ftp.berlios.de/pub/spew/Latest/
 * sphinx \bsphinx-(.+?)-release http://sphinxsearch.com/downloads/release/
 * spice DEFAULT http://www.spice-space.org/download/releases/
 * spindown DEFAULT GOOGLE-DEFAULT
 * splint DEFAULT http://www.splint.org/download.html
 * spyder spyder-([\d.]+\d).zip GOOGLE-DEFAULT:spyderlib
 * springframework-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
 * st DEFAULT http://dl.suckless.org/st/
 * stapler stapler-parent-([\d\.]+).tar.gz https://github.com/stapler/stapler/tags
 * star DEFAULT http://sourceforge.net/projects/s-tar/files/
 * stardict DEFAULT SF-DEFAULT:stardict-4
 * 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
 * stjerm GITHUB-TAGS GITHUB-TAGS:stjerm/stjerm
 * stk DEFAULT https://ccrma.stanford.edu/software/stk/download.html
 * stompclt DEFAULT http://cons.web.cern.ch/cons/perl/stompclt/
 * 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
 * subsurface Subsurface-(.*?).tgz http://subsurface.hohndel.org/downloads/
 * subnetcalc DEFAULT http://www.exp-math.uni-essen.de/~dreibh/subnetcalc/
 * 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/
 * suricata DEFAULT http://suricata-ids.org/download/
 * svn2cl DEFAULT http://arthurdejong.org/svn2cl/downloads.html
 * svni DEFAULT SF-DEFAULT
 * svxlink svxlink-(.*\..*)\.tar\.gz SF-DEFAULT
 * swarp DEFAULT http://www.astromatic.net/download/swarp/
 * swig swig-([0-9.]*?).tar.gz SF-DEFAULT
 * sxiv GITHUB-TAGS GITHUB-TAGS:muennich/sxiv
 * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
 * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
 * sympy DEFAULT PYPI-DEFAULT
 * synfig DEFAULT SF-DEFAULT
 * synfigstudio DEFAULT SF-DEFAULT:synfig
 * syntastic "name":\s*"([\d\.]+)" https://api.github.com/repos/scrooloose/syntastic/tags
 * 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

T

 * t-prot DEFAULT http://www.escape.de/~tolot/mutt/t-prot/downloads/
 * 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
 * tcl-pgtcl files/pgtclng/(.*?)/ http://sourceforge.net/projects/pgtclng/files/pgtclng/
 * 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 DEFAULT http://tellico-project.org/download/archive
 * terminology DEFAULT http://download.enlightenment.org/rel/apps/terminology/
 * 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/
 * thunderbird DEFAULT http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/source/
 * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
 * tig DEFAULT 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
 * tintii DEFAULT http://www.indii.org/files/tint/releases/
 * tintin DEFAULT SF-DEFAULT
 * tinyxml2 GITHUB-TAGS GITHUB-TAGS:leethomason/tinyxml2
 * tiptop DEFAULT http://tiptop.gforge.inria.fr/releases/
 * tkabber DEFAULT http://files.jabber.ru/tkabber/
 * tkabber-plugins DEFAULT http://files.jabber.ru/tkabber/
 * 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/
 * tomahawk DEFAULT http://download.tomahawk-player.org/
 * tomboy DEFAULT GNOME-DEFAULT
 * tomcat DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/*/*/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
 * torcs DEFAULT http://torcs.sourceforge.net/index.php?name=Sections&op=viewarticle&artid=3
 * torque DEFAULT http://www.adaptivecomputing.com/support/download-center/torque-download/
 * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
 * touchcal DEFAULT SF-DEFAULT
 * 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
 * tralics DEFAULT:tralics-src ftp://ftp-sop.inria.fr/marelle/tralics/src/
 * 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 DEFAULT http://laurikari.net/tre/download.html
 * tremulous DEFAULT SF-DEFAULT
 * trilead-putty-extension DEFAULT https://github.com/kohsuke/trilead-putty-extension/tags
 * tsung DEFAULT http://tsung.erlang-projects.org/dist/
 * 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 http://www.iana.org/time-zones

U

 * 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/
 * udt udt.sdk.(.*?).tar.gz SF-DEFAULT
 * udunits2 DEFAULT:udunits ftp://ftp.unidata.ucar.edu/pub/udunits/
 * udns DEFAULT http://www.corpit.ru/mjt/udns/
 * 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
 * uget DEFAULT SF-DEFAULT:urlget
 * uhttpmock DEFAULT https://tecnocode.co.uk/downloads/uhttpmock/
 * 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
 * unar unar(.*?)\.zip GOOGLE-DEFAULT:theunarchiver
 * 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/
 * unifdef DEFAULT http://dotat.at/prog/unifdef/
 * unison240 unison-(2\.40[.0-9]+) http://www.seas.upenn.edu/~bcpierce/unison/download/releases/
 * units DEFAULT GNU-DEFAULT
 * unixcw unixcw_(.*?).orig.tar.gz SF-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/
 * uthash GITHUB-TAGS GITHUB-TAGS:troydhanson/uthash
 * uucp DEFAULT GNU-DEFAULT

V

 * 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 GITHUB-TAGS GITHUB-TAGS:RichiH/vcsh
 * vdr DEFAULT ftp://ftp.tvdr.de/vdr/
 * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
 * vdr-femon vdr-femon-(2\.0.*?)\.t 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
 * vdr-vnsiserver GITHUB-TAGS GITHUB-TAGS:FernetMenta/vdr-plugin-vnsiserver
 * 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/
 * verbiste DEFAULT http://perso.b2b2c.ca/sarrazip/dev/verbiste.html
 * verilator DEFAULT http://www.veripool.org/projects/verilator/wiki/Installing
 * vertica-python GITHUB-TAGS GITHUB-TAGS:uber/vertica-python
 * vicious DEFAULT http://git.sysphere.org/vicious/refs/tags
 * 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-gtk-syntax GITHUB-TAGS GITHUB-TAGS:vim-scripts/gtk-vim-syntax
 * 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/
 * voro++ DEFAULT http://math.lbl.gov/voro++/download/dir/
 * 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

W

 * w3af GITHUB-TAGS GITHUB-TAGS:andresriancho/w3af
 * 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 http://ftp.waf.io/pub/release/
 * 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/
 * wavpack GITHUB-TAGS GITHUB-TAGS:dbry/WavPack
 * weechat DEFAULT http://weechat.org/files/src/
 * wemux GITHUB-TAGS GITHUB-TAGS:zolrath/wemux
 * 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
 * wiggle DEFAULT http://neil.brown.name/wiggle/
 * wildfly GITHUB-TAGS GITHUB-TAGS:wildfly/wildfly
 * willie DEFAULT PYPI-DEFAULT
 * WindowMaker DEFAULT http://windowmaker.org/
 * wine DEFAULT SF-DEFAULT
 * wings GITHUB-TAGS GITHUB-TAGS:dgud/wings
 * 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/
 * workrave DEFAULT SF-DEFAULT
 * 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 http://www.wxwidgets.org/downloads/
 * wxGTK3 DEFAULT:wxWidgets SF-DEFAULT:wxwindows
 * wxsqlite3 DEFAULT http://sourceforge.net/projects/wxcode/files/Components/wxSQLite3/

X

 * 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 SF-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
 * xcalc DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-cursor 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
 * xcircuit DEFAULT http://opencircuitdesign.com/xcircuit/
 * xcm DEFAULT SF-DEFAULT:oyranos
 * xcompmgr DEFAULT http://xorg.freedesktop.org/archive/individual/app/
 * xdaliclock DEFAULT http://www.jwz.org/xdaliclock/
 * xdg-utils DEFAULT http://portland.freedesktop.org/download/
 * xdelta DEFAULT:xdelta3 http://xdelta.org/
 * xdrawchem DEFAULT SF-DEFAULT
 * xdrfile DEFAULT ftp://ftp.gromacs.org/pub/contrib/
 * xedit DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xen >RELEASE-(.*?)< http://xenbits.xen.org/gitweb/?p=xen.git;a=tags
 * 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/*/
 * xfce4-equake-plugin DEFAULT http://archive.xfce.org/src/panel-plugins/xfce4-equake-plugin/*/
 * xfdashboard "name":\s*"([\d\.]+)" https://api.github.com/repos/gmc-holle/xfdashboard/tags
 * 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
 * xkbset DEFAULT http://www.math.missouri.edu/~stephen/software/xkbset/
 * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
 * xlockmore xlockmore-([0-9\.]*?) http://www.tux.org/~bagleyd/xlock/
 * 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/*/
 * Xnee DEFAULT GNU-DEFAULT:xnee
 * 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-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-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
 * xpad DEFAULT LP-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/
 * xscope DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * 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/
 * xwax DEFAULT http://xwax.org/releases/
 * xxdiff DEFAULT SF-DEFAULT
 * xylib GITHUB-TAGS GITHUB-TAGS:wojdyr/xylib
 * xz xz-([0-9.]*?)\.(?:[jt]ar|t[bglx]z|tbz2|zip)\b 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/

Y

 * yad DEFAULT SF-DEFAULT:yad-dialog
 * yadex DEFAULT http://www.teaser.fr/~amajorel/yadex/download.html
 * yagf DEFAULT http://symmetrica.net/cuneiform-linux/yagf-en.html
 * yajl DEFAULT http://lloyd.github.io/yajl/
 * yaml-cpp DEFAULT GOOGLE-DEFAULT
 * yapet DEFAULT http://www.guengel.ch/myapps/yapet/downloads/
 * 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
 * yoshimi DEFAULT SF-DEFAULT
 * yourls GITHUB-TAGS GITHUB-TAGS:YOURLS/YOURLS
 * 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

Z

 * z88dk DEFAULT SF-DEFAULT
 * zathura DEFAULT http://pwmt.org/projects/zathura/download/
 * 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/
 * zmap GITHUB-TAGS GITHUB-TAGS:zmap/zmap
 * znc GITHUB-TAGS GITHUB-TAGS:znc/znc
 * zorba DEFAULT LP-DEFAULT
 * zsh DEFAULT SF-DEFAULT
 * zsh-lovers DEFAULT http://deb.grml.org/pool/main/z/zsh-lovers/
 * zyGrib DEFAULT http://www.zygrib.org/
 * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf


Package Point of Contact 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
  • eseyman
  • 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


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