From Fedora Project Wiki

(→‎A - G: gstreamer-rtsp added.)
Line 623: Line 623:
  * gscan2pdf DEFAULT SF-DEFAULT
  * gscan2pdf DEFAULT SF-DEFAULT
  * gstreamer DEFAULT http://gstreamer.freedesktop.org/src/gstreamer/
  * gstreamer DEFAULT http://gstreamer.freedesktop.org/src/gstreamer/
* gstreamer-rtsp DEFAULT http://cgit.freedesktop.org/gstreamer/gst-rtsp-server/
  * gsl DEFAULT GNU-DEFAULT
  * gsl DEFAULT GNU-DEFAULT
  * gthumb DEFAULT GNOME-DEFAULT
  * gthumb DEFAULT GNOME-DEFAULT

Revision as of 12:01, 20 May 2011

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 512412 is filed.

Software

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

The Basics

How To Enable Version Checking for My Packages?

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

What Is The Format Of The List?

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

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

URL Aliases

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

How can I develop a regex?

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

Here is an example session for bugzilla:

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

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

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

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

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

Regex Aliases

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

  • DEFAULT - a complex regex to match usual tarballs, supports name-override
  • FM-DEFAULT - a regex to work with the respective URL alias
  • HACKAGE-DEFAULT - a regex to work with the respective URL alias

Bugzilla bugs by upstream-release-monitoring

OPEN bugs

CLOSED bugs

Feedback

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

Check My Package, please!

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

* PKGNAME URL
* hunspell http://hunspell.sf.net/
* netbeans http://www.netbeans.info/
* sendmail http://www.sendmail.com/sm/open_source/
* testdisk http://www.cgsecurity.org/wiki/TestDisk_Download
* wxGTK http://www.wxwidgets.org/downloads/#latest_stable
* xorg-x11-drv-nouveau http://nouveau.freedesktop.org

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
* 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
* xgridfit
* yanone-kaffeesatz-fonts http://www.yanone.de/typedesign/kaffeesatz/

List Of Packages

A - G

 * a2ps DEFAULT GNU-DEFAULT
 * abcde DEFAULT DEBIAN-DEFAULT
 * abiword >([.0-9]+?)/< http://www.abisource.com/downloads/abiword/
 * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
 * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
 * acpid DEFAULT http://tedfelix.com/linux/acpid-netlink.html
 * adf-accanthis-fonts (?s)>\s*Accanthis-Std.*?>(\d+\.\d+) http://arkandis.tuxfamily.org/adffonts.html
 * adjtimex DEFAULT DEBIAN-DEFAULT
 * adns DEFAULT GNU-DEFAULT
 * aether aether-([0-9.]+)\.zip https://github.com/sonatype/sonatype-aether/downloads/
 * aircrack-ng DEFAULT http://download.aircrack-ng.org/
 * alltray DEFAULT https://edge.launchpad.net/alltray/old-maintenance
 * 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/
 * alsa-oss DEFAULT ftp://ftp.alsa-project.org/pub/oss-lib/
 * altermime DEFAULT http://www.pldaniels.com/altermime/
 * animal-sniffer animal-sniffer-([0-9\.]+)\.jar http://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer/*/
 * anjuta DEFAULT GNOME-DEFAULT
 * anki DEFAULT GOOGLE-DEFAULT
 * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
 * antlr-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/antlr-maven-plugin/
 * antlrworks DEFAULT http://www.antlr.org/download/
 * 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-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-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-math 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-james-project james-parent-([0-9\.]+)-source-release\.zip http://repo1.maven.org/maven2/org/apache/james/james-parent/*/
 * apanov-edrip-fonts DEFAULT:edrip ftp://ftp.dvo.ru/pub/Font/edrip/
 * apanov-heuristica-fonts DEFAULT:heuristica GOOGLE-DEFAULT:evristika
 * apr DEFAULT http://www.apache.org/dist/apr/
 * apr-util DEFAULT http://www.apache.org/dist/apr/
 * archimedes DEFAULT GNU-DEFAULT
 * archivemount DEFAULT http://www.cybernoia.de/software/archivemount/
 * arduino DEFAULT GOOGLE-DEFAULT
 * aria2 DEFAULT SF-DEFAULT
 * aspell DEFAULT GNU-DEFAULT
 * aspell-af DEFAULT 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 DEFAULT 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 DEFAULT 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 DEFAULT 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-fo aspell5-fo-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fo/
 * aspell-fr DEFAULT 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 DEFAULT http://ftp.gnu.org/gnu/aspell/dict/hr/
 * aspell-id aspell5-id-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/id/
 * aspell-is DEFAULT 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 DEFAULT http://ftp.gnu.org/gnu/aspell/dict/nl/
 * aspell-no DEFAULT 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 DEFAULT 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/
 * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
 * async-http-client async-http-client-([0-9.]+)\.zip https://github.com/AsyncHttpClient/async-http-client/downloads/zipball
 * atk DEFAULT GNOME-DEFAULT
 * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
 * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
 * audacious DEFAULT http://audacious-media-player.org/downloads
 * auto-nng auto-nng.v(.*?).tar.gz http://www.auto-nng.org/files/downloads/
 * autogen DEFAULT GNU-DEFAULT
 * autoconf DEFAULT GNU-DEFAULT
 * automake DEFAULT GNU-DEFAULT
 * avogadro DEFAULT SF-DEFAULT
 * awstats awstats-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=13764&package_id=11481
 * backintime backintime-([0-9.]+)_src.tar.gz http://backintime.le-web.org/download_page/
 * barcode DEFAULT GNU-DEFAULT
 * bash DEFAULT GNU-DEFAULT
 * bc DEFAULT GNU-DEFAULT
 * bcrypt DEFAULT SF-DEFAULT
 * beep beep-([0-9\.]+).tar.gz http://www.johnath.com/beep/
 * bibus DEFAULT SF-DEFAULT:bibus-biblio
 * bigloo Current version is <font color="red">(.*?)</font> http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html
 * binutils binutils-(.*?\.0\.[0-9.]*?)\.tar\. http://www.kernel.org/pub/linux/devel/binutils/
 * bison DEFAULT GNU-DEFAULT
 * bitbake DEFAULT http://download.berlios.de/bitbake/
 * bitstream-vera-fonts DEFAULT:ttf-bitstream-vera GNOME-DEFAULT:ttf-bitstream-vera
 * blackbox DEFAULT  SF-DEFAULT:blackboxwm
 * blazeblogger DEFAULT http://blaze.blackened.cz/downloads/
 * bleachbit DEFAULT http://bleachbit-project.appspot.com/download/source/
 * 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
 * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bodr DEFAULT SF-DEFAULT
 * boswars DEFAULT http://www.boswars.org/dist/releases/
 * bouml bouml_(.*?).tar.gz http://bouml.free.fr/download.html
 * bouml-doc doc(.*?).tar.gz http://bouml.free.fr/documentation.html
 * bouncycastle (?i)Java\s+Release\s+([\d.]+) http://www.bouncycastle.org/
 * bridge-utils DEFAULT SF-DEFAULT:bridge
 * bti bti-(.*?).tar.bz2 http://www.kernel.org/pub/linux/kernel/people/gregkh/bti/
 * btrfs-progs btrfs-progs-(.*?).tar.bz2 http://www.kernel.org/pub/linux/kernel/people/mason/btrfs/
 * busybox DEFAULT http://www.busybox.net/downloads/
 * byacc DEFAULT ftp://invisible-island.net/byacc/
 * bygfoot DEFAULT SF-DEFAULT
 * byobu DEFAULT LP-DEFAULT
 * bzr DEFAULT LP-DEFAULT
 * bzrtools bzrtools-(.*?).tar.gz http://bazaar-vcs.org/BzrTools
 * c2050 c2050-(.*?).tar.gz http://www.prato.linux.it/~mnencia/lexmark2050/files/
 * cabextract DEFAULT http://www.cabextract.org.uk/
 * cairo DEFAULT http://cairographics.org/releases/
 * calc DEFAULT GNU-DEFAULT
 * cardpeek DEFAULT GOOGLE-DEFAULT
 * ccache DEFAULT http://samba.org/ftp/ccache/
 * CCfits DEFAULT http://heasarc.gsfc.nasa.gov/fitsio/CCfits/
 * ccrtp DEFAULT GNU-DEFAULT
 * cd-discid DEFAULT http://linukz.org/cd-discid.shtml
 * cdlabelgen cdlabelgen-(.*?).tgz http://www.aczoom.com/tools/cdinsert/
 * cdk DEFAULT ftp://invisible-island.net/cdk/
 * cdrdao DEFAULT SF-DEFAULT
 * cdrkit DEFAULT http://cdrkit.org/releases/
 * centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
 * ceph DEFAULT http://ceph.newdream.net/download/
 * cfengine DEFAULT GNU-DEFAULT
 * cflow DEFAULT GNU-DEFAULT
 * CGAL CGAL-([0-9.]*)\.tar.xz https://gforge.inria.fr/frs/?group_id=52
 * checkgmail DEFAULT SF-DEFAULT
 * checkstyle DEFAULT SF-DEFAULT
 * chemical-mime-data DEFAULT SF-DEFAULT:chemical-mime
 * chemtool chemtool-([.0-9]*?).tar.gz http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
 * chmsee DEFAULT GOOGLE-DEFAULT
 * cifs-utils DEFAULT ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/
 * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
 * clutter DEFAULT http://source.clutter-project.org/sources/clutter/*/
 * cmake DEFAULT http://www.cmake.org/cmake/resources/software.html
 * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd
 * coda DEFAULT http://www.coda.cs.cmu.edu/pub/coda/src/
 * coccinelle DEFAULT http://coccinelle.lip6.fr/download.php
 * colordiff DEFAULT http://colordiff.sourceforge.net/
 * compiz DEFAULT:compiz-core http://releases.compiz.org/*/
 * conduit DEFAULT GNOME-DEFAULT
 * conntrack-tools DEFAULT http://ftp.netfilter.org/pub/conntrack-tools/
 * coreutils DEFAULT GNU-DEFAULT
 * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
 * cowsay cowsay-(.*?).tar.gz http://www.nog.net/~tony/warez/cowsay.shtml
 * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
 * cpl DEFAULT ftp://ftp.eso.org/pub/cpl/
 * cpio DEFAULT GNU-DEFAULT
 * cpphs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cppi DEFAULT GNU-DEFAULT
 * cppcheck DEFAULT SF-DEFAULT
 * cproto DEFAULT ftp://invisible-island.net/cproto/
 * cracklib DEFAULT SF-DEFAULT
 * crda DEFAULT http://wireless.kernel.org/download/crda/
 * crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
 * crossvc crossvc-(.*?)\-generic-src\.tgz http://crossvc.com/index.php?menu_id=5&lang=en
 * cscope DEFAULT SF-DEFAULT
 * cssed DEFAULT SF-DEFAULT
 * cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
 * ctorrent ctorrent-dnh(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
 * cups cups-(\d\.\d\.\d)-source\.tar\.bz2 http://www.cups.org/software.php
 * curl DEFAULT http://curl.haxx.se/download/
 * 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/
 * cyphesis DEFAULT SF-DEFAULT:worldforge
 * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * darktable DEFAULT SF-DEFAULT
 * db4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technetwork/database/berkeleydb/downloads/index-082944.html
 * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
 * dblatex DEFAULT SF-DEFAULT
 * dclib DEFAULT SF-DEFAULT:wxdcgui
 * ddclient DEFAULT SF-DEFAULT
 * ddd DEFAULT GNU-DEFAULT
 * ddrescue DEFAULT GNU-DEFAULT
 * debootstrap DEFAULT DEBIAN-DEFAULT
 * decentxml DEFAULT GOOGLE-DEFAULT:decentxml
 * decibel-audio-player decibel-audio-player-([0-9]+\..+?).tar.gz http://decibel.silent-blade.org/index.php?n=Main.Download
 * deja-dup DEFAULT LP-DEFAULT
 * dejagnu DEFAULT GNU-DEFAULT
 * dejavu-fonts DEFAULT SF-DEFAULT:dejavu
 * deluge DEFAULT http://download.deluge-torrent.org/source/
 * denemo DEFAULT GNU-DEFAULT
 * desktop-file-utils DEFAULT http://www.freedesktop.org/software/desktop-file-utils/releases/
 * detox DEFAULT SF-DEFAULT
 * device-mapper-multipath multipath-tools-(.*?)\.tar\.bz2 http://christophe.varoqui.free.fr/multipath-tools/
 * dexter DEFAULT LP-DEFAULT:dexter-rolodex
 * dia DEFAULT GNOME-DEFAULT
 * dialog DEFAULT ftp://invisible-island.net/dialog/
 * diction DEFAULT GNU-DEFAULT
 * diffstat DEFAULT ftp://invisible-island.net/diffstat/
 * diffutils DEFAULT GNU-DEFAULT
 * digikam DEFAULT SF-DEFAULT
 * directfb DEFAULT:DirectFB http://www.directfb.org/index.php?path=Main/Downloads
 * dirmngr DEFAULT ftp://ftp.gnupg.org/gcrypt/dirmngr/
 * Django DEFAULT:Django PYPI-DEFAULT
 * dkms DEFAULT http://linux.dell.com/dkms/
 * dmenu DEFAULT http://tools.suckless.org/dmenu/
 * dmidecode DEFAULT http://download.savannah.gnu.org/releases/dmidecode/
 * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
 * dopewars DEFAULT SF-DEFAULT
 * dos2unix DEFAULT http://www.xs4all.nl/~waterlan/dos2unix.html
 * dosbox DEFAULT SF-DEFAULT
 * dosfstools DEFAULT http://www.daniel-baumann.ch/software/dosfstools/
 * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
 * dot2tex DEFAULT GOOGLE-DEFAULT
 * drobo-utils DEFAULT http://sourceforge.net/projects/drobo-utils/files/drobo-utils/r0_6_2/
 * drraw DEFAULT http://web.taranis.org/drraw/dist
 * drupal6 (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/drupal
 * drupal6-auto_nodetitle (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/auto_nodetitle
 * drupal6-backup_migrate (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/backup_migrate
 * drupal6-login_destination (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/login_destination
 * drupal6-token (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/token
 * drupal6-views (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/views
 * ds9 DEFAULT http://hea-www.harvard.edu/saord/download/ds9/source/
 * dstat latest <b>(.*?)<\/b> tarball http://dag.wieers.com/home-made/dstat/
 * dumpasn1 version\s+(2\d{7})\b http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c
 * 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
 * dwm DEFAULT http://dwm.suckless.org/
 * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html
 * e2fsprogs DEFAULT SF-DEFAULT
 * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
 * eclipse >([0-9]\.[0-9])</a http://download.eclipse.org/eclipse/downloads/
 * ed DEFAULT GNU-DEFAULT
 * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
 * efibootmgr DEFAULT http://linux.dell.com/efibootmgr/
 * efte DEFAULT SF-DEFAULT
 * eina DEFAULT LP-DEFAULT
 * ekg2 ekg2-(0.*?).tar.gz http://ekg2.org/download.php
 * ekg ekg-(.{3,5}?).tar.gz http://ekg.chmurka.net/download.php
 * electric DEFAULT GNU-DEFAULT
 * em8300 DEFAULT SF-DEFAULT:dxr3
 * emacs DEFAULT GNU-DEFAULT
 * emacs-auctex DEFAULT:auctex GNU-DEFAULT:auctex
 * emacs-auto-complete DEFAULT:auto-complete http://cx4a.org/pub/auto-complete/
 * 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-ibus DEFAULT:ibus-el LP-DEFAULT:ibus.el
 * emacs-mew DEFAULT:mew http://www.mew.org/Release/
 * emacs-vm vm-([^v]*?).tgz http://download.savannah.nongnu.org/releases/viewmail/
 * ember DEFAULT SF-DEFAULT:worldforge
 * ember-media DEFAULT SF-DEFAULT:worldforge
 * emesene DEFAULT SF-DEFAULT
 * engine_pkcs11 DEFAULT http://www.opensc-project.org/files/engine_pkcs11/
 * enscript DEFAULT GNU-DEFAULT
 * epdfview epdfview-([0-9\.]+)\.tar\.bz2 http://trac.emma-soft.com/epdfview/wiki/Download
 * epydoc DEFAULT SF-DEFAULT
 * eris DEFAULT SF-DEFAULT:worldforge
 * erlang otp_src_R([0-9]+[AB][0-9]*)\.tar\.gz http://erlang.org/download.html
 * esniper DEFAULT SF-DEFAULT
 * esound DEFAULT GNOME-DEFAULT
 * esorex DEFAULT ftp://ftp.eso.org/pub/cpl/
 * etckeeper DEFAULT DEBIAN-DEFAULT
 * ethtool DEFAULT http://ftp.kernel.org/pub/software/network/ethtool/
 * etoys DEFAULT http://download.sugarlabs.org/sources/sucrose/glucose/etoys/
 * exaile DEFAULT http://www.exaile.org/downloads
 * 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
 * ext3grep DEFAULT GOOGLE-DEFAULT
 * Falcon Falcon-([0-9\.]*)\.t.*gz http://falconpl.org/project_dl/_official_rel/
 * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
 * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
 * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
 * fetchlog DEFAULT SF-DEFAULT
 * fetchmail DEFAULT http://download.berlios.de/fetchmail/
 * ffsb DEFAULT SF-DEFAULT
 * fftw fftw-([0-9\.]*?).tar.gz http://www.fftw.org/download.html
 * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
 * file DEFAULT ftp://ftp.astron.com/pub/file/
 * findutils DEFAULT GNU-DEFAULT
 * firebird Firebird-(.*?)-[0-9]\.tar\.bz2 SF-DEFAULT
 * firehol DEFAULT SF-DEFAULT
 * flac DEFAULT SF-DEFAULT
 * flex DEFAULT SF-DEFAULT
 * fluxbox DEFAULT http://fluxbox.org/download/
 * fontconfig DEFAULT http://www.fontconfig.org/release/ 
 * foomatic foomatic-db-engine-(.*?\.[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
 * fpc The latest release is <b>([\d.]+)</b> http://www.freepascal.org/download.var
 * freecol DEFAULT SF-DEFAULT
 * freedink DEFAULT GNU-DEFAULT
 * freedroidrpg DEFAULT SF-DEFAULT:freedroid
 * freefem++ freefem\+\+-(.*?).tar.gz http://www.freefem.org/ff++/ftp/
 * freeipmi DEFAULT GNU-DEFAULT
 * freenx-server DEFAULT http://download.berlios.de/freenx/
 * freetype DEFAULT SF-DEFAULT
 * fs_mark DEFAULT SF-DEFAULT:fsmark
 * f-spot DEFAULT GNOME-DEFAULT
 * funtools funtools-(.*?).tar.gz http://www.cfa.harvard.edu/~john/funtools/
 * fuse DEFAULT SF-DEFAULT
 * fusecompress <a href="/tex/fusecompress/tarball/([0-9.]*)" http://github.com/tex/fusecompress/downloads
 * gabedit The current developement version of gabedit is ([\.0-9]{5,}) http://sites.google.com/site/allouchear/Home/gabedit/download
 * gawk DEFAULT GNU-DEFAULT
 * g2clib g2clib-([0-9.]*).tar http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/
 * gajim gajim-(.*?)\.tar\.bz2 http://gajim.org/downloads.php
 * gamazons DEFAULT http://www.yorgalily.org/gamazons/src/
 * gambit-c Download latest release \(v([0-9.]+)\): http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page
 * gauche DEFAULT:Gauche SF-DEFAULT
 * gausssum DEFAULT:GaussSum SF-DEFAULT
 * gcin gcin-([0-9\.]*?).tar.bz2 http://cle.linux.org.tw/gcin/download/
 * gcl DEFAULT GNU-DEFAULT
 * gcompris DEFAULT GNU-DEFAULT
 * gdbm DEFAULT GNU-DEFAULT
 * gdome2 DEFAULT http://gdome2.cs.unibo.it/
 * geeqie DEFAULT SF-DEFAULT
 * gengetopt DEFAULT GNU-DEFAULT
 * genromfs DEFAULT SF-DEFAULT:romfs
 * gentoo DEFAULT SF-DEFAULT
 * gettext DEFAULT GNU-DEFAULT
 * gforth DEFAULT GNU-DEFAULT
 * gg2 DEFAULT SF-DEFAULT:ggadu
 * ghasher ghasher-(.*?)\.tar\. http://asgaard.homelinux.org/code/ghasher/
 * ghc GHC (.*) Released! http://haskell.org/ghc/
 * ghc-ansi-terminal HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attempt HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attoparsec HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-binary HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base64-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-Boolean HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bytestring-nums HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bytestring-trie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cairo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cereal HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cmdargs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-colour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ConfigFile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-csv HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dataenc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-digest HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-failure HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-feldspar-language HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ForSyDe HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ghc-paths HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-gio HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-glade HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-glib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-gtk HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-gtksourceview2 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hamlet HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hashed-storage HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskeline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskell-src-exts HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hinotify HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hslogger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-json HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-libmpd HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MemoTrie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MissingH HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mmap HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mtlparse HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-neither HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pandoc-types HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pango HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-parameterized-data HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-process-leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ranges HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regex-tdfa HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regexpr HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-safe HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-split HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tagsoup HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-terminfo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-texmath HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-type-level HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-uniplate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-utf8-string HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11-xft HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xml HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xmonad-contrib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zip-archive HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-bindings HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://downloads.ghostscript.com/public/
 * giflib DEFAULT SF-DEFAULT
 * gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
 * giggle giggle-(.*?).tar.gz http://ftp.imendio.com/pub/imendio/giggle/src/
 * gimmage gimmage-([0-9.]*)\.[tz][ai][rp] http://download.berlios.de/gimmage/
 * gimp DEFAULT ftp://ftp.gimp.org/pub/gimp/stable/
 * gimp-help DEFAULT ftp://ftp.gimp.org/pub/gimp/help/
 * git-cola cola-(.*?).tar.gz http://cola.tuxfamily.org/releases/
 * gkrellm DEFAULT http://www.gkrellm.net/
 * gkrellm-freq DEFAULT:gkrellm-gkfreq SF-DEFAULT:gkrellm-gkfreq
 * gkrellm-top DEFAULT:gkrelltop SF-DEFAULT:gkrelltop
 * gkrellm-volume DEFAULT http://gkrellm.luon.net/volume.php
 * gkrellm-weather DEFAULT:gkrellweather http://sites.google.com/site/makovick/gkrellm-plugins
 * glade3 DEFAULT GNOME-DEFAULT
 * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
 * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
 * gmp DEFAULT GNU-DEFAULT
 * gmp gmp-(4\..*?)\.tar\.bz2 GNU-DEFAULT:gmp
 * gmpy DEFAULT GOOGLE-DEFAULT
 * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
 * gnome-applet-jalali-calendar DEFAULT:jalali-calendar LP-DEFAULT:jalali-calendar
 * gnome-applet-netspeed netspeed_applet-(.*?).tar.gz http://www.wh-hms.uni-ulm.de/~mfcn/netspeed/packages/
 * gnome-applet-timer DEFAULT:timer-applet SF-DEFAULT:timerapplet
 * gnome-gmail DEFAULT SF-DEFAULT
 * gnome-icon-theme DEFAULT GNOME-DEFAULT
 * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
 * gnome-subtitles DEFAULT SF-DEFAULT
 * gnome-tweak-tool DEFAULT GNOME-DEFAULT
 * gnomeradio gnomeradio-(.*?).tar.gz http://www.wh-hms.uni-ulm.de/~mfcn/gnomeradio/packages/
 * gnote DEFAULT GNOME-DEFAULT
 * gnubik DEFAULT GNU-DEFAULT
 * gnucap DEFAULT GNU-DEFAULT
 * gnuchess DEFAULT GNU-DEFAULT:chess
 * gnugo gnugo-(.*?)\.tar\.gz GNU-DEFAULT
 * gnu-smalltalk DEFAULT:smalltalk GNU-DEFAULT:smalltalk
 * gnubik DEFAULT GNU-DEFAULT
 * gnugo DEFAULT GNU-DEFAULT
 * gnujump DEFAULT GNU-DEFAULT
 * 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 GNU-DEFAULT
 * gnurobots DEFAULT GNU-DEFAULT
 * gnustep-make DEFAULT ftp://ftp.gnustep.org/pub/gnustep/core/
 * gnutls DEFAULT GNU-DEFAULT
 * gobject-introspection DEFAULT GNOME-DEFAULT
 * goffice DEFAULT GNOME-DEFAULT
 * gold DEFAULT http://www.clusterresources.com/downloads/gold/
 * googlecl DEFAULT GOOGLE-DEFAULT
 * google-gadgets DEFAULT:google-gadgets-for-linux GOOGLE-DEFAULT:google-gadgets-for-linux
 * google-guice DEFAULT:guice GOOGLE-DEFAULT:google-guice
 * google-perftools DEFAULT GOOGLE-DEFAULT
 * gourmet DEFAULT SF-DEFAULT:grecipe-manager
 * gparted DEFAULT SF-DEFAULT
 * gperf DEFAULT GNU-DEFAULT
 * gpredict DEFAULT SF-DEFAULT
 * gprolog DEFAULT GNU-DEFAULT
 * gpsbabel gpsbabel-([0-9.]+)\.tar\.gz http://www.gpsbabel.org/download.html
 * gpscorrelate DEFAULT http://www.freefoote.com/linux_gpscorr.html
 * gquilt DEFAULT SF-DEFAULT
 * graphviz stable/SOURCES/graphviz-([0-9.]*?)\.tar http://www.graphviz.org/Download_source.php
 * grep DEFAULT GNU-DEFAULT
 * groff DEFAULT GNU-DEFAULT
 * gromacs DEFAULT ftp://ftp.gromacs.org/pub/gromacs/
 * groonga DEFAULT http://groonga.org/download/
 * groovy DEFAULT http://groovy.codehaus.org/Download
 * grub2 DEFAULT:grub GNU-DEFAULT:grub
 * gscan2pdf DEFAULT SF-DEFAULT
 * gstreamer DEFAULT http://gstreamer.freedesktop.org/src/gstreamer/
 * gstreamer-rtsp DEFAULT http://cgit.freedesktop.org/gstreamer/gst-rtsp-server/
 * gsl DEFAULT GNU-DEFAULT
 * gthumb DEFAULT GNOME-DEFAULT
 * gtk-murrine-engine DEFAULT:murrine GNOME-DEFAULT:murrine
 * gtraffic DEFAULT http://fsckyou.info/gtraffic/
 * gtranslator DEFAULT GNOME-DEFAULT
 * gtypist DEFAULT GNU-DEFAULT
 * gucharmap DEFAULT GNOME-DEFAULT
 * guile DEFAULT GNU-DEFAULT
 * guilt DEFAULT http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/
 * gutenprint Gutenprint (.*?) is released http://gimp-print.sourceforge.net/
 * gv DEFAULT GNU-DEFAULT
 * gwsmhg DEFAULT SF-DEFAULT
 * gxine DEFAULT SF-DEFAULT:xine
 * gxmessage DEFAULT GNU-DEFAULT
 * gyachi DEFAULT SF-DEFAULT
 * gzip DEFAULT GNU-DEFAULT

H - M

 * haddock HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hal DEFAULT http://hal.freedesktop.org/releases/
 * hamlib DEFAULT SF-DEFAULT
 * hanazono-fonts DEFAULT:hanazono http://fonts.jp/hanazono/
 * hdparm DEFAULT SF-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * help2man DEFAULT GNU-DEFAULT
 * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
 * horde DEFAULT ftp://ftp.horde.org/pub/horde/
 * hostapd hostapd-(0\.7\..*?)\.tar\.gz http://w1.fi/releases/
 * hping3 DEFAULT http://www.hping.org/download.php
 * hplip DEFAULT SF-DEFAULT
 * html-xml-utils DEFAULT http://www.w3.org/Tools/HTML-XML-utils/
 * httpcomponents-core DEFAULT http://www.apache.org/dist/httpcomponents/httpcore/source/
 * httpcomponents-client DEFAULT http://www.apache.org/dist/httpcomponents/httpclient/source/
 * httpd httpd-(2\.2.*?)\.tar\.bz2  http://archive.apache.org/dist/httpd/
 * httptunnel DEFAULT GNU-DEFAULT
 * httrack httrack-(.*?).tar.gz http://www.httrack.com/page/2/en/index.html
 * hugin DEFAULT SF-DEFAULT
 * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
 * icon-naming-utils DEFAULT http://tango.freedesktop.org/releases/
 * id3v2 DEFAULT SF-DEFAULT
 * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
 * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
 * ikarus DEFAULT http://ikarus-scheme.org/
 * 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 SF-DEFAULT:Impressive
 * indent DEFAULT GNU-DEFAULT
 * inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/
 * innotop DEFAULT GOOGLE-DEFAULT
 * intltool DEFAULT LP-DEFAULT
 * iperf DEFAULT SF-DEFAULT
 * iproute DEFAULT:iproute2 http://devresources.linuxfoundation.org/dev/iproute2/download/
 * iptables DEFAULT http://ftp.netfilter.org/pub/iptables/
 * iptraf DEFAULT ftp://iptraf.seul.org/pub/iptraf/
 * iputils iputils-s(.*?)\.tar\. http://www.skbuff.net/iputils/
 * ipvsadm DEFAULT http://www.linuxvirtualserver.org/software/kernel-2.6/
 * ipython DEFAULT http://ipython.scipy.org/moin/Download
 * irqbalance DEFAULT GOOGLE-DEFAULT
 * isic DEFAULT SF-DEFAULT
 * iso-codes DEFAULT ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/
 * isync DEFAULT SF-DEFAULT
 * iw DEFAULT http://wireless.kernel.org/download/iw/
 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
 * java-gnome DEFAULT GNOME-DEFAULT
 * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
 * jbig2dec DEFAULT SF-DEFAULT
 * jed DEFAULT ftp://space.mit.edu/pub/davis/jed/*/
 * jemalloc DEFAULT http://www.canonware.com/download/jemalloc/
 * jing-trang DEFAULT:jing GOOGLE-DEFAULT
 * jline DEFAULT SF-DEFAULT
 * jmol jmol-(.*?)-full.tar.gz https://sourceforge.net/projects/jmol/files/Jmol/
 * 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/
 * junit4 r([0-9.]+).zip https://github.com/KentBeck/junit/downloads
 * jvyamlb DEFAULT GOOGLE-DEFAULT
 * jwhois DEFAULT GNU-DEFAULT
 * k3b DEFAULT SF-DEFAULT
 * kadu kadu-(.*?)\.tar\.bz2 http://www.kadu.net/download/unstable/
 * kaffeine DEFAULT SF-DEFAULT
 * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
 * kasumi DEFAULT http://sourceforge.jp/projects/kasumi/releases/
 * kawa DEFAULT GNU-DEFAULT
 * kbd DEFAULT http://www.kernel.org/pub/linux/utils/kbd/
 * kchmviewer DEFAULT SF-DEFAULT
 * kcm-gtk DEFAULT LP-DEFAULT
 * 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/
 * keychain DEFAULT http://www.funtoo.org/en/security/keychain/intro/
 * kid3 DEFAULT SF-DEFAULT
 * kile Latest available stable version for KDE3: <a href="download.php">(.*?)</a>\. http://kile.sourceforge.net/
 * komparator DEFAULT SF-DEFAULT
 * koules koules(.*?)-src.tar.gz http://www.ucw.cz/~hubicka/koules/English/distribution.html
 * krename the last stable release is: <.*?> (.*?) </a> http://www.krename.net/
 * ksshaskpass (?i)\(\s*ksshaskpass\s+([^)]+)\s*\) http://www.kde-apps.org/content/show.php?content=50971
 * ktikz ktikz[_-](.*?)\.tar\.gz http://www.hackenberger.at/ktikz/
 * kyotocabinet DEFAULT http://fallabs.com/kyotocabinet/pkg/
 * latencytop DEFAULT http://www.latencytop.org/download.php
 * latex2rtf DEFAULT SF-DEFAULT
 * latex-mk DEFAULT SF-DEFAULT
 * lbzip2 DEFAULT http://lacos.web.elte.hu/pub/lbzip2/
 * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
 * ledger ledger-([0-9.]+)\.tar\.gz https://github.com/jwiegley/ledger/downloads
 * less DEFAULT GNU-DEFAULT
 * lftp DEFAULT http://ftp.yars.free.net/pub/source/lftp/
 * libaio DEFAULT http://www.kernel.org/pub/linux/libs/aio/
 * libarchive DEFAULT GOOGLE-DEFAULT
 * libass DEFAULT GOOGLE-DEFAULT
 * libavc1394 DEFAULT SF-DEFAULT
 * libbs2b DEFAULT SF-DEFAULT:bs2b
 * libbsd DEFAULT http://libbsd.freedesktop.org/releases/
 * libcap DEFAULT http://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/
 * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
 * libcdio DEFAULT GNU-DEFAULT
 * libconfig DEFAULT http://www.hyperrealm.com/libconfig/
 * libdb DB (5[0-9.]*).tar.gz http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html
 * libdc1394 DEFAULT SF-DEFAULT
 * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
 * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
 * libEMF DEFAULT SF-DEFAULT:pstoedit
 * libextractor DEFAULT GNU-DEFAULT
 * libfontenc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/index.html
 * libFS DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libgadu w wersji ([0-9\.]*) http://toxygen.net/libgadu/
 * libgcroots DEFAULT GOOGLE-DEFAULT:sigscheme
 * libgdl DEFAULT:gdl GNOME-DEFAULT:gdl
 * libgee DEFAULT GNOME-DEFAULT
 * libgexiv2 http://trac.yorba.org/wiki/gexiv2 DEFAULT
 * libhangul DEFAULT http://kldp.net/projects/hangul/download
 * libharu DEFAULT http://libharu.org/files/
 * libical DEFAULT SF-DEFAULT:freeassociation
 * libICE DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libidn DEFAULT GNU-DEFAULT
 * libiec61883 DEFAULT http://www.kernel.org/pub/linux/libs/ieee1394/
 * libinfinity DEFAULT http://releases.0x539.de/libinfinity/
 * libint DEFAULT http://www.files.chem.vt.edu/chem-dept/valeev/software/libint/download.html
 * libisds DEFAULT http://xpisar.wz.cz/libisds/dist/
 * libjpeg jpegsrc.v(.*?[az])\.tar\. http://www.ijg.org/files/
 * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
 * libmatheval DEFAULT GNU-DEFAULT
 * libmatroska libmatroska-([.0-9]*?).tar.bz2 http://dl.matroska.org/downloads/libmatroska/
 * libmicrohttpd DEFAULT GNU-DEFAULT
 * libmodelfile DEFAULT SF-DEFAULT:worldforge
 * libmodplug DEFAULT SF-DEFAULT:modplug-xmms
 * libmpc DEFAULT:mpc http://www.multiprecision.org/index.php?prog=mpc&page=download
 * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
 * libnet DEFAULT SF-DEFAULT:libnet-dev
 * libnetfilter_conntrack DEFAULT http://ftp.netfilter.org/pub/libnetfilter_conntrack/
 * libnetfilter_log DEFAULT http://ftp.netfilter.org/pub/libnetfilter_log/
 * libnetfilter_queue DEFAULT http://ftp.netfilter.org/pub/libnetfilter_queue/
 * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
 * libnl DEFAULT http://www.infradead.org/~tgr/libnl/files/
 * liboauth DEFAULT SF-DEFAULT
 * libp11 DEFAULT http://www.opensc-project.org/files/libp11/
 * libpcap DEFAULT http://www.tcpdump.org/release/
 * libpciaccess DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libpng DEFAULT ftp://ftp.simplesystems.org/pub/libpng/png/src/
 * libraw1394 DEFAULT http://www.kernel.org/pub/linux/libs/ieee1394/
 * libsamplerate DEFAULT http://www.mega-nerd.com/SRC/download.html
 * libsigsegv DEFAULT GNU-DEFAULT
 * libSM DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libtalloc talloc-(.*?)\.tar\.gz http://samba.org/ftp/talloc/
 * libtasn1 DEFAULT ftp://ftp.gnutls.org/pub/gnutls/libtasn1/
 * libtiff DEFAULT:tiff http://download.osgeo.org/libtiff/
 * libtirpc DEFAULT SF-DEFAULT
 * libtlen DEFAULT SF-DEFAULT:tleenx
 * libtool DEFAULT GNU-DEFAULT
 * libtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
 * libunicap DEFAULT http://unicap-imaging.org/download.htm
 * libunistring DEFAULT GNU-DEFAULT
 * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
 * libusb1 DEFAULT:libusb SF-DEFAULT:libusb
 * libutempter libutempter-(.*?)\.tar ftp://ftp.altlinux.org/pub/people/ldv/utempter
 * libva DEFAULT http://cgit.freedesktop.org/libva/
 * libvncserver DEFAULT:LibVNCServer SF-DEFAULT
 * libvorbis DEFAULT http://downloads.xiph.org/releases/vorbis/
 * libwfut DEFAULT SF-DEFAULT:worldforge
 * libX11 DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXau DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXaw DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxcb DEFAULT http://xcb.freedesktop.org/dist/
 * libXcomposite DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXcursor DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXdamage DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxdg-basedir libxdg-basedir-([0-9\.]+)\.tar\.gz http://n.ethz.ch/~nevillm/download/libxdg-basedir/
 * 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/
 * libXfontcache 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/
 * libxkbfile DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxml2 DEFAULT ftp://xmlsoft.org/libxml2/ 
 * libXmu DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXpm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrandr DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrender DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXres DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXScrnSaver DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXt DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXTrap 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/
 * libyubikey DEFAULT GOOGLE-DEFAULT:yubico-c
 * lightning DEFAULT GNU-DEFAULT
 * lighttpd DEFAULT http://download.lighttpd.net/lighttpd/releases-1.4.x/
 * linbox DEFAULT http://www.linalg.org/download.html
 * lingot DEFAULT http://savannah.nongnu.org/files/?group=lingot
 * lm_sensors DEFAULT http://dl.lm-sensors.org/lm-sensors/releases/
 * log4j (1.[0-9.]+)/ http://www.apache.org/dist/logging/log4j
 * logserial DEFAULT http://www.ibiblio.org/pub/Linux/system/serial/
 * 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/
 * lua-filesystem DEFAULT:luafilesystem http://luaforge.net/frs/?group_id=66
 * luckybackup DEFAULT SF-DEFAULT
 * luma DEFAULT SF-DEFAULT
 * lxc DEFAULT SF-DEFAULT
 * lxsplit DEFAULT SF-DEFAULT
 * lzip DEFAULT http://download.savannah.gnu.org/releases/lzip/
 * lzo DEFAULT http://www.oberhumer.com/opensource/lzo/download/
 * m17n-db DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 * m17n-contrib DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 * m17n-lib DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 * m4 DEFAULT GNU-DEFAULT
 * maatkit DEFAULT GOOGLE-DEFAULT
 * macchanger DEFAULT GNU-DEFAULT
 * madwimax DEFAULT GOOGLE-DEFAULT
 * mailman DEFAULT GNU-DEFAULT
 * mailx DEFAULT SF-DEFAULT:heirloom
 * make DEFAULT GNU-DEFAULT
 * man DEFAULT http://primates.ximian.com/~flucifredi/man/
 * manaworld DEFAULT:tmw SF-DEFAULT:themanaworld
 * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
 * man-pages DEFAULT http://www.kernel.org/pub/linux/docs/man-pages/
 * maven DEFAULT:apache-maven http://www.apache.org/dist//maven/source/
 * maven-ant-tasks (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-ant-tasks/  
 * 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-gpg-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-gpg-plugin/
 * maven-idea-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-idea-plugin/
 * maven-jxr (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/jxr/jxr/
 * maven-shade-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-shade-plugin/
 * maven-surefire (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/surefire/surefire/
 * mojo-parent (\d+)/ http://repo2.maven.org/maven2/org/codehaus/mojo/mojo-parent/
 * maximus DEFAULT LP-DEFAULT
 * mawk DEFAULT ftp://invisible-island.net/mawk/
 * mc DEFAULT http://www.midnight-commander.org/downloads
 * mdadm DEFAULT http://www.kernel.org/pub/linux/utils/raid/mdadm/
 * mdk DIR-LISTING-DEFAULT GNU-DEFAULT
 * memtest86+ DEFAULT http://www.memtest.org/
 * mercator DEFAULT SF-DEFAULT:worldforge
 * mercurial DEFAULT http://mercurial.selenic.com/release/
 * mesa DEFAULT:MesaLib ftp://ftp.freedesktop.org/pub/mesa/current/
 * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
 * mingw32-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
 * mingw32-libp11 DEFAULT:libp11 http://www.opensc-project.org/files/libp11/
 * mingw32-nsis DEFAULT:nsis http://nsis.sourceforge.net/Download
 * mingw32-opensc DEFAULT:opensc http://www.opensc-project.org/files/opensc/
 * minicom DEFAULT http://alioth.debian.org/frs/?group_id=30018
 * Miro [Mm]iro-(.*?)\.tar\. http://ftp.osuosl.org/pub/pculture.org/miro/src/
 * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
 * mmapper DEFAULT SF-DEFAULT
 * mod_suphp DEFAULT:suphp http://www.suphp.org/Home.html
 * mod_wsgi DEFAULT GOOGLE-DEFAULT:modwsgi
 * modplugtools DEFAULT SF-DEFAULT:modplug-xmms
 * module-init-tools DEFAULT http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
 * moe DEFAULT GNU-DEFAULT
 * mojomojo DEFAULT:MojoMojo CPAN-DEFAULT:MojoMojo
 * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
 * most DEFAULT ftp://space.mit.edu/pub/davis/most/*/
 * 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
 * mrepo DEFAULT http://dag.wieers.com/home-made/mrepo/
 * msmtp DEFAULT SF-DEFAULT
 * mtd-utils DEFAULT ftp://ftp.infradead.org/pub/mtd-utils/
 * mtools DEFAULT GNU-DEFAULT
 * mtr DEFAULT ftp://ftp.bitwizard.nl/mtr/
 * mtx DEFAULT SF-DEFAULT 
 * muParser Version...([0-9]\.[0-9.]*).*muparser SF-DEFAULT:muparser
 * mupdf DEFAULT http://mupdf.com/download/
 * museek+ DEFAULT SF-DEFAULT:museek-plus
 * mutt DEFAULT ftp://ftp.mutt.org/mutt/
 * mypaint mypaint-([0-9]\.[0-9]\.[0-9]).tar.bz2 http://download.gna.org/mypaint/
 * mysqltuner tarball/v([\w.-]+) http://github.com/rackerhacker/MySQLTuner-perl/downloads
 * mysql-connector-java DEFAULT http://dev.mysql.com/downloads/connector/j/
 * mysql-proxy DEFAULT http://dev.mysql.com/downloads/mysql-proxy/?upcoming_os=src
 * mysql-workbench DEFAULT:mysql-workbench-gpl http://dev.mysql.com/downloads/workbench/?current_os=src

N - P

 * nano DEFAULT GNU-DEFAULT
 * nasm DEFAULT http://www.nasm.us/pub/nasm/releasebuilds/*/
 * nautilus-open-terminal DEFAULT GNOME-DEFAULT
 * nc netcat\.c,v\s+(\S+) http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/netcat.c?rev=.
 * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
 * ncurses DEFAULT GNU-DEFAULT
 * ncview DEFAULT ftp://cirrus.ucsd.edu/pub/ncview/
 * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
 * netmask DEFAULT DEBIAN-DEFAULT
 * netmonitor DEFAULT SF-DEFAULT
 * netpbm DEFAULT SF-DEFAULT
 * netpipe DEFAULT http://www.scl.ameslab.gov/netpipe/
 * newsbeuter DEFAULT http://newsbeuter.org/download.html
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nfs-utils DEFAULT SF-DEFAULT:nfs
 * ntfsprogs DEFAULT SF-DEFAULT:linux-ntfs
 * nget nget-([^+%& ]*?).tar.gz SF-DEFAULT
 * nginx DEFAULT http://nginx.org/en/download.html
 * nickle DEFAULT http://nickle.org/release/
 * nicotine+ DEFAULT SF-DEFAULT:nicotine-plus
 * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/
 * nkf DEFAULT http://sourceforge.jp/projects/nkf/releases/
 * nmap DEFAULT http://nmap.org/dist/
 * nted nted-([0-9.]+).tar.gz http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/sources/
 * ntfs-3g >ntfs-3g_ntfsprogs-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
 * numactl DEFAULT ftp://oss.sgi.com/projects/libnuma/download
 * numlockx DEFAULT http://ktown.kde.org/~seli/numlockx/
 * nuttcp DEFAULT http://lcp.nrl.navy.mil/nuttcp/
 * nx nx-X11-([\d.]+) http://www.nomachine.com/sources.php
 * obexftp DEFAULT SF-DEFAULT:openobex
 * ocaml DEFAULT http://caml.inria.fr/download.en.html
 * ocfs2-tools DEFAULT http://oss.oracle.com/projects/ocfs2-tools/files/source/*/
 * ocrad DEFAULT GNU-DEFAULT
 * octave DEFAULT ftp://ftp.octave.org/pub/octave
 * octave-forge DEFAULT:octave-forge-bundle SF-DEFAULT:octave
 * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
 * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
 * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
 * opencdk opencdk-(.*?).tar.gz ftp://ftp.gnutls.org/pub/gnutls/opencdk/
 * opengrok DEFAULT http://opensolaris.org/os/project/opengrok/
 * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
 * openobex DEFAULT http://www.kernel.org/pub/linux/bluetooth/
 * opensc DEFAULT http://www.opensc-project.org/files/opensc/
 * 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/
 * openswan DEFAULT ftp://ftp.openswan.org/openswan/
 * openvpn DEFAULT http://www.openvpn.net/index.php/open-source/downloads.html
 * optipng DEFAULT SF-DEFAULT
 * orbited DEFAULT:orbited PYPI-DEFAULT
 * orc DEFAULT http://code.entropywave.com/download/orc/
 * os-prober DEFAULT DEBIAN-DEFAULT
 * osmo DEFAULT SF-DEFAULT:osmo-pim
 * osslsigncode DEFAULT SF-DEFAULT
 * ovaldi DEFAULT SF-DEFAULT
 * p7zip p7zip_([0-9.]*?)_src_all.tar.bz2 SF-DEFAULT
 * pal DEFAULT SF-DEFAULT:palcal
 * pam DEFAULT http://www.us.kernel.org/pub/linux/libs/pam/library/
 * pam_mount DEFAULT SF-DEFAULT:pam-mount
 * pandoc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * paps DEFAULT SF-DEFAULT
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * patchutils DEFAULT http://cyberelk.net/tim/data/patchutils/stable/
 * pastebinit pastebinit-(([0-9])+(.)?))+.tar.gz http://www.stgraber.org/download/projects/pastebin/
 * pbm2l7k lexmark7000linux-(.*?).tar.gz http://www.ibiblio.org/pub/linux/hardware/drivers/
 * pbzip2 DEFAULT http://www.compression.ca/pbzip2/
 * pcc DEFAULT http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/
 * pciutils DEFAULT ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
 * pcmciautils DEFAULT http://www.kernel.org/pub/linux/utils/kernel/pcmcia/
 * pcre DEFAULT ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
 * pdfchain DEFAULT SF-DEFAULT
 * pdfjam <strong>(\d+\.\d+)</strong> http://go.warwick.ac.uk/pdfjam
 * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
 * pem DEFAULT GNU-DEFAULT
 * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
 * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
 * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-Permute DEFAULT:Algorithm-Permute CPAN-DEFAULT
 * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
 * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
 * perl-Archive-Tar DEFAULT:Archive-Tar CPAN-DEFAULT
 * perl-Archive-Zip DEFAULT:Archive-Zip CPAN-DEFAULT
 * perl-Authen-Captcha DEFAULT:Authen-Captcha CPAN-DEFAULT
 * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
 * perl-B-Hooks-OP-PPAddr DEFAULT:B-Hooks-OP-PPAddr CPAN-DEFAULT
 * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
 * perl-bioperl BioPerl-([0-9].*?)\.tar\.bz2 http://bioperl.org/DIST/
 * perl-bioperl-run BioPerl-[r|R]un-([0-9].*?)\.tar\.bz2 http://bioperl.org/DIST/
 * perl-Bio-Graphics DEFAULT:Bio-Graphics CPAN-DEFAULT
 * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
 * perl-Business-ISBN DEFAULT:Business-ISBN CPAN-DEFAULT
 * perl-Business-ISBN-Data DEFAULT:Business-ISBN-Data CPAN-DEFAULT
 * perl-Capture-Tiny DEFAULT:Capture-Tiny CPAN-DEFAULT
 * perl-Carp-Clan DEFAULT:Carp-Clan CPAN-DEFAULT
 * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
 * perl-Class-ISA DEFAULT:Class-ISA CPAN-DEFAULT
 * perl-Class-Unload DEFAULT:Class-Unload CPAN-DEFAULT
 * perl-Class-XSAccessor DEFAULT:Class-XSAccessor CPAN-DEFAULT
 * perl-Class-XSAccessor-Array DEFAULT:Class-XSAccessor-Array CPAN-DEFAULT
 * perl-Compress-Bzip2 DEFAULT:Compress-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Bzip2 DEFAULT:Compress-Raw-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Zlib DEFAULT:Compress-Raw-Zlib CPAN-DEFAULT
 * perl-Config-General DEFAULT:Config-General CPAN-DEFAULT
 * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
 * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
 * perl-Coro DEFAULT:Coro CPAN-DEFAULT
 * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
 * perl-CPAN-Inject DEFAULT:CPAN-Inject CPAN-DEFAULT
 * perl-criticism DEFAULT:criticism CPAN-DEFAULT
 * perl-Catalyst-Engine-PSGI DEFAULT:Catalyst-Engine-PSGI 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-SSLeay DEFAULT:Crypt-SSLeay CPAN-DEFAULT
 * perl-CSS-DOM DEFAULT:CSS-DOM CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Report DEFAULT:Data-Report CPAN-DEFAULT
 * perl-Data-Types DEFAULT:Data-Types CPAN-DEFAULT
 * perl-Date-Calc DEFAULT:Date-Calc CPAN-DEFAULT
 * perl-Date-Manip DEFAULT:Date-Manip CPAN-DEFAULT
 * perl-Date-Pcalc DEFAULT:Date-Pcalc CPAN-DEFAULT
 * perl-DBD-AnyData DEFAULT:DBD-AnyData CPAN-DEFAULT
 * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
 * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
 * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
 * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
 * perl-DBI DEFAULT:DBI CPAN-DEFAULT
 * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
 * perl-Devel-Dumpvar DEFAULT:Devel-Dumpvar CPAN-DEFAULT
 * perl-Devel-CheckOS DEFAULT:Devel-CheckOS CPAN-DEFAULT
 * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
 * perl-Devel-Symdump DEFAULT:Devel-Symdump CPAN-DEFAULT
 * perl-Digest-CRC DEFAULT:Digest-CRC CPAN-DEFAULT
 * perl-Digest-HMAC DEFAULT:Digest-HMAC CPAN-DEFAULT
 * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
 * perl-ExtUtils-InferConfig DEFAULT:ExtUtils-InferConfig CPAN-DEFAULT
 * perl-ExtUtils-InstallPAR DEFAULT:ExtUtils-InstallPAR CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage CPAN-DEFAULT
 * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
 * perl-Feed-Find DEFAULT:Feed-Find CPAN-DEFAULT
 * perl-File-BaseDir DEFAULT:File-BaseDir CPAN-DEFAULT
 * perl-File-DesktopEntry DEFAULT:File-DesktopEntry 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-NFSLock DEFAULT:File-NFSLock 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-Flickr-API DEFAULT:Flickr-API CPAN-DEFAULT
 * perl-Flickr-Upload DEFAULT:Flickr-Upload CPAN-DEFAULT
 * perl-Font-TTF DEFAULT:Font-TTF 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-Gtk2 DEFAULT:Gtk2 CPAN-DEFAULT
 * perl-Heap DEFAULT:Heap CPAN-DEFAULT
 * perl-HTML-Encoding DEFAULT:HTML-Encoding CPAN-DEFAULT
 * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
 * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
 * perl-HTML-Tagset DEFAULT:HTML-Tagset CPAN-DEFAULT
 * perl-HTML-Template DEFAULT:HTML-Template CPAN-DEFAULT
 * perl-HTML-Template-Pro DEFAULT:HTML-Template-Pro CPAN-DEFAULT
 * perl-HTML-Tidy DEFAULT:HTML-Tidy 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-Inline DEFAULT:Inline CPAN-DEFAULT
 * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
 * perl-IO-Compress DEFAULT:IO-Compress CPAN-DEFAULT
 * perl-IO-String DEFAULT:IO-String 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 DEFAULT:JSON CPAN-DEFAULT
 * perl-LDAP DEFAULT:LDAP CPAN-DEFAULT
 * perl-libwww-perl DEFAULT:libwww-perl CPAN-DEFAULT
 * perl-libxml-perl DEFAULT:libxml-perl CPAN-DEFAULT
 * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
 * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
 * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
 * perl-LWP-Protocol-https DEFAULT:LWP-Protocol-https CPAN-DEFAULT
 * perl-Math-MatrixReal DEFAULT:Math-MatrixReal CPAN-DEFAULT
 * perl-Math-Symbolic DEFAULT:Math-Symbolic CPAN-DEFAULT
 * perl-Math-Random-MT-Auto DEFAULT:Math-Random-MT-Auto CPAN-DEFAULT
 * perl-Math-Vec DEFAULT:Math-Vec CPAN-DEFAULT
 * perl-MIME-Lite DEFAULT:MIME-Lite CPAN-DEFAULT
 * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
 * perl-Module-Extract DEFAULT:Module-Extract CPAN-DEFAULT
 * perl-Module-Inspector DEFAULT:Module-Inspector CPAN-DEFAULT
 * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
 * perl-Module-Math-Depends DEFAULT:Module-Math-Depends CPAN-DEFAULT
 * perl-Module-ScanDeps DEFAULT:Module-ScanDeps CPAN-DEFAULT
 * perl-Module-Signature DEFAULT:Module-Signature CPAN-DEFAULT
 * perl-Mojolicious DEFAULT:Mojolicious CPAN-DEFAULT
 * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
 * perl-MooseX-MarkAsMethod DEFAULT:MooseX-MarkAsMethod CPAN-DEFAULT
 * perl-MooseX-TrackDirty-Attributes DEFAULT:MooseX-TrackDirty-Attributes CPAN-DEFAULT
 * perl-MooseX-Types-DateTime-ButMaintained DEFAULT:MooseX-Types-DateTime-ButMaintained 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-WWW-Mechanize DEFAULT:Nagios-Plugin-WWW-Mechanize CPAN-DEFAULT
 * perl-Net-DNS DEFAULT:Net-DNS CPAN-DEFAULT
 * perl-Net-HTTP DEFAULT:Net-HTTP CPAN-DEFAULT
 * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
 * perl-Net-IRC DEFAULT:Net-IRC CPAN-DEFAULT
 * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
 * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
 * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
 * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
 * perl-Object-InsideOut DEFAULT:Object-Inside-Out CPAN-DEFAULT
 * perl-Object-MultiType DEFAULT:Object-MultiType CPAN-DEFAULT
 * perl-Olson-Abbreviations DEFAULT:Olson-Abbreviations CPAN-DEFAULT
 * perl-ORLite DEFAULT:ORLite CPAN-DEFAULT
 * perl-ORLite-Migrate DEFAULT:ORLite-Migrate CPAN-DEFAULT
 * perl-Ouch DEFAULT:Ouch CPAN-DEFAULT
 * perl-Padre DEFAULT:Padre CPAN-DEFAULT
 * perl-PAR DEFAULT:PAR CPAN-DEFAULT
 * perl-PAR-Packer DEFAULT:PAR-Packer 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-PDL DEFAULT:PDL CPAN-DEFAULT
 * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
 * perl-PDF-Haru DEFAULT:PDF-Haru 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-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-Metrics-Simple DEFAULT:Perl-Metrics-Simple CPAN-DEFAULT
 * perl-pip DEFAULT:pip CPAN-DEFAULT
 * perl-Pod-Abstract DEFAULT:Pod-Abstract CPAN-DEFAULT
 * perl-Pod-Coverage DEFAULT:Pod-Coverage CPAN-DEFAULT
 * perl-Pod-MinimumVersion DEFAULT:Pod-MinimumVersion CPAN-DEFAULT
 * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
 * perl-Pod-Strip DEFAULT:Pod-Strip CPAN-DEFAULT
 * perl-POD2-Base DEFAULT:POD2-Base CPAN-DEFAULT
 * perl-POE-Filter-HTTP-Parser DEFAULT:POE-Filter-HTTP-Parser 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-RPM-Specfile DEFAULT:RPM-Specfile CPAN-DEFAULT
 * perl-RPM2 DEFAULT:RPM2 CPAN-DEFAULT
 * perl-Scriptalicious DEFAULT:Scriptalicious CPAN-DEFAULT
 * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
 * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
 * perl-Software-License DEFAULT:Software-License CPAN-DEFAULT
 * perl-SOAP-Lite DEFAULT:SOAP-Lite CPAN-DEFAULT
 * perl-SQL-Statement DEFAULT:SQL-Statement CPAN-DEFAULT
 * perl-Statistics-Basic DEFAULT:Statistics-Basic CPAN-DEFAULT
 * perl-String-CRC32 DEFAULT:String-CRC32 CPAN-DEFAULT
 * perl-String-Random DEFAULT:String-Random 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-TAP-Harness-Archive DEFAULT:TAP-Harness-Archive CPAN-DEFAULT
 * perl-Task-Kensho-Toolchain DEFAULT:Task-Kensho-Toolchain CPAN-DEFAULT
 * perl-Template-Tiny DEFAULT:Template-Tiny CPAN-DEFAULT
 * perl-TermReadKey DEFAULT:TermReadKey CPAN-DEFAULT
 * perl-Term-ReadLine-Gnu DEFAULT:Term-ReadLine-Gnu CPAN-DEFAULT
 * perl-Test-AutoBuild DEFAULT:Test-AutoBuild CPAN-DEFAULT
 * perl-Test-Compile DEFAULT:Test-Compile CPAN-DEFAULT
 * perl-Test-DistManifest DEFAULT:Test-DistManifest CPAN-DEFAULT
 * perl-Test-Harness-Straps DEFAULT:Test-Harness-Straps CPAN-DEFAULT
 * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
 * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
 * perl-Test-Most DEFAULT:Test-Most CPAN-DEFAULT
 * perl-Test-NeedsDisplay DEFAULT:Test-NeedsDisplay 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-POE-Client-TCP DEFAULT:Test-POE-Client-TCP CPAN-DEFAULT
 * perl-Test-Prereq DEFAULT:Test-Prereq CPAN-DEFAULT
 * perl-Test-Smoke DEFAULT:Test-Smoke CPAN-DEFAULT
 * perl-Test-Trap DEFAULT:Test-Trap CPAN-DEFAULT
 * perl-Test-Warn DEFAULT:Test-Warn CPAN-DEFAULT
 * perl-Test-WWW-Selenium DEFAULT:Test-WWW-Selenium CPAN-DEFAULT
 * perl-Text-Aligner DEFAULT:Text-Aligner CPAN-DEFAULT
 * perl-Text-CSV DEFAULT:Text-CSV CPAN-DEFAULT
 * perl-Text-CSV_XS DEFAULT:Text-CSV_XS CPAN-DEFAULT
 * perl-Text-FindIndent DEFAULT:Text-FindIndent CPAN-DEFAULT
 * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
 * perl-Text-Table DEFAULT:Text-Table CPAN-DEFAULT
 * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
 * perl-Text-VimColor DEFAULT:Text-VimColor 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-TimeDate DEFAULT:TimeDate CPAN-DEFAULT
 * perl-TryCatch DEFAULT:TryCatch CPAN-DEFAULT
 * perl-URI DEFAULT:URI CPAN-DEFAULT
 * perl-VCS-LibCVS DEFAULT:VCS-LibCVS 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-Mechanize DEFAULT:WWW-Mechanize CPAN-DEFAULT
 * perl-Wx DEFAULT:Wx CPAN-DEFAULT
 * perl-Wx-Perl-DataWalker DEFAULT:Wx-Perl-DataWalker CPAN-DEFAULT
 * perl-Wx-Perl-ProcessStream DEFAULT:Wx-Perl-ProcessStream CPAN-DEFAULT
 * perl-XML-Atom-SimpleFeed DEFAULT:XML-Atom-SimpleFeed CPAN-DEFAULT
 * perl-XML-Dumper DEFAULT:XML-Dumper CPAN-DEFAULT
 * perl-XML-Generator DEFAULT:XML-Generator CPAN-DEFAULT
 * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
 * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
 * perl-XML-LibXSLT DEFAULT:XML-LibXSLT 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-SAX DEFAULT:XML-SAX CPAN-DEFAULT
 * perl-XML-Smart DEFAULT:XML-Smart CPAN-DEFAULT
 * perl-XML-Simple DEFAULT:XML-Simple CPAN-DEFAULT
 * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
 * perl-XML-XPath DEFAULT:XML-XPath CPAN-DEFAULT
 * perl-XXX DEFAULT:XXX CPAN-DEFAULT
 * perl-YAML-LibYAML DEFAULT:YAML-LibYAML CPAN-DEFAULT
 * perl-YAML-Tiny DEFAULT:YAML-Tiny CPAN-DEFAULT
 * perl-Algorithm-CheckDigits DEFAULT:Algorithm-CheckDigits CPAN-DEFAULT
 * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
 * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisec CPAN-DEFAULT
 * perl-Class-Inner DEFAULT:Class-Inner CPAN-DEFAULT
 * perl-Config-Properties DEFAULT:Config-Properties CPAN-DEFAULT
 * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber CPAN-DEFAULT
 * perl-Date-ICal DEFAULT:Date-ICal CPAN-DEFAULT
 * perl-Date-Leapyear DEFAULT:Date-Leapyear CPAN-DEFAULT
 * perl-DateTime-Precise DEFAULT:DateTime-Precise CPAN-DEFAULT
 * perl-Font-TTFMetrics DEFAULT:Font-TTFMetrics CPAN-DEFAULT
 * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered 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-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT
 * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT
 * perl-MIME-Charset DEFAULT:MIME-Charset CPAN-DEFAULT
 * perl-MIME-EncWords DEFAULT:MIME-EncWords CPAN-DEFAULT
 * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
 * perl-Net-eBay DEFAULT:Net-eBay CPAN-DEFAULT
 * perl-Shipwright DEFAULT:Shipwright CPAN-DEFAULT
 * perl-String-Escape DEFAULT:String-Escape CPAN-DEFAULT
 * perl-Test-Unit DEFAULT:Test-Unit CPAN-DEFAULT
 * perl-Test-Unit-Runner-Xml DEFAULT:Test-Unit-Runner-Xml CPAN-DEFAULT
 * perl-Text-Format DEFAULT:Text-Format CPAN-DEFAULT
 * perl-User DEFAULT:User CPAN-DEFAULT
 * perl-WWW-RobotRules DEFAULT:WWW-RobotRules CPAN-DEFAULT
 * perl-XML-Generator-DBI DEFAULT:XML-Generator-DBI CPAN-DEFAULT
 * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
 * perl-XML-Merge DEFAULT:XML-Merge CPAN-DEFAULT
 * perl-XML-Simple-DTDReader DEFAULT:XML-Simple-DTDReader CPAN-DEFAULT
 * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
 * perlbrew DEFAULT:App-perlbrew CPAN-DEFAULT:App-perlbrew
 * perltidy Perl-Tidy-(\S+?)\.(?:t|zip) SF-DEFAULT
 * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300
 * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
 * php-pdepend-PHP-Depend <title>PHP_Depend\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.pdepend.org/feed.xml
 * php-pear-Console-Color Console_Color-(.*?).tgz http://pear.php.net/package/Console_Color/download
 * php-pear-Console-CommandLine Console_CommandLine-(.*?).tgz http://pear.php.net/package/Console_CommandLine/download
 * php-pear-Crypt-Blowfish Crypt_Blowfish-(.*?)\.tgz http://pear.php.net/package/Crypt_Blowfish/download
 * php-pear-DB DB-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/DB/download
 * php-pear-PHP-CodeSniffer PHP_CodeSniffer-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PHP_CodeSniffer/download/
 * php-pear-PhpDocumentor PhpDocumentor-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PhpDocumentor/download
 * php-pear-phing phing-(\d+\.\d+\.\d+) http://phing.info/trac/wiki/Users/Download
 * 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-apc APC-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/APC
 * 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-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/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-phploc <title>phploc\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-CodeBrowser <title>PHP_CodeBrowser\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
 * 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
 * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
 * picard picard-(.*?).tar.gz http://musicbrainz.org/doc/PicardDownload
 * pida PIDA-(.*?).tar.gz http://pida.co.uk/files/releases/
 * 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-musictracker
 * pidgin-privacy-please DEFAULT GOOGLE-DEFAULT
 * pigz DEFAULT http://zlib.net/pigz/
 * pinentry pinentry-([0-9.]*)\.tar\.gz ftp://ftp.gnupg.org/gcrypt/pinentry/
 * pioneers DEFAULT SF-DEFAULT
 * pitivi version is <b>([0-9]+\.[0-9]+\.[0-9]+?) http://www.pitivi.org/?go=download
 * pixman DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * plotutils DEFAULT GNU-DEFAULT
 * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
 * pokerth DEFAULT:PokerTH SF-DEFAULT
 * polipo polipo-([0-9]\.[0-9.]*?).tar.gz http://freehaven.net/~chrisd/polipo/
 * pondus DEFAULT http://www.ephys.de/software/pondus/download.htm
 * pootle DEFAULT:pootle SF-DEFAULT:translate
 * potrace DEFAULT SF-DEFAULT
 * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
 * postfix DEFAULT ftp://ftp.porcupine.org/mirrors/postfix-release/official/
 * powertop DEFAULT http://www.lesswatts.org/projects/powertop/download.php
 * ppp DEFAULT ftp://ftp.samba.org/pub/ppp/
 * pptp DEFAULT SF-DEFAULT:pptpclient
 * primer3 primer3-([0-9.]*).*\.(?:tar|t[bglx]z|tbz2|zip) SF-DEFAULT
 * privoxy privoxy-([0-9.]*).*\.(?:tar|t[bglx]z|tbz2|zip) SF-DEFAULT:ijbswa
 * procps DEFAULT http://procps.sourceforge.net/download.html
 * protobuf DEFAULT GOOGLE-DEFAULT
 * proxyknife DEFAULT GNU-DEFAULT
 * psacct DEFAULT GNU-DEFAULT:acct
 * psfex DEFAULT http://www.astromatic.net/download/psfex/
 * psmisc DEFAULT SF-DEFAULT
 * pspp DEFAULT GNU-DEFAULT
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * pure DEFAULT GOOGLE-DEFAULT:pure-lang
 * purple-msn-pecan DEFAULT:msn-pecan GOOGLE-DEFAULT:msn-pecan
 * purple-plugin_pack purple-plugin_pack-[.0-9]+\.tar\.bz2 http://plugins.guifications.org/trac/downloads?order=time&desc=1
 * pvm pvm([0-9.]*)\..*\.(?:tar|t[bglx]z|tbz2|zip) http://www.netlib.org/pvm3/index.html
 * pwgen DEFAULT SF-DEFAULT
 * pychess DEFAULT GOOGLE-DEFAULT
 * pyfits DEFAULT http://www.stsci.edu/resources/software_hardware/pyfits/
 * pyflakes DEFAULT http://divmod.org/trac/wiki/DivmodPyflakes
 * pygrace pygrace-(.*?).tgz http://www.cacr.caltech.edu/~mmckerns/software.html
 * pyicq-t pyicq-t-(.*?).tar.gz GOOGLE-DEFAULT:pyicqt
 * PyMca pymca(.*?)-src\.t SF-DEFAULT:pymca
 * pynac pynac-([\d.]+)\.spkg http://sagemath.org/packages/standard/
 * pypar DEFAULT SF-DEFAULT
 * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
 * pypy DEFAULT http://pypy.org/download/
 * PyQuante DEFAULT SF-DEFAULT:pyquante
 * PyQwt DEFAULT SF-DEFAULT:pyqwt
 * pyroom DEFAULT LP-DEFAULT
 * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
 * python-application DEFAULT PYPI-DEFAULT
 * python-beaker DEFAULT:Beaker PYPI-DEFAULT
 * python-biopython biopython-([0-9].*?)\.tar\.gz http://biopython.org/DIST/
 * python-blist blist-(.*?).tar.gz PYPI-DEFAULT
 * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
 * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
 * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
 * python-clientform DEFAULT:ClientForm PYPI-DEFAULT:ClientForm
 * python-configobj DEFAULT:ConfigObj PYPI-DEFAULT:ConfigObj
 * python-coverage DEFAULT:coverage PYPI-DEFAULT:coverage
 * python-cpio DEFAULT:python-cpio http://download.berlios.de/python-cpio/
 * python-daemon DEFAULT:daemon PYPI-DEFAULT:daemon
 * python-decorator DEFAULT:decorator PYPI-DEFAULT:decorator
 * python-decoratortools DEFAULT:DecoratorTools PYPI-DEFAULT:DecoratorTools
 * python-demjson DEFAULT:demjson PYPI-DEFAULT:demjson
 * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
 * python-distutils-extra DEFAULT LP-DEFAULT
 * python-dns <a href="kits/(.*)/">Stable</a> http://www.dnspython.org/
 * python-docutils DEFAULT PYPI-DEFAULT:docutils
 * python-elixir Elixir-(.*?).tar.gz PYPI-DEFAULT:Elixir
 * python-execnet execnet-(.*?).(?:tar.gz|zip) PYPI-DEFAULT:execnet
 * python-feedcache DEFAULT:feedcache http://pypi.python.org/pypi/feedcache/
 * python-fedora DEFAULT:python-fedora PYPI-DEFAULT:python-fedora
 * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
 * python-formencode DEFAULT:FormEncode PYPI-DEFAULT:FormEncode
 * python-gdata DEFAULT:gdata GOOGLE-DEFAULT:gdata-python-client
 * python-imaging Imaging-([0-9.]*?)\.tar http://effbot.org/downloads/
 * python-irclib DEFAULT SF-DEFAULT:python-irclib
 * python-jinja2 Jinja2-(.*?).tar.gz PYPI-DEFAULT:Jinja2
 * python-kid DEFAULT:kid PYPI-DEFAULT:kid
 * python-Levenshtein DEFAULT:python-Levenshtein SF-DEFAULT:translate
 * python-lxml latest version is <a class="reference external" href="lxml-([0-9.]+)\.tgz http://codespeak.net/lxml/
 * python-mako DEFAULT:Mako PYPI-DEFAULT:Mako
 * python-markdown DEFAULT:Markdown PYPI-DEFAULT:Markdown
 * python-markdown2 DEFAULT:markdown2 PYPI-DEFAULT:markdown2
 * python-markupsafe DEFAULT:MarkupSafe PYPI-DEFAULT:MarkupSafe
 * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
 * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
 * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
 * python-morbid DEFAULT:morbid PYPI-DEFAULT:morbid
 * python-mpmath DEFAULT:mpmath GOOGLE-DEFAULT:mpmath
 * python-mutagen mutagen-(.*?).tar.gz http://www.sacredchao.net/~piman/software/
 * python-mwlib DEFAULT:mwlib PYPI-DEFAULT:mwlib
 * python-myghty DEFAULT:Myghty PYPI-DEFAULT:Myghty
 * python-nose DEFAULT:nose PYPI-DEFAULT:nose
 * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT:paida
 * python-paste DEFAULT:Paste PYPI-DEFAULT:Paste
 * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
 * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
 * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
 * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
 * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
 * python-peak-util-assembler DEFAULT:BytecodeAssembler PYPI-DEFAULT:BytecodeAssembler
 * python-peak-util-extremes DEFAULT:Extremes PYPI-DEFAULT:Extremes
 * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
 * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
 * python-protocols DEFAULT:PyProtocols http://peak.telecommunity.com/dist/
 * python-psutil DEFAULT:psutil GOOGLE-DEFAULT:psutil
 * python-psyco Current.version.is.([0-9]+\..+?) http://psyco.sourceforge.net/download.html
 * python-py py-(.*?).(?:tar.gz|zip) PYPI-DEFAULT:py
 * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
 * 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-rope DEFAULT:rope PYPI-DEFAULT:rope
 * python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
 * python-setuptools DEFAULT:distribute PYPI-DEFAULT:distribute
 * python-shove DEFAULT:shove PYPI-DEFAULT:shove
 * python-simplegeneric DEFAULT:simplegeneric PYPI-DEFAULT:simplegeneric
 * python-simplejson simplejson-([0-9.]+?)\.tar PYPI-DEFAULT:simplejson
 * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
 * python-sphinx DEFAULT:Sphinx PYPI-DEFAULT:Sphinx
 * python-sprox DEFAULT:sprox PYPI-DEFAULT:sprox
 * python-sqlalchemy DEFAULT:SQLAlchemy PYPI-DEFAULT:SQLAlchemy
 * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
 * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
 * python-storm DEFAULT:storm LP-DEFAULT:storm
 * python-testtools DEFAULT:testtools LP-DEFAULT:testtools
 * 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-toscawidgets DEFAULT:ToscaWidgets PYPI-DEFAULT:ToscaWidgets
 * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
 * 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-twisted DEFAULT:Twisted http://twistedmatrix.com/trac/wiki/Downloads
 * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
 * python-weberror DEFAULT:WebError PYPI-DEFAULT:WebError
 * python-webflash DEFAULT:WebFlash PYPI-DEFAULT:WebFlash
 * python-webhelpers DEFAULT:WebHelpers PYPI-DEFAULT:WebHelpers
 * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
 * python-xkit DEFAULT:x-kit LP-DEFAULT:xorgparser
 * python-zc-buildout zc.buildout-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zc.buildout
 * python-zc-lockfile zc.lockfile-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zc.lockfile
 * python-ZConfig ZConfig-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:ZConfig
 * python-ZODB3 ZODB3-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:ZODB3
 * python-zdaemon zdaemon-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zdaemon
 * python-zmq pyzmq-(.*?).tar.gz https://github.com/zeromq/pyzmq/downloads
 * python-zope-component zope\.component-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.component
 * python-zope-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-i18n zope\.i18n-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.i18n
 * python-zope-i18nmessageid zope\.i18nmessageid-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip)  PYPI-DEFAULT:zope.i18nmessageid
 * python-zope-interface zope\.interface-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.interface
 * python-zope-proxy zope\.proxy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.proxy
 * python-zope-schema zope\.schema-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.schema
 * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.sqlalchemy
 * python-zope-testing zope\.testing-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.testing
 * python3-chardet DEFAULT http://chardet.feedparser.org/download/

Q - Z

 * qbzr DEFAULT LP-DEFAULT
 * qiv DEFAULT http://spiegl.de/qiv/download/
 * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
 * qof DEFAULT SF-DEFAULT
 * qrupdate DEFAULT SF-DEFAULT
 * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
 * qt-qsa qsa-x11-free-(.*?\..*?).tar.gz ftp://ftp.trolltech.com/qsa/source/
 * qtiplot DEFAULT http://soft.proindependent.com/download.html
 * quagga DEFAULT http://www.quagga.net/download/
 * quazip DEFAULT SF-DEFAULT
 * quilt DEFAULT http://savannah.nongnu.org/files/?group=quilt
 * quota DEFAULT SF-DEFAULT:linuxquota
 * quotatool DEFAULT http://quotatool.ekenberg.se/index.php?node=download
 * qwt DEFAULT SF-DEFAULT
 * RackTables DEFAULT SF-DEFAULT:racktables
 * radvd DEFAULT http://www.litech.org/radvd/
 * rakarrack rakarrack-(.[^-]*?).tar.(?:bz2|gz) SF-DEFAULT
 * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
 * rb_libtorrent DEFAULT:libtorrent-rasterbar GOOGLE-DEFAULT:libtorrent
 * rcs DEFAULT GNU-DEFAULT
 * rcsslogplayer \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcsslogplayer/
 * 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
 * recode DEFAULT GNU-DEFAULT
 * redet-doc redet_manual(.*?).tar.gz http://billposer.org/Software/redet.html
 * redet redet-(.*?).tar.gz http://billposer.org/Software/redet.html
 * redshift DEFAULT LP-DEFAULT
 * regionset regionset-([.0-9]*?).tar.gz http://linvdr.org/download/regionset/
 * reiserfs-utils reiserfsprogs-(.*?)\.tar\.bz2 http://www.kernel.org/pub/linux/utils/fs/reiserfs/
 * remmina DEFAULT SF-DEFAULT
 * reptyr DEFAULT https://github.com/nelhage/reptyr/downloads
 * ReviewBoard DEFAULT http://downloads.reviewboard.org/releases/ReviewBoard/*/
 * rfkill DEFAULT http://wireless.kernel.org/download/rfkill/
 * rlwrap rlwrap-(.*?).tar.gz http://utopia.knoware.nl/~hlub/rlwrap/
 * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
 * rmol rmol-([0-9.]*)\.tar\.gz SF-DEFAULT
 * roundup DEFAULT PYPI-DEFAULT
 * routino DEFAULT http://www.routino.org/download/
 * rp-pppoe DEFAULT http://www.roaringpenguin.com/products/pppoe
 * rpl DEFAULT SF-DEFAULT
 * rpmlint DEFAULT http://rpmlint.zarb.org/download/
 * rpmorphan DEFAULT SF-DEFAULT
 * rst2pdf DEFAULT GOOGLE-DEFAULT
 * rsvndump DEFAULT SF-DEFAULT
 * rsync DEFAULT http://samba.org/ftp/rsync/
 * rsyslog DEFAULT http://www.rsyslog.com/tag/v5/
 * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
 * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/
 * ruby ruby-(.*?)\.tar\.gz ftp://ftp.ruby-lang.org//pub/ruby/
 * ruby-mysql mysql-ruby-(.*?).tar.gz http://tmtm.org/downloads/mysql/ruby/
 * rubygem-actionmailer actionmailer-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/actionmailer.json
 * rubygem-actionpack actionpack-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/actionpack.json
 * rubygem-activemodel activemodel-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/activemodel.json
 * rubygem-activerecord activerecord-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/activerecord.json
 * rubygem-activeresource activeresource-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/activeresource.json
 * rubygem-activesupport activesupport-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/activesupport.json
 * rubygem-arel arel-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/arel.json
 * rubygem-aws aws-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/aws.json
 * rubygem-bundler bundler-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/bundler.json
 * rubygem-coderay coderay-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/coderay.json
 * rubygem-ditz ditz-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/ditz.json
 * rubygem-erubis erubis-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/erubis.json
 * rubygem-eventmachine eventmachine-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/eventmachine.json
 * rubygem-fastthread fastthread-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/fastthread.json
 * rubygem-fssm fssm-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/fssm.json
 * rubygem-gem_plugin gem_plugin-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/gem_plugin.json
 * rubygem-i18n i18n-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/i18n.json
 * rubygem-mongrel mongrel-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/mongrel.json
 * rubygem-rubygem-net-scp rubygem-net-scp-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/rubygem-net-scp.json
 * rubygem-pr_geohash pr_geohash-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/pr_geohash.json
 * rubygem-rack-mount rack-mount-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/rack-mount.json
 * rubygem-rack-restful_submit rack-restful_submit-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/rack-restful_submit.json
 * rubygem-rails rails-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/rails.json
 * rubygem-railties railties-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/railties.json
 * rubygem-regin regin-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/regin.json
 * rubygem-rvm rvm-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/rvm.json
 * rubygem-sinatra sinatra-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/sinatra.json
 * rubygem-sqlite3 sqlite3-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/sqlite3.json
 * rubygem-sup sup-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/sup.json
 * rubygem-term-ansicolor term-ansicolor-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/term-ansicolor.json
 * rubygem-tilt tilt-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/tilt.json
 * rubygem-trollop trollop-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/trollop.json
 * rubygem-warden warden-([0-9.]*?)\.gem http://rubygems.org/api/v1/gems/warden.json
 * s3cmd DEFAULT SF-DEFAULT:s3tools
 * s390utils s390-tools-(.*?)\.html http://www.ibm.com/developerworks/linux/linux390/s390-tools.html
 * sage DEFAULT SF-DEFAULT:worldforge
 * sakura DEFAULT http://www.pleyades.net/david/sakura.php
 * samba DEFAULT http://samba.org/ftp/samba/
 * sane-backends sane-backends-([0-9]\.[0-9]\.[0-9][0-9]) ftp://ftp.sane-project.org/pub/sane/
 * scala DEFAULT http://www.scala-lang.org/downloads
 * scheme2js scheme2js-(.*?).tar.gz http://www-sop.inria.fr/mimosa/scheme2js/files/
 * scidavis scidavis-([0-9.]*?).tar.bz2 SF-DEFAULT
 * scim DEFAULT SF-DEFAULT
 * scim-m17n DEFAULT SF-DEFAULT:scim
 * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
 * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
 * screen DEFAULT GNU-DEFAULT
 * sdcv sdcv DEFAULT SF-DEFAULT
 * sdparm DEFAULT http://sg.danny.cz/sg/p/
 * seamonkey DEFAULT http://www.seamonkey-project.org/releases/
 * sed DEFAULT GNU-DEFAULT
 * seed DEFAULT GNOME-DEFAULT
 * seeker \bSeeker\s+v?([^,\s]+) http://smp.if.uj.edu.pl/~baryluk/seeker_baryluk.c
 * seekwatcher seekwatcher-(.*?).tar.bz2 http://oss.oracle.com/~mason/seekwatcher/
 * senamirmir-washra-fonts DEFAULT:washra_fonts http://www.senamirmir.org/projects/typography/typeface.html
 * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
 * sharutils DEFAULT GNU-DEFAULT
 * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
 * shorewall /pub/shorewall/\d+\.\d+/shorewall-(\d+\.\d+\.\d+)/releasenotes.txt http://www.shorewall.net/shorewall_index.htm
 * shotwell DEFAULT http://yorba.org/download/shotwell/*/
 * shtool DEFAULT GNU-DEFAULT
 * shutter DEFAULT http://shutter-project.org/wp-content/uploads/releases/tars/
 * siege siege-([0-9\.]+).tar.gz ftp://ftp.joedog.org/pub/siege/
 * sigscheme DEFAULT GOOGLE-DEFAULT
 * sil-andika-fonts ttf-sil-andika_([\d.]+)\.basic http://scripts.sil.org/cms/scripts/page.php?item_id=Andika_download
 * sil-charis-compact-fonts \bCharisSILCompact([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=CharisSIL_download
 * sil-charis-fonts \bCharisSIL([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=CharisSIL_download
 * sil-lateef-fonts \bLateefRegOT_([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=ArabicFonts_Download
 * sil-scheherazade-fonts \bScheherazadeRegOT_([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=ArabicFonts_Download
 * simspark \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/simspark/
 * simulavr DEFAULT http://download.savannah.gnu.org/releases-noredirect/simulavr/
 * sipwitch DEFAULT GNU-DEFAULT
 * sisu DEFAULT https://github.com/sonatype/sisu/downloads
 * six six-(.*?)\.tar.gz http://six.retes.hu/download/
 * sks DEFAULT GOOGLE-DEFAULT:sks-keyserver
 * skstream DEFAULT SF-DEFAULT:worldforge
 * slang DEFAULT ftp://space.mit.edu/pub/davis/slang/*/
 * 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/
 * snmp++ snmp++v([0-9\.]+)\.tar\.gz http://www.agentpp.com/
 * socat DEFAULT http://www.dest-unreach.org/socat/
 * soci soci-([0-9.]*)\.tar\.gz SF-DEFAULT
 * solfege DEFAULT GNU-DEFAULT
 * sonata sonata-(.*?).tar.gz http://sonata.berlios.de/download.html
 * sonic-visualiser DEFAULT SF-DEFAULT:sv1
 * soprano DEFAULT SF-DEFAULT
 * sound-juicer DEFAULT GNOME-DEFAULT
 * sox DEFAULT SF-DEFAULT
 * spacechart DEFAULT GNU-DEFAULT
 * spamassassin DEFAULT http://spamassassin.apache.org/downloads.cgi
 * sparse DEFAULT http://www.kernel.org/pub/software/devel/sparse/dist/
 * sparsehash DEFAULT GOOGLE-DEFAULT:google-sparsehash
 * sphinx >\s*Sphinx\s([0-9\.]+)\s*< http://www.sphinxsearch.com/downloads.html
 * spindown DEFAULT GOOGLE-DEFAULT
 * splint DEFAULT http://www.splint.org/downloads/
 * sqlite Version\s+([\d.]+\d) http://www.sqlite.org/news.html
 * squashfs-tools squashfs([\d.]+)\.t SF-DEFAULT:squashfs
 * sshfp sshfp-(.*?).tar.gz ftp://ftp.xelerance.com/sshfp/
 * sshmenu DEFAULT SF-DEFAULT
 * ssmtp DEFAULT DEBIAN-DEFAULT
 * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
 * steghide DEFAULT SF-DEFAULT
 * stellarium DEFAULT SF-DEFAULT
 * stgit stgit-(.*?).tar.gz http://homepage.ntlworld.com/cmarinas/stgit/
 * stix-fonts \bSTIXv([\d.]+)\.zip SF-DEFAULT:stixfonts
 * strace DEFAULT SF-DEFAULT
 * strigi strigi version (.*?) \([2-9][0-9][0-9][0-9]-[0-1][0-9]-[0-3][0-9]\) http://www.vandenoever.info/software/strigi/
 * stow DEFAULT GNU-DEFAULT
 * subdownloader DEFAULT LP-DEFAULT
 * subversion DEFAULT http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260
 * sudo DEFAULT http://www.sudo.ws/sudo/dist/
 * sunbird DEFAULT http://releases.mozilla.org/pub/mozilla.org/calendar/sunbird/releases/*/source/
 * sundials sundials-([0-9.]+)\.tar\.[gzb2]+ http://www.llnl.gov/CASC/sundials/download/download.html
 * sunifdef sunifdef-(.*?).tar.gz http://www.sunifdef.strudl.org/download.html
 * supertux DEFAULT http://supertux.lethargik.org/download.html
 * supertuxkart DEFAULT SF-DEFAULT
 * surfraw surfraw-(.*?).tar.gz http://surfraw.alioth.debian.org/dist/
 * swarp DEFAULT http://www.astromatic.net/download/swarp/
 * swing-layout Version.([^.]*) https://swing-layout.dev.java.net/servlets/ProjectNewsList
 * sxiv DEFAULT https://github.com/muennich/sxiv/downloads
 * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
 * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
 * sympy DEFAULT GOOGLE-DEFAULT
 * sysbench DEFAULT SF-DEFAULT
 * sysconftool DEFAULT SF-DEFAULT:courier
 * sysfsutils DEFAULT SF-DEFAULT:linux-diag
 * syslinux DEFAULT http://www.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
 * sysvinit sysvinit-(.*?)dsf\.tar\.bz2 http://download.savannah.gnu.org/releases/sysvinit/
 * 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
 * tcl \btcl([\d.]+)-src\.t SF-DEFAULT
 * tcllib DEFAULT SF-DEFAULT
 * tcsh tcsh-(.*?)\.00\.tar\.gz http://ftp.funet.fi/pub/unix/shells/tcsh/
 * tcpdump tcpdump-(.*?)\.tar\. http://www.tcpdump.org/release/
 * techne techne-([0-9.]*?)\.tar\.gz http://download.savannah.gnu.org/releases/techne/
 * tellico tellico-(.*?)\.tar\.bz2 http://tellico-project.org/download
 * termcap DEFAULT GNU-DEFAULT
 * terminus-fonts DEFAULT:terminus-font SF-DEFAULT:terminus-font
 * teseq DEFAULT GNU-DEFAULT
 * tesseract tesseract.([0-9\.]*).tar.gz GOOGLE-DEFAULT:tesseract-ocr
 * texinfo DEFAULT GNU-DEFAULT
 * TeXmacs TeXmacs-(.*?)-src\.tar ftp://ftp.texmacs.org/pub/TeXmacs/targz/
 * texworks DEFAULT GOOGLE-DEFAULT
 * thai-scalable-fonts thaifonts-scalable-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/thaifonts-scalable/
 * thai-arundina-fonts thaifonts-arundina-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/thaifonts-arundina/
 * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
 * tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/
 * time DEFAULT GNU-DEFAULT
 * tin DEFAULT ftp://ftp.tin.org/pub/news/clients/tin/stable/
 * tintin DEFAULT SF-DEFAULT
 * tla DEFAULT GNU-DEFAULT:gnu-arch
 * tmux DEFAULT SF-DEFAULT
 * tomcat5 DEFAULT http://www.apache.org/dist/tomcat/tomcat-5/*/src/
 * tomcat6 DEFAULT http://www.apache.org/dist/tomcat/tomcat-6/*/src/
 * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
 * torque DEFAULT http://www.clusterresources.com/downloads/torque/
 * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
 * towhee DEFAULT SF-DEFAULT
 * translate-toolkit DEFAULT:translate-toolkit SF-DEFAULT:translate
 * transmission DEFAULT http://www.transmissionbt.com/download.php
 * transmission-remote-cli \bVERSION\s*=\s*'([^']+)' http://github.com/fagga/transmission-remote-cli/raw/master/transmission-remote-cli.py
 * trash-cli DEFAULT PYPI-DEFAULT
 * tree tree-([0-9a-z.]+).tgz http://mama.indstate.edu/users/ice/tree/
 * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
 * tremulous DEFAULT SF-DEFAULT
 * tudu DEFAULT SF-DEFAULT
 * tumbler DEFAULT http://git.xfce.org/apps/tumbler/
 * TurboGears2 DEFAULT http://www.turbogears.org/2.1/downloads/current/
 * typespeed DEFAULT SF-DEFAULT
 * tzdata tzdata(.*?)\.tar\.gz ftp://elsie.nci.nih.gov/pub/
 * uClibc DEFAULT http://uclibc.org/downloads/
 * ucommon DEFAULT http://www.gnutelephony.org/dist/tarballs/
 * udis86 DEFAULT SF-DEFAULT
 * udev DEFAULT http://ftp.kernel.org/pub/linux/utils/kernel/hotplug/
 * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
 * ugene ugene-([.0-9]*?).tar.gz http://ugene.unipro.ru/download.html
 * uim DEFAULT GOOGLE-DEFAULT
 * ulogd DEFAULT http://ftp.netfilter.org/pub/ulogd/
 * un-core-fonts un-fonts-core-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * un-extra-fonts un-fonts-extra-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * uncrustify DEFAULT SF-DEFAULT
 * units DEFAULT GNU-DEFAULT
 * unrtf DEFAULT GNU-DEFAULT
 * unuran unuran-([0-9.]*).tar.gz http://statmath.wu.ac.at/src/
 * up-imapproxy up-imapproxy-(\d+\.\d+\.\d+).tar.gz http://www.imapproxy.org/downloads/
 * upstart DEFAULT http://upstart.at/download/*/
 * UpTools DEFAULT http://www.palermo.edu/ingenieria/uptools_ingles.html
 * 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://www.kernel.org/pub/linux/utils/usb/usbutils/
 * uucp DEFAULT GNU-DEFAULT
 * vala DEFAULT GNOME-DEFAULT
 * valknut DEFAULT SF-DEFAULT:wxdcgui
 * varconf DEFAULT SF-DEFAULT:worldforge
 * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
 * vdr-femon vdr-femon-(1\.6\.\S+?)\.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-streamdev DEFAULT http://projects.vdr-developer.org/projects/plg-streamdev/files
 * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/plg-sudoku/files
 * vdr-text2skin DEFAULT http://projects.vdr-developer.org/projects/plg-text2skin/files
 * vdr-ttxtsubs \bvdr-ttxtsubs-(0\.0\.\S+?)\.t http://projects.vdr-developer.org/projects/plg-ttxtsubs/files
 * vdr-wapd DEFAULT http://www.heiligenmann.de/vdr/download/
 * vdradmin-am DEFAULT http://andreas.vdr-developer.org/vdradmin-am/download.html
 * vdrsymbol-fonts DEFAULT:vdrsymbols-ttf http://andreas.vdr-developer.org/fonts/download.html
 * velocity ([0-9.]+)/ http://www.apache.org/dist/velocity/engine/
 * vidalia DEFAULT http://www.torproject.org/vidalia/index.html.en
 * viewnior DEFAULT http://xsisqox.github.com/Viewnior/download.html
 * vim DEFAULT http://ftp.vim.org/pub/vim/unix/
 * vim-latex vim-latex-(.*?).tar.gz SF-DEFAULT
 * virtaal DEFAULT:virtaal SF-DEFAULT:translate
 * vmpsd DEFAULT SF-DEFAULT:vmps
 * vlgothic-fonts DEFAULT:VLGothic http://sourceforge.jp/projects/vlgothic/releases/
 * vorbis-tools DEFAULT  http://downloads.xiph.org/releases/vorbis/
 * vsftpd DEFAULT ftp://vsftpd.beasts.org/users/cevans/
 * vttest DEFAULT ftp://invisible-island.net/vttest/
 * wdiff DEFAULT GNU-DEFAULT
 * wv ">([0-9]\.[0-9]\.[0-9])/</a> http://www.abisource.com/downloads/wv/
 * wvdial DEFAULT http://alumnit.ca/wiki/index.php?page=DownloadReleases
 * vym vym-([0-9.]*)-.*.src.rpm http://download.opensuse.org/repositories/home://insilmaril/openSUSE_Factory/src/
 * waf DEFAULT GOOGLE-DEFAULT
 * wannier90 DEFAULT http://quasiamore.mit.edu/wannier/code/
 * warzone2100 DEFAULT http://wz2100.net/download
 * 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
 * WindowMaker DEFAULT http://windowmaker.info/pub/source/release/
 * wine DEFAULT SF-DEFAULT
 * wireshark DEFAULT SF-DEFAULT
 * wol DEFAULT SF-DEFAULT:wake-on-lan
 * wordnet WordNet-([0-9.]*)\.[tz][ai][rp] http://wordnet.princeton.edu/wordnet/download/
 * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
 * wpa_supplicant wpa_supplicant-(0\.7\..*?)\.tar\.gz http://w1.fi/releases/
 * wp_tray ">([0-9.]+)</a> http://freshmeat.net/projects/wp_tray/
 * x3270 DEFAULT SF-DEFAULT
 * xalan-c Xalan-C\+\+.version.(.*?)< http://xml.apache.org/xalan-c/
 * xaos DEFAULT GNU-DEFAULT
 * xar DEFAULT GOOGLE-DEFAULT
 * xastir DEFAULT SF-DEFAULT
 * xautomation DEFAULT http://hoopajoo.net/projects/xautomation.html
 * xbacklight DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xbean ([0-9]\.[0-9.]+)/ http://repo2.maven.org/maven2/org/apache/xbean/xbean/
 * xboard DEFAULT GNU-DEFAULT
 * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
 * xchat Source: (.*?)</a> http://www.xchat.org/
 * xchm DEFAULT SF-DEFAULT
 * xcompmgr DEFAULT http://xorg.freedesktop.org/archive/individual/app/
 * xdelta xdelta(3\..*?)\.tar\.gz GOOGLE-DEFAULT
 * xdrawchem DEFAULT SF-DEFAULT
 * xdrfile DEFAULT ftp://ftp.gromacs.org/pub/contrib/
 * xerces-c DEFAULT http://www.apache.org/dist/xerces/c/*/sources/
 * xerces-j2 (?i)xerces-j-src[-.]([\d.]+)\.(?:t|zip) http://www.apache.org/dist/xerces/j/source/
 * 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/
 * xine-lib DEFAULT SF-DEFAULT:xine
 * xine-ui DEFAULT SF-DEFAULT:xine
 * xinetd DEFAULT http://www.xinetd.org/
 * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
 * xl2tpd DEFAULT ftp://ftp.xelerance.com/xl2tpd/
 * xlhtml DEFAULT SF-DEFAULT:chicago
 * xml-security-c xml-security-c-([0-9].*?).tar.gz http://santuario.apache.org/dist/c-library
 * xmlrpc DEFAULT http://www.apache.org/dist/ws/xmlrpc/sources/
 * xmlstarlet DEFAULT SF-DEFAULT:xmlstar
 * xmltoman DEFAULT SF-DEFAULT
 * xmms-modplug DEFAULT:modplugxmms SF-DEFAULT:modplug-xmms
 * xmobar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xnoise DEFAULT GOOGLE-DEFAULT
 * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
 * xorg-x11-drv-acecad xf86-input-acecad-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-aiptek xf86-input-aiptek-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-apm xf86-video-apm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ark xf86-video-ark-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ast xf86-video-ast-(.*?)\.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-chips xf86-video-chips-(.*?)\.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-elographics xf86-input-elographics-(.*?)\.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-fpit xf86-input-fpit-(.*?)\.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-hyperpen xf86-input-hyperpen-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i128 xf86-video-i128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i740 xf86-video-i740-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-intel xf86-video-intel-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ivtv DEFAULT:xf86-video-ivtv http://dl.ivtvdriver.org/xf86-video-ivtv/archive/*/
 * xorg-x11-drv-keyboard xf86-input-keyboard-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mach64 xf86-video-mach64-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mga xf86-video-mga-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mouse xf86-input-mouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mutouch xf86-input-mutouch-(.*?)\.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-nv xf86-video-nv-(.*?)\.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-penmount xf86-input-penmount-(.*?)\.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-radeonhd xf86-video-radeonhd-(.*?)\.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-s3 xf86-video-s3-(.*?)\.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-tseng xf86-video-tseng-(.*?)\.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-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/
 * xorriso DEFAULT GNU-DEFAULT
 * xpa xpa-(.*?).tar.gz http://hea-www.harvard.edu/saord/xpa/
 * xsane xsane-(.*?)\.tar\. ftp://ftp.sane-project.org/pub/sane/xsane/
 * xscreensaver DEFAULT http://www.jwz.org/xscreensaver/download.html
 * xterm DEFAULT ftp://invisible-island.net/xterm/
 * xz DEFAULT http://tukaani.org/xz/
 * x-tile x-tile-(.*?)\.tar\.gz http://www.giuspen.com/software/
 * yaboot DEFAULT http://yaboot.ozlabs.org/releases/
 * yaml-cpp DEFAULT GOOGLE-DEFAULT
 * yasm DEFAULT http://www.tortall.net/projects/yasm/releases/
 * yaz DEFAULT http://ftp.indexdata.dk/pub/yaz/
 * ykpers DEFAULT GOOGLE-DEFAULT:yubikey-personalization
 * youtube-dl /youtube-dl">([\d.]+)</a> http://rg3.github.com/youtube-dl/download.html
 * ytree DEFAULT http://www.han.de/~werner/ytree.html
 * z88dk DEFAULT SF-DEFAULT
 * zeroinstall-injector DEFAULT SF-DEFAULT:zero-install
 * zidrav DEFAULT:zidrav4unix SF-DEFAULT
 * zile DEFAULT GNU-DEFAULT
 * Zim zim-(.*?)\.tar\.gz http://zim-wiki.org/downloads/
 * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
 * znc DEFAULT SF-DEFAULT
 * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf


Package Owner Ignore List

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

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

Package Ignore List

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

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


Reason: it is released using daily snapshots:
* foomatic-db foomatic-db-(.*?[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
Impossible to track, they are formed by subpackages:
* xorg-x11-apps
* xorg-x11-font-utils
* xorg-x11-fonts
* xorg-x11-proto-devel
* xorg-x11-resutils
* xorg-x11-server-utils
* xorg-x11-utils
* xorg-x11-xkb-utils
Unplottable, fedora and upstream versions are incompatible.
* kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
Package maintainer( https://fedoraproject.org/wiki/User:Ausil ) does not want any notice:
* snort
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
* gnu-efi DEFAULT SF-DEFAULT
Remove shared-mime-info, I'm the upstream maintainer(Hadess)
* shared-mime-info DEFAULT http://people.freedesktop.org/~hadess/

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