From Fedora Project Wiki

(→‎A - G: Add ghc-edit-distance)
Line 684: Line 684:
  * ghc-dotgen HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-dotgen HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-edit-distance HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-failure HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-failure HACKAGE-DEFAULT HACKAGE-DEFAULT

Revision as of 00:49, 30 May 2012

Fedora Upstream Release Monitoring

General Information

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

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

Software

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

The Basics

How To Enable Version Checking for My Packages?

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

What Is The Format Of The List?

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

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

URL Aliases

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


How can I develop a regex?

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

Here is an example session for bugzilla:

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

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

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

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

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

Regex Aliases

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

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

Bugzilla bugs by upstream-release-monitoring

OPEN bugs

CLOSED bugs

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
* blktool http://sourceforge.net/projects/gkernel/files/
* Django https://www.djangoproject.com/
* spew http://spew.berlios.de/
* synfig http://www.synfig.org/
* synfigstudio http://www.synfig.org/
* heartbeat http://linux-ha.org/wiki/Downloads
* cluster-glue http://linux-ha.org/wiki/Downloads
* resource-agents http://linux-ha.org/wiki/Downloads
* corosync http://www.corosync.org
* pacemaker http://clusterlabs.org/
* privoxy http://sourceforge.net/projects/ijbswa/files/
* pulseaudio http://www.freedesktop.org/wiki/Software/PulseAudio
* transmission http://www.transmissionbt.com/
* superiotool http://www.coreboot.org/Superiotool

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
* imvirt http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
* jabberpy http://downloads.sf.net/sourceforge/%{name}/%{name}-%{version}-0.tar.gz
* perl-Config-IniFiles http://www.cpan.org/authors/id/S/SH/SHLOMIF/Config-IniFiles-%{version}.tar.gz
* perl-Crypt-GeneratePassword http://www.cpan.org/modules/by-module/Crypt/Crypt-GeneratePassword-%{version}.tar.gz
* perl-Filesys-Df http://www.cpan.org/modules/by-module/Filesys/Filesys-Df-%{version}.tar.gz
* perl-Frontier-RPC http://search.cpan.org/CPAN/authors/id/R/RT/RTFIREFLY/Frontier-RPC-%{version}.tar.gz
* python-debian http://ftp.debian.org/debian/pool/main/p/python-debian/python-debian_%{version}.tar.gz
* sugar-ruler http://wiki.sugarlabs.org/go/Activities/Ruler
* 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/
 * abi-compliance-checker DEFAULT http://ispras.linuxbase.org/index.php/ABI_compliance_checker_Downloads
 * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
 * ack DEFAULT CPAN-DEFAULT
 * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
 * acoustid-fingerprinter DEFAULT https://github.com/lalinsky/acoustid-fingerprinter/downloads
 * 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
 * adanaxisgpl DEFAULT http://www.mushware.com/files/
 * adns DEFAULT GNU-DEFAULT
 * aether aether-([0-9.]+)\.zip https://github.com/sonatype/sonatype-aether/downloads/
 * aircrack-ng DEFAULT http://download.aircrack-ng.org/
 * akonadi-googledata DEFAULT:akonadi-googledata GOOGLE-DEFAULT:libgcal
 * 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/*/
 * 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 antlrworks-([0-9.]+)-src\.zip 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
 * args4j args4j-site-([0-9.]*?)\" https://github.com/kohsuke/args4j/tags
 * aria2 DEFAULT SF-DEFAULT
 * asc DEFAULT SF-DEFAULT:asc-hq
 * 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
 * at DEFAULT DEBIAN-DEFAULT
 * atk DEFAULT GNOME-DEFAULT
 * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
 * atomix href=\"([0-9.]*?)\/\" http://ftp.gnome.org/pub/GNOME/sources/atomix/
 * ATpy DEFAULT https://github.com/atpy/atpy/downloads
 * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
 * aqute-bnd Bundle-Version\s*:\s*([0-9.]*) http://github.com/bndtools/bnd/blob/master/biz.aQute.bnd/bnd.bnd
 * aqute-bndlib Bundle-Version\s*:\s*([0-9.]*) http://github.com/bndtools/bnd/blob/master/biz.aQute.bndlib/bnd.bnd
 * audacious DEFAULT http://audacious-media-player.org/downloads
 * auto-nng auto-nng.v(.*?).tar.gz http://www.auto-nng.org/files/downloads/
 * autofs DEFAULT http://ftp.kernel.org/pub/linux/daemons/autofs/v5/
 * autogen DEFAULT GNU-DEFAULT
 * autoconf DEFAULT GNU-DEFAULT
 * autoconf-archive DEFAULT GNU-DEFAULT
 * automake DEFAULT GNU-DEFAULT
 * autossh autossh-(.+?)\.t.*z http://www.harding.motd.ca/autossh/
 * autokey DEFAULT GOOGLE-DEFAULT
 * avogadro DEFAULT SF-DEFAULT
 * avra DEFAULT SF-DEFAULT
 * awstats awstats-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=13764&package_id=11481
 * babel DEFAULT:Babel http://ftp.edgewall.com/pub/babel/
 * backintime backintime-([0-9.]+)_src.tar.gz http://backintime.le-web.org/download_page/
 * backport-util-concurrent backport-util-concurrent-(.*?)\.zip http://sourceforge.net/projects/backport-jsr166/files/backport-jsr166/
 * barcode DEFAULT GNU-DEFAULT
 * base64coder ([0-9]{4}-[0-9]{2}-[0-9]{2}) http://repo2.maven.org/maven2/biz/source_code/base64coder/
 * bash DEFAULT GNU-DEFAULT
 * batti DEFAULT http://code.google.com/p/batti-gtk/downloads/list
 * bc DEFAULT GNU-DEFAULT
 * bcrypt DEFAULT SF-DEFAULT
 * be DEFAULT http://download.bugseverywhere.org/releases/
 * bea-stax stax-src-([0-9.]*?)\.zip http://dist.codehaus.org/stax/distributions/
 * BEDTools DEFAULT GOOGLE-DEFAULT:bedtools
 * beep beep-([0-9\.]+).tar.gz http://www.johnath.com/beep/
 * beust-jcommander jcommander-([0-9.]*?)\" https://github.com/cbeust/jcommander/tags
 * bfast DEFAULT SF-DEFAULT
 * bibus DEFAULT SF-DEFAULT:bibus-biblio
 * 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/
 * bitmap DEFAULT:bitmap http://xorg.freedesktop.org/releases/individual/app/
 * 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
 * bltk DEFAULT http://www.lesswatts.org/patches/bltk/
 * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bodr DEFAULT SF-DEFAULT
 * boswars DEFAULT http://www.boswars.org/dist/releases/
 * botan DEFAULT:Botan http://botan.randombit.net/download.html
 * 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
 * bsd-games DEFAULT:bsd-games ftp://metalab.unc.edu/pub/Linux/games/
 * 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/
 * cab HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-dev HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabextract DEFAULT http://www.cabextract.org.uk/
 * cacti DEFAULT http://www.cacti.net/downloads/
 * cairo DEFAULT http://cairographics.org/releases/
 * calc DEFAULT GNU-DEFAULT
 * cardpeek DEFAULT GOOGLE-DEFAULT
 * caribou DEFAULT GNOME-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
 * cfitsio cfitsio([0-9.]*?).tar.gz http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/
 * 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
 * cherrytree DEFAULT http://www.giuspen.com/cherrytree/
 * childsplay DEFAULT SF-DEFAULT:schoolsplay
 * chmsee DEFAULT GOOGLE-DEFAULT
 * choqok DEFAULT SF-DEFAULT
 * chromaprint DEFAULT https://github.com/lalinsky/chromaprint/downloads
 * cifs-utils DEFAULT ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/
 * cjkuni-ukai-fonts DEFAULT:ttf-arphic-ukai DEBIAN-DEFAULT:ttf-arphic-ukai
 * cjkuni-uming-fonts DEFAULT:ttf-arphic-uming DEBIAN-DEFAULT:ttf-arphic-uming
 * ClanLib DEFAULT http://clanlib.org/download/releases-2.0/
 * claws-mail DEFAULT SF-DEFAULT:sylpheed-claws
 * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
 * clusterPy DEFAULT http://clusterpy.googlecode.com/files/
 * clutter DEFAULT GNOME-DEFAULT
 * clutter-gtk DEFAULT GNOME-DEFAULT
 * clutter-gst DEFAULT GNOME-DEFAULT
 * 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
 * cogl DEFAULT GNOME-DEFAULT
 * 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/
 * ConsoleKit DEFAULT http://www.freedesktop.org/software/ConsoleKit/dist/
 * converseen DEFAULT SF-DEFAULT
 * coreutils DEFAULT GNU-DEFAULT
 * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
 * couchdb-glib DEFAULT GNOME-DEFAULT
 * cowsay cowsay-(.*?).tar.gz http://www.nog.net/~tony/warez/cowsay.shtml
 * cpan-upload DEFAULT CPAN-DEFAULT
 * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
 * cpl DEFAULT ftp://ftp.eso.org/pub/cpl/
 * cpio DEFAULT GNU-DEFAULT
 * cpphs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cppi DEFAULT GNU-DEFAULT
 * cppcheck DEFAULT SF-DEFAULT
 * cproto DEFAULT ftp://invisible-island.net/cproto/
 * cptutils DEFAULT http://soliton.vm.bytemark.co.uk/pub/jjg/code/
 * cracklib DEFAULT SF-DEFAULT
 * crda DEFAULT http://wireless.kernel.org/download/crda/
 * CriticalMass DEFAULT SF-DEFAULT:criticalmass
 * 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/
 * curlpp DEFAULT GOOGLE-DEFAULT
 * cvs >(\d+(?:\.\d+)+)/< http://ftp.gnu.org/non-gnu/cvs/source/stable/
 * cvs2cl Revision:\s*([^\s$]+) http://www.red-bean.com/cvs2cl/cvs2cl.pl
 * cvsps DEFAULT http://www.cobite.com/cvsps/
 * cyphesis DEFAULT SF-DEFAULT:worldforge
 * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * darktable DEFAULT SF-DEFAULT
 * dash DEFAULT http://gondor.apana.org.au/~herbert/dash/files/
 * 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
 * dcraw DEFAULT http://www.cybercom.net/~dcoffin/dcraw/archive/
 * dd_rescue DEFAULT http://www.garloff.de/kurt/linux/ddrescue/
 * ddclient DEFAULT SF-DEFAULT
 * ddd DEFAULT GNU-DEFAULT
 * ddpt DEFAULT http://sg.danny.cz/sg/ddpt.html
 * ddrescue DEFAULT GNU-DEFAULT
 * 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
 * demorse DEFAULT http://5b4az.chronos.org.uk/pages/morse.html
 * dia DEFAULT GNOME-DEFAULT
 * dialog DEFAULT ftp://invisible-island.net/dialog/
 * diction DEFAULT GNU-DEFAULT
 * diffmark DEFAULT http://www.mangrove.cz/diffmark/
 * 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/
 * dkms DEFAULT http://linux.dell.com/dkms/
 * dmenu DEFAULT http://tools.suckless.org/dmenu/
 * dmidecode DEFAULT http://download.savannah.gnu.org/releases/dmidecode/
 * docky DEFAULT LP-DEFAULT
 * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
 * dopewars DEFAULT SF-DEFAULT
 * dos2unix DEFAULT http://waterlan.home.xs4all.nl/dos2unix.html
 * dosbox DEFAULT SF-DEFAULT
 * dosfstools DEFAULT http://www.daniel-baumann.ch/software/dosfstools/
 * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
 * dot2tex DEFAULT GOOGLE-DEFAULT
 * dreampie DEFAULT LP-DEFAULT
 * drobo-utils DEFAULT http://sourceforge.net/projects/drobo-utils/files/drobo-utils/r0_6_2/
 * drraw DEFAULT http://web.taranis.org/drraw/dist
 * drumstick DEFAULT SF-DEFAULT
 * drupal6 (?s)Recommended releases.*?>(6.[^<]*) http://drupal.org/project/drupal
 * drupal6-admin_menu (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/admin_menu
 * 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-diff (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/diff
 * drupal6-features (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/features
 * drupal6-feeds (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/feeds
 * drupal6-filefield (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/filefield
 * drupal6-login_destination (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/login_destination
 * drupal6-image (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/image
 * drupal6-mobile_tools (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/mobile_tools
 * drupal6-token (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/token
 * drupal6-video (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/video
 * drupal6-views (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/views
 * drupal6-yubikey (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/yubikey
 * drupal7 (?s)Recommended releases.*?>(7.[^<]*) http://drupal.org/project/drupal
 * drupal7-active_tags (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/active_tags
 * drupal7-advanced_help (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/advanced_help
 * drupal7-auto_nodetitle (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/auto_nodetitle
 * drupal7-backup_migrate (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/backup_migrate
 * drupal7-calendar (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/calendar
 * drupal7-cck (?s)Development releases.*?>7.x-([^<]*) http://drupal.org/project/cck
 * drupal7-chosen (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/chosen
 * drupal7-context (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/context
 * drupal7-date (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/date
 * drupal7-eva (?s)Other releases.*?>7.x-([^<]*) http://drupal.org/project/eva
 * drupal7-entity (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/entity
 * drupal7-features (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/features
 * drupal7-features_plumber (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/features_plumber
 * drupal7-feeds (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/feeds
 * drupal7-field_permissions (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/field_permissions
 * drupal7-fivestar (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/fivestar
 * drupal7-i18n (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/i18n
 * drupal7-job_scheduler (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/job_scheduler
 * drupal7-jquery_update (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/jquery_update
 * drupal7-locale_cookie (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/locale_cookie
 * drupal7-markdown (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/markdown
 * drupal7-mediawiki_api (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/mediawiki_api
 * drupal7-menu_token (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/menu_token
 * drupal7-migrate (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/migrate
 * drupal7-pathauto (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/pathauto
 * drupal7-rules (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/rules
 * drupal7-strongarm (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/strongarm
 * drupal7-token (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/token
 * drupal7-variable (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/variable
 * drupal7-views (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/views
 * drupal7-views_bulk_operations (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/views_bulk_operations
 * drupal7-votingapi (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/votingapi
 * drupal7-workbench (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/workbench
 * drupal7-workbench_moderation (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/workbench_moderation
 * 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
 * duplicity DEFAULT http://launchpad.net/duplicity/+download
 * duply DEFAULT SF-DEFAULT:ftplicity
 * dvb-apps DEFAULT:linuxtv-dvb-apps http://www.linuxtv.org/downloads/legacy/
 * dvd+rw-tools DEFAULT http://fy.chalmers.se/~appro/linux/DVD+RW/tools/
 * dvdauthor DEFAULT SF-DEFAULT
 * dwb DEFAULT https://bitbucket.org/portix/dwb/downloads
 * dwm DEFAULT http://dwm.suckless.org/
 * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html
 * 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/
 * eclipse-fedorapackager eclipse-fedorapackager-(\d.\d.\d).* https://fedorahosted.org/released/eclipse-fedorapackager/
 * ed DEFAULT GNU-DEFAULT
 * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
 * edac-utils DEFAULT SF-DEFAULT
 * 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
 * eot-utils >eot-utilities-(.*?)\.(?:tar) http://www.w3.org/Tools/eot-utils/
 * epdfview epdfview-([0-9\.]+)\.tar\.bz2 http://trac.emma-soft.com/epdfview/wiki/Download
 * epiphany-extensions DEFAULT GNOME-DEFAULT
 * 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/
 * espeak DEFAULT http://espeak.sourceforge.net/download.html
 * etckeeper DEFAULT DEBIAN-DEFAULT
 * ethtool DEFAULT http://ftp.kernel.org/pub/software/network/ethtool/
 * etoys DEFAULT http://download.sugarlabs.org/sources/sucrose/glucose/etoys/
 * ettercap DEFAULT SF-DEFAULT
 * evolution-couchdb DEFAULT GNOME-DEFAULT
 * 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/
 * fabric DEFAULT:Fabric PYPI-DEFAULT:Fabric
 * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
 * fatsort DEFAULT SF-DEFAULT
 * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
 * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
 * fedfs-utils fedfs-utils-([0-9.]*?).tar.gz http://oss.oracle.com/projects/fedfs-utils/files/
 * felix-utils (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/org.apache.felix.utils/
 * felix-bundlerepository org.apache.felix.bundlerepository-([0-9.]*).jar http://www.fightrice.com/mirrors/apache/felix/
 * 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/
 * findbugs findbugs-([0-9\.]*?)-source\.zip SF-DEFAULT
 * findutils DEFAULT GNU-DEFAULT
 * firebird Firebird-(.*?)-[0-9]\.tar\.bz2 SF-DEFAULT
 * firehol DEFAULT SF-DEFAULT
 * flac DEFAULT SF-DEFAULT
 * flex DEFAULT SF-DEFAULT
 * flexdock Flexdock\ (.*?)\ sources http://java.net/projects/flexdock/downloads
 * 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/
 * freeglut DEFAULT SF-DEFAULT
 * freeipmi DEFAULT GNU-DEFAULT
 * freenx-server DEFAULT http://download.berlios.de/freenx/
 * freemarker DEFAULT SF-DEFAULT
 * freeradius DEFAULT:freeradius-server ftp://ftp.freeradius.org/pub/freeradius/
 * freetype DEFAULT SF-DEFAULT
 * fritzing /download/([0-9].*?)/source-tarball/fritzing.*tar\.bz2 http://fritzing.org/download/
 * 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
 * fwsnort DEFAULT http://www.cipherdyne.org/fwsnort/download/
 * gabedit The current developement version of gabedit is ([\.0-9]{5,}) http://sites.google.com/site/allouchear/Home/gabedit/download
 * game-music-emu DEFAULT GOOGLE-DEFAULT
 * 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 SF-DEFAULT
 * gdbm DEFAULT GNU-DEFAULT
 * gdesklets DEFAULT http://www.gdesklets.de/
 * 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-aeson HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ansi-terminal HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attempt HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attoparsec HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-attoparsec-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base-unicode-symbols HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base16-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-base64-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-binary HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-binary-shared HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-builder-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-blaze-html HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bloomfilter 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-cabal-file-th HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cairo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-case-insensitive HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cautious-file HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cereal HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-citeproc-hs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cmdargs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-colour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ConfigFile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-csv HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cryptohash HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-default HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-data-reify HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dataenc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-digest HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dlist HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dotgen HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-edit-distance HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-failure HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-fast-logger 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-hakyll HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hamlet HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-happstack-server HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hashable HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hashed-storage HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hashtables HACKAGE-DEFAULT HACKAGE-DEFAULT;
 * ghc-haskeline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskell-src-exts HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hinotify HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hledger-lib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hslogger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-http-types HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-json HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-language-c HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-libmpd HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-lifted-base HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ltk HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MemoTrie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MissingH HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mmap HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MonadCatchIO-mtl HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MonadCatchIO-transformers HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-monad-control HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mtlparse HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mwc-random HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-neither HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-netlist 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-pcre-light HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-primitive HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-process-leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ranges HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regex-pcre HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regex-tdfa HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-regexpr HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-resourcet HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-safe HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-semigroups HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-sendfile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-SHA HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-shakespeare HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-simple-sendfile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-snap-core HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-split HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-strict HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tagged HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tagsoup HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-temporary HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-terminfo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-texmath HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-transformers-base HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-type-level HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-uniplate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-unix-compat HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-unordered-containers HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-utf8-string HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-vault HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-vector HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-vector-space HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-void HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-wai HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-wai-extra HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-warp HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11-xft HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xdg-basedir HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xml HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xmonad-contrib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xss-sanitize HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zip-archive HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-bindings HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-zlib-enum HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://downloads.ghostscript.com/public/
 * giflib DEFAULT SF-DEFAULT
 * gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
 * giggle 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-([0-9.]*)\.tar\.gz https://github.com/git-cola/git-cola/downloads
 * 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
 * gle \bgle-graphics-(.*?)f-src\.tar SF-DEFAULT:glx
 * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
 * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
 * gmp DEFAULT 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-sensors DEFAULT SF-DEFAULT
 * 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-shell-extensions DEFAULT GNOME-DEFAULT
 * 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
 * gnu-efi DEFAULT SF-DEFAULT
 * gnubik DEFAULT GNU-DEFAULT
 * gnucap DEFAULT GNU-DEFAULT
 * gnucash DEFAULT SF-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 http://gnuradio.org/redmine/projects/gnuradio/files/
 * 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
 * gourmet DEFAULT SF-DEFAULT:grecipe-manager
 * gparted DEFAULT SF-DEFAULT
 * gpaste gpaste-([0-9.]*?).tar.xz https://github.com/Keruspe/GPaste/downloads
 * gperf DEFAULT GNU-DEFAULT
 * gperftools DEFAULT GOOGLE-DEFAULT
 * 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
 * GraphicsMagick DEFAULT SF-DEFAULT:graphicsmagick
 * graphviz stable/SOURCES/graphviz-([0-9.]*?)\.tar http://www.graphviz.org/Download_source.php
 * grep DEFAULT GNU-DEFAULT
 * grib_api DEFAULT http://www.ecmwf.int/products/data/software/download/grib_api.html
 * groff DEFAULT GNU-DEFAULT
 * gromacs DEFAULT ftp://ftp.gromacs.org/pub/gromacs/
 * groonga DEFAULT http://packages.groonga.org/source/groonga/
 * groovy groovy-src-([0-9].[0-9].[0-9]).zip http://groovy.codehaus.org/Download
 * grub2 DEFAULT:grub GNU-DEFAULT:grub
 * grub2 DEFAULT:grub http://alpha.gnu.org/gnu/grub/
 * gscan2pdf DEFAULT SF-DEFAULT
 * gssdp DEFAULT GNOME-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
 * gtk-unico-engine DEFAULT:unico https://launchpad.net/unico
 * gtk2hs-buildtools HACKAGE-DEFAULT HACKAGE-DEFAULT
 * 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/
 * gupnp DEFAULT GNOME-DEFAULT
 * gupnp-av DEFAULT GNOME-DEFAULT
 * gupnp-dlna DEFAULT GNOME-DEFAULT
 * gupnp-tools DEFAULT GNOME-DEFAULT
 * gupnp-ui DEFAULT GNOME-DEFAULT
 * gupnp-vala DEFAULT GNOME-DEFAULT
 * 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/
 * haskell-platform DEFAULT http://hackage.haskell.org/platform/linux.html
 * hdparm DEFAULT SF-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hedgewars DEFAULT http://download.gna.org/hedgewars/
 * help2man DEFAULT GNU-DEFAULT
 * hercules DEFAULT http://www.hercules-390.org/
 * hercstudio herculesstudio-(.*?)-src\.tar\.gz http://www.jacobdekel.com/hercstudio/
 * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
 * highlighting-kate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * horde DEFAULT ftp://ftp.horde.org/pub/horde/
 * hostapd DEFAULT http://w1.fi/releases/
 * hping3 DEFAULT http://www.hping.org/download.php
 * hplip DEFAULT SF-DEFAULT
 * hscolour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * 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
 * humanity-icon-theme DEFAULT:humanity https://launchpad.net/humanity
 * hunspell DEFAULT SF-DEFAULT
 * ibus-handwrite DEFAULT GOOGLE-DEFAULT
 * ibus-hangul DEFAULT:ibus-hangul GOOGLE-DEFAULT:ibus
 * ibus-m17n DEFAULT:ibus-m17n GOOGLE-DEFAULT:ibus
 * ibus-pinyin DEFAULT:ibus-pinyin GOOGLE-DEFAULT:ibus
 * ibus-unikey DEFAULT GOOGLE-DEFAULT
 * ibus-xkbc DEFAULT https://github.com/sun-im/ibus-xkbc/downloads
 * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
 * 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 http://indent.isidore-it.eu/beautify.html
 * inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/
 * innotop DEFAULT GOOGLE-DEFAULT
 * intltool DEFAULT LP-DEFAULT
 * iperf DEFAULT SF-DEFAULT
 * ipmitool DEFAULT SF-DEFAULT
 * ipmiutil DEFAULT SF-DEFAULT
 * iproute DEFAULT:iproute2  http://kernel.org/pub/linux/utils/networking/iproute2/
 * ipset DEFAULT http://ftp.netfilter.org/pub/ipset/
 * 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
 * irssi irssi-([0-9.]+).tar.gz http://irssi.org/download
 * isic DEFAULT SF-DEFAULT
 * iso-codes DEFAULT http://pkg-isocodes.alioth.debian.org/downloads/
 * isync DEFAULT SF-DEFAULT
 * iw DEFAULT http://wireless.kernel.org/download/iw/
 * jasper DEFAULT http://www.ece.uvic.ca/~frodo/jasper/
 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
 * java-gnome DEFAULT GNOME-DEFAULT
 * java-service-wrapper yaja-wrapper-(.*?)-dist https://bitbucket.org/ivertex/yaja-wrapper/downloads
 * 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/
 * jgoodies-common jgoodies-common-[0-9_]*.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-forms jgoodies-forms-[0-9_]*.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-looks jgoodies-looks-[0-9_]*.zip http://www.jgoodies.com/downloads/libraries/
 * jgraphx jgraphx-(.*?).zip http://downloads.jgraph.com/downloads/jgraphx/archive/
 * jhdf5 DEFAULT http://www.hdfgroup.org/ftp/HDF5/hdf-java/src/
 * jibx jibx-([0-9].[0-9].[0-9]) http://sourceforge.net/projects/jibx/files/jibx/
 * jing-trang DEFAULT:jing GOOGLE-DEFAULT
 * jlatexmath jlatexmath-src-all-(.*).zip http://forge.scilab.org/index.php/p/jlatexmath/downloads/
 * jline DEFAULT SF-DEFAULT
 * jmol jmol-(.*?)-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
 * jython jython(?:_installer)-([0-9.]+)\.jar SF-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://ftp.altlinux.org/pub/people/legion/kbd/
 * kbibtex DEFAULT http://download.gna.org/kbibtex/*/
 * kchmviewer DEFAULT SF-DEFAULT
 * kcm-gtk DEFAULT LP-DEFAULT
 * kdbg DEFAULT SF-DEFAULT
 * kde-partitionmanager DEFAULT:partitionmanager SF-DEFAULT:partitionman
 * kdesvn DEFAULT http://kdesvn.alwins-world.de/downloads/
 * kdevelop \s(\d+\.[\d.]+\d+) ftp://ftp.kde.org/pub/kde/stable/kdevelop/
 * kdiff3 DEFAULT SF-DEFAULT
 * keepalived DEFAULT http://www.keepalived.org/software/
 * keybinder keybinder-([0-9].[0-9].[0-9]).tar.gz  http://kaizer.se/publicfiles/keybinder/
 * keychain DEFAULT http://www.funtoo.org/en/security/keychain/intro/
 * kid3 DEFAULT SF-DEFAULT
 * kile Latest available stable version for KDE4: <a href="download.php">(.*?)</a>\. http://kile.sourceforge.net/
 * kmetronome DEFAULT SF-DEFAULT
 * kmid2 DEFAULT:kmid SF-DEFAULT
 * kmod DEFAULT http://packages.profusion.mobi/kmod/
 * komparator DEFAULT SF-DEFAULT
 * koules koules(.*?)-src.tar.gz http://www.ucw.cz/~hubicka/koules/English/distribution.html
 * krename the last stable release is: <.*?> (.*?) </a> http://www.krename.net/
 * 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
 * lbrickbuster2 DEFAULT:lbreakout2 http://sourceforge.net/api/file/index/project-name/lgames/mtime/desc/limit/50/rss
 * lbzip2 DEFAULT https://github.com/kjn/lbzip2/downloads
 * lcdf-typetools DEFAULT http://www.lcdf.org/type/
 * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
 * leafpad DEFAULT http://savannah.nongnu.org/download/leafpad/
 * ledger ledger-([0-9.]+)\.tar\.gz https://github.com/jwiegley/ledger/downloads
 * leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
 * leksah-server HACKAGE-DEFAULT HACKAGE-DEFAULT
 * less DEFAULT http://www.greenwoodsoftware.com/less/download.html
 * lftp DEFAULT http://ftp.yars.free.net/pub/source/lftp/
 * libaio DEFAULT http://www.kernel.org/pub/linux/libs/aio/
 * libass DEFAULT GOOGLE-DEFAULT
 * libavc1394 DEFAULT SF-DEFAULT
 * libbluray DEFAULT http://www.videolan.org/developers/libbluray.html
 * libbs2b DEFAULT SF-DEFAULT:bs2b
 * libbsd DEFAULT http://libbsd.freedesktop.org/releases/
 * libburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libcap DEFAULT http://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/
 * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
 * libcddb DEFAULT SF-DEFAULT
 * libcdio DEFAULT GNU-DEFAULT
 * libcgroup DEFAULT SF-DEFAULT:libcg
 * libchamplain DEFAULT GNOME-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
 * libetpan DEFAULT SF-DEFAULT
 * libextractor DEFAULT GNU-DEFAULT
 * libfap DEFAULT http://pakettiradio.net/downloads/libfap/
 * 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/
 * libgcal DEFAULT:libgcal GOOGLE-DEFAULT:libgcal
 * libgcroots DEFAULT GOOGLE-DEFAULT:sigscheme
 * libgcrypt DEFAULT ftp://ftp.gnupg.org/gcrypt/libgcrypt/
 * libgdl DEFAULT:gdl GNOME-DEFAULT:gdl
 * libgee DEFAULT GNOME-DEFAULT
 * libgexiv2 DEFAULT http://redmine.yorba.org/projects/gexiv2/wiki 
 * libgxps DEFAULT GNOME-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/
 * libisoburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libisofs DEFAULT http://libburnia-project.org/wiki/Releases
 * 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
 * libmng DEFAULT SF-DEFAULT
 * libmnl DEFAULT http://ftp.netfilter.org/pub/libmnl/
 * 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
 * libmx DEFAULT http://source.clutter-project.org/sources/mx/*/
 * 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/
 * libnfc DEFAULT GOOGLE-DEFAULT
 * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
 * libnl3 DEFAULT:libnl 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
 * 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/
 * libsocialweb DEFAULT GNOME-DEFAULT
 * libssh DEFAULT https://red.libssh.org/projects/libssh/files
 * 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
 * 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/
 * libwbxml DEFAULT SF-DEFAULT
 * 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/
 * libyaml DEFAULT:yaml http://pyyaml.org/download/libyaml/
 * 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
 * links DEFAULT http://links.twibright.com/download/
 * linpsk DEFAULT SF-DEFAULT
 * linux-libertine-fonts LinLibertineSRC-(.*?).tgz SF-DEFAULT:linuxlibertine
 * lis DEFAULT http://www.ssisc.org/lis/index.en.html
 * lm_sensors DEFAULT http://dl.lm-sensors.org/lm-sensors/releases/
 * log4j (1.[0-9.]+)/ http://www.apache.org/dist/logging/log4j
 * loggerhead DEFAULT LP-DEFAULT:loggerhead
 * 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/
 * lsscsi DEFAULT http://sg.danny.cz/scsi/lsscsi.html
 * lua-alt-getopt DEFAULT SF-DEFAULT
 * lua-filesystem DEFAULT:luafilesystem http://luarocks.org/repositories/rocks/
 * lua-lpeg DEFAULT:lpeg http://www.inf.puc-rio.br/~roberto/lpeg/
 * lua-moonscript DEFAULT http://moonscript.org/
 * 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/
 * lziprecover 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
 * MagicPoint DEFAULT:magicpoint ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/
 * mailman DEFAULT GNU-DEFAULT
 * mailx DEFAULT SF-DEFAULT:heirloom
 * make DEFAULT GNU-DEFAULT
 * man DEFAULT http://primates.ximian.com/~flucifredi/man/
 * manaworld DEFAULT:tmw SF-DEFAULT:themanaworld
 * manchu-fonts DEFAULT:Manchu_Font_2005 SF-DEFAULT:manchufont
 * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
 * man-pages DEFAULT http://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-archiver (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-archiver/
 * maven-assembly-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/
 * 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-eclipse-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-eclipse-plugin/
 * 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-jar-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-jar-plugin/
 * maven-jxr (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/jxr/jxr/
 * maven-pmd-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/
 * maven-plugin-bundle (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/maven-bundle-plugin/
 * maven-reporting-exec (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-exec/
 * maven-scm (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/scm/maven-scm/
 * 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/
 * maven-war-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/
 * maven-wagon (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/wagon/wagon/
 * 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/
 * media-player-info DEFAULT http://www.freedesktop.org/software/media-player-info/
 * methane DEFAULT SF-DEFAULT
 * mdk DIR-LISTING-DEFAULT GNU-DEFAULT
 * memcached DEFAULT GOOGLE-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/
 * mhddfs DEFAULT http://mhddfs.uvw.ru/downloads/
 * 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/
 * mldonkey DEFAULT SF-DEFAULT
 * 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
 * monochrome-icon-theme ubuntu-mono_(.*?)\.tar\.gz https://launchpad.net/ubuntu/+archive/primary/+files/
 * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
 * most DEFAULT ftp://space.mit.edu/pub/davis/most/*/
 * mozc DEFAULT GOOGLE-DEFAULT
 * mozilla-adblockplus DEFAULT:adblockplus http://hg.adblockplus.org/downloads/raw-file/tip/
 * mozilla-noscript v (\d+\.\d+\.\d+\.\d+) http://noscript.net/changelog
 * mpfr DEFAULT GNU-DEFAULT
 * mpi4py DEFAULT GOOGLE-DEFAULT
 * mpir DEFAULT http://www.mpir.org/
 * mrbs DEFAULT SF-DEFAULT
 * 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
 * nas DEFAULT SF-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/
 * net-snmp /files/net-snmp/([\d.]+)/ http://net-snmp.sourceforge.net/download.html
 * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
 * netbeans \bnetbeans-([^-]+)-.*-src\b http://download.netbeans.org/netbeans/*/final/zip/
 * netmask DEFAULT DEBIAN-DEFAULT
 * netmonitor DEFAULT SF-DEFAULT
 * netpbm DEFAULT SF-DEFAULT
 * netpipe DEFAULT http://www.scl.ameslab.gov/netpipe/
 * netsniff-ng DEFAULT http://netsniff-ng.org/
 * newlisp DEFAULT http://www.newlisp.org/downloads/
 * newsbeuter DEFAULT http://newsbeuter.org/download.html
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nfs-utils DEFAULT SF-DEFAULT:nfs
 * 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
 * njam DEFAULT SF-DEFAULT
 * 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/
 * nspluginwrapper DEFAULT http://nspluginwrapper.org/download/
 * ntfs-3g >ntfs-3g_ntfsprogs-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
 * ntfsprogs DEFAULT SF-DEFAULT:linux-ntfs
 * 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-audio DEFAULT:audio SF-DEFAULT:octave
 * octave-control control-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-gsl gsl-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-image image-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-miscellaneous miscellaneous-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-octcdf octcdf-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-optim optim-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-quaternion DEFAULT:quaternion SF-DEFAULT:octave
 * octave-signal signal-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-specfun specfun-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-struct struct-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-symbolic DEFAULT:symbolic SF-DEFAULT:octave
 * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
 * OmegaT OmegaT_.\..\..\_.. http://sourceforge.net/projects/omegat/files/ 
 * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
 * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
 * opencc DEFAULT GOOGLE-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
 * openlierox OpenLieroX_(.*?).src.tar.bz2 SF-DEFAULT
 * openmpi DEFAULT http://www.open-mpi.org/software/ompi/v1.5/
 * openmsx DEFAULT SF-DEFAULT
 * 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
 * openvswitch DEFAULT http://openvswitch.org/releases/
 * 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
 * paco DEFAULT SF-DEFAULT
 * pal DEFAULT SF-DEFAULT:palcal
 * pam DEFAULT http://www.linux-pam.org/library/
 * pam_mount DEFAULT SF-DEFAULT:pam-mount
 * pandoc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * paps DEFAULT SF-DEFAULT
 * parcellite DEFAULT SF-DEFAULT
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * patchutils DEFAULT http://cyberelk.net/tim/data/patchutils/stable/
 * pastebinit 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/
 * pcmanx-gtk2 DEFAULT GOOGLE-DEFAULT
 * pcmciautils DEFAULT http://www.kernel.org/pub/linux/utils/kernel/pcmcia/
 * pcre DEFAULT ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
 * pcsc-perl DEFAULT http://ludovic.rousseau.free.fr/softwares/pcsc-perl/
 * 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-accessors DEFAULT:accessors CPAN-DEFAULT
 * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
 * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-Annotate DEFAULT:Algorithm-Annotate CPAN-DEFAULT
 * perl-Algorithm-CheckDigits DEFAULT:Algorithm-CheckDigits CPAN-DEFAULT
 * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
 * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-Permute DEFAULT:Algorithm-Permute CPAN-DEFAULT
 * perl-Alien-SDL DEFAULT:Alien-SDL CPAN-DEFAULT
 * perl-Any-Moose DEFAULT:Any-Moose CPAN-DEFAULT
 * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
 * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
 * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
 * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisect CPAN-DEFAULT
 * perl-Archive-RPM DEFAULT:Archive-RPM CPAN-DEFAULT
 * perl-Archive-Tar DEFAULT:Archive-Tar CPAN-DEFAULT
 * perl-Archive-Zip DEFAULT:Archive-Zip CPAN-DEFAULT
 * perl-Array-Diff DEFAULT:Array-Diff CPAN-DEFAULT
 * perl-Array-RefElem DEFAULT:Array-RefElem CPAN-DEFAULT
 * perl-AuthCAS DEFAULT:AuthCAS CPAN-DEFAULT
 * perl-Authen-Captcha DEFAULT:Authen-Captcha CPAN-DEFAULT
 * perl-Authen-OATH DEFAULT:Authen-OATH CPAN-DEFAULT
 * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
 * perl-B-Hooks-OP-Check-StashChange DEFAULT:B-Hooks-OP-Check-StashChange CPAN-DEFAULT
 * perl-B-Hooks-OP-PPAddr DEFAULT:B-Hooks-OP-PPAddr CPAN-DEFAULT
 * perl-B-Keywords DEFAULT:B-Keywords CPAN-DEFAULT
 * perl-Best DEFAULT:Best 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-Bio-SamTools DEFAULT:Bio-SamTools CPAN-DEFAULT
 * perl-Bisect-Perl-UsingGit DEFAULT:Bisect-Perl-UsingGit CPAN-DEFAULT
 * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
 * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
 * perl-Business-CreditCard DEFAULT:Business-CreditCard CPAN-DEFAULT
 * perl-Business-ISBN DEFAULT:Business-ISBN CPAN-DEFAULT
 * perl-Business-ISBN-Data DEFAULT:Business-ISBN-Data CPAN-DEFAULT
 * perl-Capture-Tiny DEFAULT:Capture-Tiny CPAN-DEFAULT
 * perl-Carp DEFAULT:Carp CPAN-DEFAULT
 * perl-Carp-Clan DEFAULT:Carp-Clan CPAN-DEFAULT
 * perl-Chatbot-Eliza DEFAULT:Chatbot-Eliza CPAN-DEFAULT
 * perl-ClASS DEFAULT:CLASS CPAN-DEFAULT
 * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
 * perl-Class-Can DEFAULT:Class-Can CPAN-DEFAULT
 * perl-Class-Data-Accessor DEFAULT:Class-Data-Accessor CPAN-DEFAULT
 * perl-Class-Exporter DEFAULT:Class-Exporter CPAN-DEFAULT
 * perl-Class-Factory DEFAULT:Class-Factory CPAN-DEFAULT
 * perl-Class-Field DEFAULT:Class-Field CPAN-DEFAULT
 * perl-Class-Inner DEFAULT:Class-Inner CPAN-DEFAULT
 * perl-Class-ISA DEFAULT:Class-ISA CPAN-DEFAULT
 * perl-Class-Iterator DEFAULT:Class-Iterator CPAN-DEFAULT
 * perl-Class-MethodMaker DEFAULT:Class-MethodMaker CPAN-DEFAULT
 * perl-Class-Prototyped DEFAULT:Class-Prototyped CPAN-DEFAULT
 * perl-Class-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-Classic-Perl DEFAULT:Classic-Perl CPAN-DEFAULT
 * perl-Check-ISA DEFAULT:Check-ISA CPAN-DEFAULT
 * perl-Compress-Bzip2 DEFAULT:Compress-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Bzip2 DEFAULT:Compress-Raw-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Zlib DEFAULT:Compress-Raw-Zlib CPAN-DEFAULT
 * perl-Config-Any DEFAULT:Config-Any CPAN-DEFAULT
 * perl-Config-General DEFAULT:Config-General CPAN-DEFAULT
 * perl-Config-Properties DEFAULT:Config-Properties CPAN-DEFAULT
 * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
 * perl-Config-Simple DEFAULT:Config-Simple CPAN-DEFAULT
 * perl-constant-defer DEFAULT:constant-defer CPAN-DEFAULT
 * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
 * perl-Coro DEFAULT:Coro CPAN-DEFAULT
 * perl-Convert-NLS_DATE_FORMAT DEFAULT:Convert-NLS_DATE_FORMAT CPAN-DEFAULT
 * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
 * perl-CPAN-Inject DEFAULT:CPAN-Inject CPAN-DEFAULT
 * perl-CPAN-Mini DEFAULT:CPAN-Mini CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-Changes DEFAULT:CPANPLUS-Shell-Default-Plugins-Changes CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-Diff DEFAULT:CPANPLUS-Shell-Default-Plugins-Diff CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-RT DEFAULT:CPANPLUS-Shell-Default-Plugins-RT CPAN-DEFAULT
 * perl-criticism DEFAULT:criticism CPAN-DEFAULT
 * perl-Catalyst-Engine-PSGI DEFAULT:Catalyst-Engine-PSGI CPAN-DEFAULT
 * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber 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-CSS-Squish DEFAULT:CSS-Squish CPAN-DEFAULT
 * perl-Dancer DEFAULT:Dancer CPAN-DEFAULT
 * perl-Danga-Socket DEFAULT:Danga-Socket CPAN-DEFAULT
 * perl-Data-Dumper DEFAULT:Data-Dumper CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Hierarchy DEFAULT:Data-Hierarchy CPAN-DEFAULT
 * perl-Data-ICal DEFAULT:Data-ICal CPAN-DEFAULT
 * perl-Data-OptList DEFAULT:Data-OptList CPAN-DEFAULT
 * perl-Data-Report DEFAULT:Data-Report CPAN-DEFAULT
 * perl-Data-Section DEFAULT:Data-Section CPAN-DEFAULT
 * perl-Data-TreeDumper DEFAULT:Data-TreeDumper CPAN-DEFAULT
 * perl-Data-TreeDumper-Renderer-GTK DEFAULT:Data-TreeDumper-Renderer-GTK CPAN-DEFAULT
 * perl-Data-Types DEFAULT:Data-Types CPAN-DEFAULT
 * perl-Date-Calc DEFAULT:Date-Calc CPAN-DEFAULT
 * perl-Date-ICal DEFAULT:Date-ICal CPAN-DEFAULT
 * perl-Date-Leapyear DEFAULT:Date-Leapyear CPAN-DEFAULT
 * perl-Date-Manip DEFAULT:Date-Manip CPAN-DEFAULT
 * perl-Date-Pcalc DEFAULT:Date-Pcalc CPAN-DEFAULT
 * perl-DateTimeX-Easy DEFAULT:DateTimeX-Easy CPAN-DEFAULT
 * perl-DateTime-Format-DateManip DEFAULT:DateTime-Format-DateManip CPAN-DEFAULT
 * perl-DateTime-Format-DateParse DEFAULT:DateTime-Format-DateParse CPAN-DEFAULT
 * perl-DateTime-Format-DB2 DEFAULT:DateTime-Format-DB2 CPAN-DEFAULT
 * perl-DateTime-Format-DBI DEFAULT:DateTime-Format-DBI CPAN-DEFAULT
 * perl-DateTime-Format-Excel DEFAULT:DateTime-Format-Excel CPAN-DEFAULT
 * perl-DateTime-Format-Flexible DEFAULT:DateTime-Format-Flexible CPAN-DEFAULT
 * perl-DateTime-Format-ISO8601 DEFAULT:DateTime-Format-ISO8601 CPAN-DEFAULT
 * perl-DateTime-Format-Oracle DEFAULT:DateTime-Format-Oracle CPAN-DEFAULT
 * perl-DateTime-TimeZone DEFAULT:DateTime-TimeZone CPAN-DEFAULT
 * perl-DateTime-Precise DEFAULT:DateTime-Precise CPAN-DEFAULT
 * perl-DBD-AnyData DEFAULT:DBD-AnyData CPAN-DEFAULT
 * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
 * perl-DBD-Mock DEFAULT:DBD-Mock CPAN-DEFAULT
 * perl-DBD-Multi DEFAULT:DBD-Multi CPAN-DEFAULT
 * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
 * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
 * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
 * perl-DBI DEFAULT:DBI CPAN-DEFAULT
 * perl-DBI-Dumper DEFAULT:DBI-Dumper CPAN-DEFAULT
 * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
 * perl-DBIx-POS DEFAULT:DBIx-POS CPAN-DEFAULT
 * perl-DBM-Deep DEFAULT:DBM-Deep CPAN-DEFAULT
 * perl-Debug-Client DEFAULT:Debug-Client CPAN-DEFAULT
 * perl-Declare-Constraints-Simple DEFAULT:Declare-Constraints-Simple CPAN-DEFAULT
 * perl-Devel-Autoflush DEFAULT:Devel-Autoflush CPAN-DEFAULT
 * perl-Devel-Dumpvar DEFAULT:Devel-Dumpvar CPAN-DEFAULT
 * perl-Devel-CallChecker DEFAULT:Devel-CallChecker CPAN-DEFAULT
 * perl-Devel-CallParser DEFAULT:Devel-CallParser CPAN-DEFAULT
 * perl-Devel-CheckOS DEFAULT:Devel-CheckOS CPAN-DEFAULT
 * perl-Devel-Comments DEFAULT:Devel-Comments CPAN-DEFAULT
 * perl-Devel-GlobalDestruction DEFAULT:Devel-GlobalDestruction CPAN-DEFAULT
 * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
 * perl-Devel-Size DEFAULT:Devel-Size 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-SHA DEFAULT:Digest-SHA CPAN-DEFAULT
 * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
 * perl-Directory-Scratch-Structured DEFAULT:Directory-Scratch-Structured CPAN-DEFAULT
 * perl-DynaLoader-Functions DEFAULT:DynaLoader-Functions CPAN-DEFAULT
 * perl-Encode-JP-Mobile DEFAULT:Encode-JP-Mobile CPAN-DEFAULT
 * perl-Encode-Locale DEFAULT:Encode-Locale CPAN-DEFAULT
 * perl-Eval-Context DEFAULT:Eval-Context CPAN-DEFAULT
 * perl-ExtUtils-InferConfig DEFAULT:ExtUtils-InferConfig CPAN-DEFAULT
 * perl-ExtUtils-InstallPAR DEFAULT:ExtUtils-InstallPAR CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker DEFAULT:ExtUtils-MakeMaker CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage CPAN-DEFAULT
 * perl-ExtUtils-Manifest DEFAULT:ExtUtils-Manifest CPAN-DEFAULT
 * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
 * perl-Fedora-Rebuild Fedora-Rebuild-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/Fedora-Rebuild/
 * perl-Feed-Find DEFAULT:Feed-Find CPAN-DEFAULT
 * perl-FCGI DEFAULT:FCGI CPAN-DEFAULT
 * perl-File-BaseDir DEFAULT:File-BaseDir CPAN-DEFAULT
 * perl-File-chdir DEFAULT:File-chdir CPAN-DEFAULT
 * perl-File-ChangeNotify DEFAULT:File-ChangeNotify CPAN-DEFAULT
 * perl-File-DesktopEntry DEFAULT:File-DesktopEntry CPAN-DEFAULT
 * perl-File-ExtAttr DEFAULT:File-ExtAttr CPAN-DEFAULT
 * perl-File-Find-Iterator DEFAULT:File-Find-Iterator CPAN-DEFAULT
 * perl-File-Find-Rule DEFAULT:File-Find-Rule CPAN-DEFAULT
 * perl-File-Find-Rule-VCS DEFAULT:File-Find-Rule-VCS CPAN-DEFAULT
 * perl-File-HomeDir DEFAULT:File-HomeDir CPAN-DEFAULT
 * perl-File-Listing DEFAULT:File-Listing CPAN-DEFAULT
 * perl-File-MimeInfo DEFAULT:File-MimeInfo CPAN-DEFAULT
 * perl-File-MMagic DEFAULT:File-MMagic CPAN-DEFAULT
 * perl-File-Next DEFAULT:File-Next CPAN-DEFAULT
 * perl-File-NFSLock DEFAULT:File-NFSLock CPAN-DEFAULT
 * perl-File-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-Filesys-Notify-Simple DEFAULT:Filesys-Notify-Simple CPAN-DEFAULT
 * perl-Flickr-API DEFAULT:Flickr-API CPAN-DEFAULT
 * perl-Flickr-Upload DEFAULT:Flickr-Upload CPAN-DEFAULT
 * perl-Filter DEFAULT:Filter CPAN-DEFAULT
 * perl-Font-TTF DEFAULT:Font-TTF CPAN-DEFAULT
 * perl-Font-TTFMetrics DEFAULT:Font-TTFMetrics CPAN-DEFAULT
 * perl-Format-Human-Bytes DEFAULT:Format-Human-Bytes CPAN-DEFAULT
 * perl-FreezeThaw DEFAULT:FreezeThaw CPAN-DEFAULT
 * perl-Frontier-RPC DEFAULT:Frontier-RPC CPAN-DEFAULT
 * perl-GD-Barcode DEFAULT:GD-Barcode CPAN-DEFAULT
 * perl-Gearman DEFAULT:Gearman CPAN-DEFAULT
 * perl-Gearman-Client-Async DEFAULT:Gearman-Client-Async CPAN-DEFAULT
 * perl-Gearman-Server DEFAULT:Gearman-Server CPAN-DEFAULT
 * perl-Gnome2 DEFAULT:Gnome2 CPAN-DEFAULT
 * perl-Gnome2-Canvas DEFAULT:Gnome2-Canvas CPAN-DEFAULT
 * perl-Gnome2-GConf DEFAULT:Gnome2-GConf CPAN-DEFAULT
 * perl-Gnome2-Print DEFAULT:Gnome2-Print CPAN-DEFAULT
 * perl-Gnome2-VFS DEFAULT:Gnome2-VFS CPAN-DEFAULT
 * perl-GStreamer DEFAULT:GStreamer CPAN-DEFAULT
 * perl-Glib-Object-Introspection DEFAULT:Glib-Object-Introspection CPAN-DEFAULT
 * perl-Gtk3 DEFAULT:Gtk3 CPAN-DEFAULT
 * perl-Gtk2 DEFAULT:Gtk2 CPAN-DEFAULT
 * perl-Gtk2-Ex-CalendarButton DEFAULT:Gtk2-Ex-CalendarButton CPAN-DEFAULT
 * perl-Gtk2-Ex-Carp DEFAULT:Gtk2-Ex-Carp CPAN-DEFAULT
 * perl-Gtk2-Ex-Dialogs DEFAULT:Gtk2-Ex-Dialogs CPAN-DEFAULT
 * perl-Gtk2-Ex-Simple-List DEFAULT:Gtk2-Ex-Simple-List CPAN-DEFAULT
 * perl-Gtk2-Ex-Utils DEFAULT:Gtk2-Ex-Utils CPAN-DEFAULT
 * perl-Gtk2-GladeXML DEFAULT:Gtk2-GladeXML CPAN-DEFAULT
 * perl-Gtk2-Notify DEFAULT:Gtk2-Notify CPAN-DEFAULT
 * perl-Gtk2-Sexy DEFAULT:Gtk2-Sexy CPAN-DEFAULT
 * perl-Gtk2-Spell DEFAULT:Gtk2-Spell CPAN-DEFAULT
 * perl-Gtk2-TrayIcon DEFAULT:Gtk2-TrayIcon CPAN-DEFAULT
 * perl-Ham-Reference-QRZ DEFAULT:Ham-Reference-QRZ CPAN-DEFAULT
 * perl-Hash-Case DEFAULT:Hash-Case CPAN-DEFAULT
 * perl-Hash-MultiValue DEFAULT:Hash-MultiValue CPAN-DEFAULT
 * perl-Hash-WithDefaults DEFAULT:Hash-WithDefaults CPAN-DEFAULT
 * perl-Heap DEFAULT:Heap CPAN-DEFAULT
 * perl-HTML-Encoding DEFAULT:HTML-Encoding CPAN-DEFAULT
 * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered CPAN-DEFAULT
 * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
 * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
 * perl-HTML-PrettyPrinter DEFAULT:HTML-PrettyPrinter CPAN-DEFAULT
 * perl-HTML-StripScripts DEFAULT:HTML-StripScripts CPAN-DEFAULT
 * perl-HTML-StripScripts-Parser DEFAULT:HTML-StripScripts-Parser CPAN-DEFAULT
 * perl-HTML-Tagset DEFAULT:HTML-Tagset CPAN-DEFAULT
 * perl-HTML-Template DEFAULT:HTML-Template CPAN-DEFAULT
 * perl-HTML-Template-Pro DEFAULT:HTML-Template-Pro CPAN-DEFAULT
 * perl-HTML-Tidy DEFAULT:HTML-Tidy CPAN-DEFAULT
 * perl-HTML-Tree DEFAULT:HTML-Tree CPAN-DEFAULT
 * perl-HTTP-Cookies DEFAULT:HTTP-Cookies CPAN-DEFAULT
 * perl-HTTP-Daemon DEFAULT:HTTP-Daemon CPAN-DEFAULT
 * perl-HTTP-Date DEFAULT:HTTP-Date CPAN-DEFAULT
 * perl-HTTP-Message DEFAULT:HTTP-Message CPAN-DEFAULT
 * perl-HTTP-Negotiate DEFAULT:HTTP-Negotiate CPAN-DEFAULT
 * perl-HTTP-Parser DEFAULT:HTTP-Parser CPAN-DEFAULT
 * perl-HTTP-ProxyAutoConfig DEFAULT:HTTP-ProxyAutoConfig CPAN-DEFAULT
 * perl-Inline DEFAULT:Inline CPAN-DEFAULT
 * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
 * perl-IO-Capture-Extended DEFAULT:IO-Capture-Extended CPAN-DEFAULT
 * perl-IO-Compress DEFAULT:IO-Compress CPAN-DEFAULT
 * perl-IO-Digest DEFAULT:IO-Digest CPAN-DEFAULT
 * perl-IO-Prompt DEFAULT:IO-Prompt CPAN-DEFAULT
 * perl-IO-Socket-IP DEFAULT:IO-Socket-IP CPAN-DEFAULT
 * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
 * perl-IO-TieCombine DEFAULT:IO-TieCombine CPAN-DEFAULT
 * perl-IPTables-libiptc DEFAULT:IPTables-libiptc CPAN-DEFAULT
 * perl-IRC-Utils DEFAULT:IRC-Utils CPAN-DEFAULT
 * perl-JavaScript-Beautifier DEFAULT:JavaScript-Beautifier CPAN-DEFAULT
 * perl-JavaScript-Minifier DEFAULT:JavaScript-Minifier CPAN-DEFAULT
 * perl-JavaScript-Minifier-XS DEFAULT:JavaScript-Minifier-XS CPAN-DEFAULT
 * perl-Jemplate DEFAULT:Jemplate CPAN-DEFAULT
 * perl-JSON DEFAULT:JSON CPAN-DEFAULT
 * perl-Language-Functional DEFAULT:Language-Functional CPAN-DEFAULT
 * perl-Language-Prolog-Sugar DEFAULT:Language-Prolog-Sugar CPAN-DEFAULT
 * perl-Language-Prolog-Types DEFAULT:Language-Prolog-Types CPAN-DEFAULT
 * perl-Language-Prolog-Yaswi DEFAULT:Language-Prolog-Yaswi CPAN-DEFAULT
 * perl-LDAP DEFAULT:perl-ldap CPAN-DEFAULT
 * perl-Lexical-SealRequireHints DEFAULT:Lexical-SealRequireHints CPAN-DEFAULT
 * perl-Lexical-Var DEFAULT:Lexical-Var CPAN-DEFAULT
 * perl-libwww-perl DEFAULT:libwww-perl CPAN-DEFAULT
 * perl-libxml-perl DEFAULT:libxml-perl CPAN-DEFAULT
 * perl-Linux-Inotify2 DEFAULT:Linux-Inotify2 CPAN-DEFAULT 
 * perl-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT 
 * perl-List-Compare DEFAULT:List-Compare CPAN-DEFAULT 
 * perl-Locale-Codes DEFAULT:Locale-Codes CPAN-DEFAULT
 * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
 * perl-Locale-SubCountry DEFAULT:Locale-SubCountry CPAN-DEFAULT
 * perl-Log-Dispatch-Config DEFAULT:Log-Dispatch-Config CPAN-DEFAULT
 * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
 * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT 
 * perl-LWP-Authen-Wsse DEFAULT:LWP-Authen-Wsse CPAN-DEFAULT
 * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
 * perl-LWP-Protocol-https DEFAULT:LWP-Protocol-https CPAN-DEFAULT
 * perl-Mail-MboxParser DEFAULT:Mail-MboxParser CPAN-DEFAULT
 * perl-Makefile-DOM DEFAULT:Makefile-DOM CPAN-DEFAULT
 * perl-Marpa-XS DEFAULT:Marpa-XS CPAN-DEFAULT
 * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
 * perl-Math-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-Charset DEFAULT:MIME-Charset CPAN-DEFAULT 
 * perl-MIME-EncWords DEFAULT:MIME-EncWords CPAN-DEFAULT
 * perl-MIME-Lite DEFAULT:MIME-Lite CPAN-DEFAULT
 * perl-MIME-Lite-HTML DEFAULT:MIME-Lite-HTML CPAN-DEFAULT
 * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
 * perl-Module-CPANTS-Analyse DEFAULT:Module-CPANTS-Analyse CPAN-DEFAULT
 * perl-Module-Extract DEFAULT:Module-Extract CPAN-DEFAULT
 * perl-Module-ExtractUse DEFAULT:Module-ExtractUse CPAN-DEFAULT
 * perl-Module-Depends DEFAULT:Module-Depends CPAN-DEFAULT
 * perl-Module-Inspector DEFAULT:Module-Inspector CPAN-DEFAULT
 * perl-Module-Install-AuthorRequires DEFAULT:Module-Install-AuthorRequires CPAN-DEFAULT
 * perl-Module-Install-AuthorTests DEFAULT:Module-Install-AuthorTests CPAN-DEFAULT
 * perl-Module-Install-AutoManifest DEFAULT:Module-Install-AutoManifest CPAN-DEFAULT
 * perl-Module-Install-GithubMeta DEFAULT:Module-Install-GithubMeta CPAN-DEFAULT
 * perl-Module-Install-ExtraTests DEFAULT:Module-Install-ExtraTests CPAN-DEFAULT
 * perl-Module-Install-ManifestSkip DEFAULT:Module-Install-ManifestSkip CPAN-DEFAULT
 * perl-Module-Install-Repository DEFAULT:Module-Install-Repository CPAN-DEFAULT
 * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
 * perl-Module-Manifest-Skip DEFAULT:Module-Manifest-Skip CPAN-DEFAULT
 * perl-Module-Math-Depends DEFAULT:Module-Math-Depends CPAN-DEFAULT
 * perl-Module-Package DEFAULT:Module-Package CPAN-DEFAULT
 * perl-Module-Runtime DEFAULT:Module-Runtime CPAN-DEFAULT
 * perl-Module-ScanDeps DEFAULT:Module-ScanDeps CPAN-DEFAULT
 * perl-Module-Signature DEFAULT:Module-Signature CPAN-DEFAULT
 * perl-Module-Starter DEFAULT:Module-Starter CPAN-DEFAULT
 * perl-Module-Versions-Report DEFAULT:Module-Versions-Report CPAN-DEFAULT 
 * perl-MogileFS-Client DEFAULT:MogileFS-Client CPAN-DEFAULT
 * perl-MogileFS-Utils DEFAULT:MogileFS-Utils CPAN-DEFAULT
 * perl-mogilefs-server DEFAULT:mogilefs-server CPAN-DEFAULT
 * perl-Mojolicious DEFAULT:Mojolicious CPAN-DEFAULT
 * perl-MongoDB DEFAULT:MongoDB CPAN-DEFAULT
 * perl-Monotone-AutomateStdio DEFAULT:Monotone-AutomateStdio CPAN-DEFAULT
 * perl-Moose-Policy DEFAULT:Moose-Policy CPAN-DEFAULT
 * perl-MooseX-AttributeShortcuts DEFAULT:MooseX-AttributeShortcuts CPAN-DEFAULT
 * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
 * perl-MooseX-GlobRef-Object DEFAULT:MooseX-GlobRef-Object CPAN-DEFAULT
 * perl-MooseX-MarkAsMethods DEFAULT:MooseX-MarkAsMethods 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 DEFAULT:Nagios-Plugin CPAN-DEFAULT
 * perl-Nagios-Plugin-WWW-Mechanize DEFAULT:Nagios-Plugin-WWW-Mechanize CPAN-DEFAULT
 * perl-NetAddr-IP DEFAULT:NetAddr-IP CPAN-DEFAULT
 * perl-Net-CUPS DEFAULT:Net-CUPS CPAN-DEFAULT
 * perl-Net-DBus DEFAULT:Net-DBus CPAN-DEFAULT
 * perl-Net-DBus-GLib DEFAULT:Net-DBus-GLib CPAN-DEFAULT
 * perl-Net-DNS DEFAULT:Net-DNS CPAN-DEFAULT
 * perl-Net-eBay DEFAULT:Net-eBay CPAN-DEFAULT
 * perl-Net-GitHub DEFAULT:Net-GitHub CPAN-DEFAULT
 * perl-Net-Google-AuthSub DEFAULT:Net-Google-AuthSub CPAN-DEFAULT
 * perl-Net-HTTP DEFAULT:Net-HTTP CPAN-DEFAULT
 * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
 * perl-Net-IRC DEFAULT:Net-IRC CPAN-DEFAULT
 * perl-Net-Jabber DEFAULT:Net-Jabber CPAN-DEFAULT
 * perl-Net-Lite-FTP DEFAULT:Net-Lite-FTP CPAN-DEFAULT
 * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
 * perl-Net-SMTP-SSL DEFAULT:Net-SMTP-SSL CPAN-DEFAULT
 * perl-Net-SSH2 DEFAULT:Net-SSH2 CPAN-DEFAULT
 * perl-Net-Twitter DEFAULT:Net-Twitter CPAN-DEFAULT
 * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
 * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
 * perl-Net-XMPP DEFAULT:Net-XMPP CPAN-DEFAULT
 * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
 * perl-Object-InsideOut DEFAULT:Object-InsideOut 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-PDF-Reuse DEFAULT:PDF-Reuse CPAN-DEFAULT
 * perl-Perlbal-XS-HTTPHeaders DEFAULT:Perlbal-XS-HTTPHeaders CPAN-DEFAULT
 * perl-Perl-Critic DEFAULT:Perl-Critic CPAN-DEFAULT
 * perl-Perl-Critic-Bangs DEFAULT:Perl-Critic-Bangs CPAN-DEFAULT
 * perl-Perl-Critic-Compatibility Default:Perl-Critic-Compatibility CPAN-DEFAULT
 * perl-Perl-Critic-Deprecated DEFAULT:Perl-Critic-Deprecated CPAN-DEFAULT
 * perl-Perl-Critic-Dynamic DEFAULT:Perl-Critic-Dynamic CPAN-DEFAULT
 * perl-Perl-Critic-Lax DEFAULT:Perl-Critic-Lax CPAN-DEFAULT
 * perl-Perl-Critic-More DEFAULT:Perl-Critic-More CPAN-DEFAULT
 * perl-Perl-Critic-Nits DEFAULT:Perl-Critic-Nits CPAN-DEFAULT
 * perl-Perl-Critic-PetPeeves-JTRAMMELL DEFAULT:Perl-Critic-PetPeeves-JTRAMMELL CPAN-DEFAULT
 * perl-Perl-Critic-Pulp DEFAULT:Perl-Critic-Pulp CPAN-DEFAULT
 * perl-Perl-Critic-Storable DEFAULT:Perl-Critic-Storable CPAN-DEFAULT
 * perl-Perl-Critic-StricterSubs DEFAULT:Perl-Critic-StricterSubs CPAN-DEFAULT
 * perl-Perl-Critic-Swift DEFAULT:Perl-Critic-Swift CPAN-DEFAULT
 * perl-Perl-Critic-Tics DEFAULT:Perl-Critic-Tics CPAN-DEFAULT
 * perl-Perl-Metrics-Simple DEFAULT:Perl-Metrics-Simple CPAN-DEFAULT
 * perl-PerlIO-eol DEFAULT:PerlIO-eol CPAN-DEFAULT
 * perl-PerlIO-locale DEFAULT:PerlIO-locale CPAN-DEFAULT
 * perl-PerlIO-via-dynamic DEFAULT:PerlIO-via-dynamic CPAN-DEFAULT
 * perl-PerlIO-via-symlink DEFAULT:PerlIO-via-symlink CPAN-DEFAULT
 * perl-pip DEFAULT:pip CPAN-DEFAULT
 * perl-PlRPC DEFAULT:PlRPC 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-Perldoc DEFAULT:Pod-Perldoc CPAN-DEFAULT
 * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
 * perl-Pod-Spell-CommonMistakes DEFAULT:Pod-Spell-CommonMistakes CPAN-DEFAULT
 * perl-Pod-Strip DEFAULT:Pod-Strip CPAN-DEFAULT
 * perl-POD2-Base DEFAULT:POD2-Base CPAN-DEFAULT
 * perl-podlinkcheck DEFAULT:podlinkcheck CPAN-DEFAULT
 * perl-POE DEFAULT:POE CPAN-DEFAULT
 * perl-POE-API-Peek DEFAULT:POE-API-Peek CPAN-DEFAULT
 * perl-POE-Component-Child DEFAULT:POE-Component-Child CPAN-DEFAULT
 * perl-POE-Component-Client-DNS DEFAULT:POE-Component-Client-DNS CPAN-DEFAULT
 * perl-POE-Component-Client-HTTP DEFAULT:POE-Component-Client-HTTP CPAN-DEFAULT
 * perl-POE-Component-Client-Keepalive DEFAULT:POE-Component-Client-Keepalive CPAN-DEFAULT
 * perl-POE-Component-Client-LDAP DEFAULT:POE-Component-Client-LDAP CPAN-DEFAULT
 * perl-POE-Component-DBIAgent DEFAULT:POE-Component-DBIAgent CPAN-DEFAULT
 * perl-POE-Component-IRC DEFAULT:POE-Component-IRC CPAN-DEFAULT
 * perl-POE-Component-JobQueue DEFAULT:POE-Component-JobQueue CPAN-DEFAULT
 * perl-POE-Component-Logger DEFAULT:POE-Component-Logger CPAN-DEFAULT
 * perl-POE-Component-Pluggable DEFAULT:POE-Component-Pluggable CPAN-DEFAULT
 * perl-POE-Component-Server-HTTP DEFAULT:POE-Component-Server-HTTP CPAN-DEFAULT
 * perl-POE-Component-Server-SimpleHTTP DEFAULT:POE-Component-Server-SimpleHTTP CPAN-DEFAULT
 * perl-POE-Component-Server-SOAP DEFAULT:POE-Component-Server-SOAP CPAN-DEFAULT
 * perl-POE-Component-Server-XMLRPC DEFAULT:POE-Component-Server-XMLRPC CPAN-DEFAULT
 * perl-POE-Component-SimpleDBI DEFAULT:POE-Component-SimpleDBI CPAN-DEFAULT
 * perl-POE-Component-SimpleLog DEFAULT:POE-Component-SimpleLog CPAN-DEFAULT
 * perl-POE-Component-SNMP DEFAULT:POE-Component-SNMP CPAN-DEFAULT
 * perl-POE-Component-SSLify DEFAULT:POE-Component-SSLify CPAN-DEFAULT
 * perl-POE-Filter-HTTP-Parser DEFAULT:POE-Filter-HTTP-Parser CPAN-DEFAULT
 * perl-POE-Filter-IRCD DEFAULT:POE-Filter-IRCD CPAN-DEFAULT
 * perl-POE-Filter-Zlib DEFAULT:POE-Filter-Zlib CPAN-DEFAULT
 * perl-POE-Test-Loops DEFAULT:POE-Test-Loops CPAN-DEFAULT
 * perl-POE-Wheel-Null DEFAULT:POE-Wheel-Null CPAN-DEFAULT
 * perl-PPI-PowerToys DEFAULT:PPI-PowerToys CPAN-DEFAULT
 * perl-PPIx-EditorTools DEFAULT:PPIx-EditorTools CPAN-DEFAULT
 * perl-PPIx-Regexp DEFAULT:PPIx-Regexp CPAN-DEFAULT
 * perl-Probe-Perl DEFAULT:Probe-Perl CPAN-DEFAULT
 * perl-Proc-SyncExec DEFAULT:Proc-SyncExec CPAN-DEFAULT
 * perl-Regexp-Shellish DEFAULT:Regexp-Shellish CPAN-DEFAULT
 * perl-RPC-XML DEFAULT:RPC-XML CPAN-DEFAULT
 * perl-rpm-build-perl DEFAULT:rpm-build-perl CPAN-DEFAULT
 * perl-RPM-Specfile DEFAULT:RPM-Specfile CPAN-DEFAULT
 * perl-RPM-VersionCompare Fedora-Rebuild-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/RPM-VersionCompare/
 * perl-RPM2 DEFAULT:RPM2 CPAN-DEFAULT
 * perl-RT-Client-REST DEFAULT:RT-Client-REST CPAN-DEFAULT
 * perl-Scalar-Construct DEFAULT:Scalar-Construct CPAN-DEFAULT
 * perl-Scriptalicious DEFAULT:Scriptalicious CPAN-DEFAULT
 * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
 * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
 * perl-Smart-Comments DEFAULT:Smart-Comments CPAN-DEFAULT
 * perl-smartmatch DEFAULT:smartmatch CPAN-DEFAULT
 * perl-smartmatch-engine-core DEFAULT:smartmatch-engine-core CPAN-DEFAULT
 * perl-Software-License DEFAULT:Software-License CPAN-DEFAULT
 * perl-SOAP-Lite DEFAULT:SOAP-Lite CPAN-DEFAULT
 * perl-Socket DEFAULT:Socket CPAN-DEFAULT
 * perl-Sort-Naturally DEFAULT:Sort-Naturally CPAN-DEFAULT
 * perl-Spreadsheet-ParseExcel-Simple DEFAULT:Spreadsheet-ParseExcel-Simple CPAN-DEFAULT
 * perl-Spreadsheet-WriteExcel-Simple DEFAULT:Spreadsheet-WriteExcel-Simple CPAN-DEFAULT
 * perl-SQL-Library DEFAULT:SQL-Library CPAN-DEFAULT
 * perl-SQL-Shell DEFAULT:SQL-Shell 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-Escape DEFAULT:String-Escape CPAN-DEFAULT
 * perl-String-Random DEFAULT:String-Random CPAN-DEFAULT
 * perl-Sub-Install DEFAULT:Sub-Install CPAN-DEFAULT
 * perl-SVK DEFAULT:SVK CPAN-DEFAULT
 * perl-syntax DEFAULT:syntax 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-Sys-Syscall DEFAULT:Sys-Syscall CPAN-DEFAULT
 * perl-Sys-Virt DEFAULT:Sys-Virt CPAN-DEFAULT
 * perl-TAP-Formatter-HTML DEFAULT:TAP-Formatter-HTML CPAN-DEFAULT
 * perl-TAP-Formatter-JUnit DEFAULT:TAP-Formatter-JUnit CPAN-DEFAULT
 * perl-TAP-Harness-Archive DEFAULT:TAP-Harness-Archive CPAN-DEFAULT
 * perl-Task-Kensho-Exceptions DEFAULT:Task-Kensho-Exceptions CPAN-DEFAULT
 * perl-Task-Kensho-OOP DEFAULT:Task-Kensho-OOP CPAN-DEFAULT
 * perl-Task-Kensho-Toolchain DEFAULT:Task-Kensho-Toolchain CPAN-DEFAULT
 * perl-Task-Moose DEFAULT:Task-Moose CPAN-DEFAULT
 * perl-Task-Perl-Critic DEFAULT:Task-Perl-Critic CPAN-DEFAULT
 * perl-Template-Alloy DEFAULT:Template-Alloy CPAN-DEFAULT
 * perl-Template-Tiny DEFAULT:Template-Tiny CPAN-DEFAULT
 * perl-TermReadKey DEFAULT:TermReadKey CPAN-DEFAULT
 * perl-Term-Completion DEFAULT:Term-Completion CPAN-DEFAULT
 * perl-Term-ProgressBar DEFAULT:Term-ProgressBar CPAN-DEFAULT
 * perl-Term-ReadLine-Gnu DEFAULT:Term-ReadLine-Gnu CPAN-DEFAULT
 * perl-Term-ReadLine-Perl DEFAULT:Term-ReadLine-Perl CPAN-DEFAULT
 * perl-Term-Size DEFAULT:Term-Size CPAN-DEFAULT
 * perl-Test-Able DEFAULT:Test-Able CPAN-DEFAULT
 * perl-Test-Able-Runner DEFAULT:Test-Able-Runner CPAN-DEFAULT
 * perl-Test-AutoBuild DEFAULT:Test-AutoBuild CPAN-DEFAULT
 * perl-Test-AutoLoader DEFAULT:Test-AutoLoader CPAN-DEFAULT
 * perl-Test-Block DEFAULT:Test-Block CPAN-DEFAULT
 * perl-Test-Compile DEFAULT:Test-Compile CPAN-DEFAULT
 * perl-Test-Dependencies DEFAULT:Test-Dependencies CPAN-DEFAULT
 * perl-Test-DBICSchemaLoaderDigest DEFAULT:Test-DBICSchemaLoaderDigest CPAN-DEFAULT
 * perl-Test-Dir DEFAULT:Test-Dir CPAN-DEFAULT
 * perl-Test-DistManifest DEFAULT:Test-DistManifest CPAN-DEFAULT
 * perl-Test-Email DEFAULT:Test-Email CPAN-DEFAULT 
 * perl-Test-Harness-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-Module-Used DEFAULT:Test-Module-Used CPAN-DEFAULT
 * perl-Test-Moose-More DEFAULT:Test-Moose-More CPAN-DEFAULT
 * perl-Test-Most DEFAULT:Test-Most CPAN-DEFAULT
 * perl-Test-NeedsDisplay DEFAULT:Test-NeedsDisplay CPAN-DEFAULT
 * perl-Test-NoBreakpoints DEFAULT:Test-NoBreakpoints CPAN-DEFAULT
 * perl-Test-NoPlan DEFAULT:Test-NoPlan CPAN-DEFAULT
 * perl-Test-Perl-Critic-Progressive DEFAULT:Test-Perl-Critic-Progressive CPAN-DEFAULT
 * perl-Test-Pod DEFAULT:Test-Pod CPAN-DEFAULT
 * perl-Test-Pod-Coverage DEFAULT:Test-Pod-Coverage CPAN-DEFAULT
 * perl-Test-Pod-LinkCheck DEFAULT:Test-Pod-LinkCheck CPAN-DEFAULT
 * perl-Test-Pod-No404s DEFAULT:Test-Pod-No404s CPAN-DEFAULT
 * perl-Test-Pod-Spelling-CommonMistakes DEFAULT:Test-Pod-Spelling-CommonMistakes CPAN-DEFAULT
 * perl-Test-POE-Client-TCP DEFAULT:Test-POE-Client-TCP CPAN-DEFAULT
 * perl-Test-Prereq DEFAULT:Test-Prereq CPAN-DEFAULT
 * perl-Test-Refcount DEFAULT:Test-Refcount CPAN-DEFAULT
 * perl-Test-Reporter DEFAULT:Test-Reporter CPAN-DEFAULT
 * perl-Test-Smoke DEFAULT:Test-Smoke CPAN-DEFAULT
 * perl-Test-Strict DEFAULT:Test-Strict CPAN-DEFAULT
 * perl-Test-Trap DEFAULT:Test-Trap CPAN-DEFAULT
 * perl-Test-Unit DEFAULT:Test-Unit CPAN-DEFAULT 
 * perl-Test-Unit-Runner-Xml DEFAULT:Test-Unit-Runner-Xml CPAN-DEFAULT
 * perl-Test-UseAllModules DEFAULT:Test-UseAllModules CPAN-DEFAULT
 * perl-Test-Warn DEFAULT:Test-Warn CPAN-DEFAULT
 * perl-Test-WWW-Selenium DEFAULT:Test-WWW-Selenium CPAN-DEFAULT
 * perl-Test-YAML-Meta DEFAULT:Test-YAML-Meta CPAN-DEFAULT
 * perl-Test-YAML-Valid DEFAULT:Test-YAML-Valid CPAN-DEFAULT
 * perl-Text-Aligner DEFAULT:Text-Aligner CPAN-DEFAULT
 * perl-Text-ASCIITable DEFAULT:Text-ASCIITable CPAN-DEFAULT
 * perl-Text-CHM DEFAULT:Text-CHM CPAN-DEFAULT
 * perl-Text-CSV DEFAULT:Text-CSV CPAN-DEFAULT
 * perl-Text-CSV_XS DEFAULT:Text-CSV_XS CPAN-DEFAULT
 * perl-Text-Diff DEFAULT:Text-Diff CPAN-DEFAULT
 * perl-Text-FindIndent DEFAULT:Text-FindIndent CPAN-DEFAULT
 * perl-Text-Format DEFAULT:Text-Format CPAN-DEFAULT 
 * perl-Text-vFile-asData DEFAULT:Text-vFile-asData CPAN-DEFAULT
 * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
 * perl-Text-Password-Pronounceable DEFAULT:Text-Password-Pronounceable CPAN-DEFAULT
 * perl-Text-PDF DEFAULT:Text-PDF CPAN-DEFAULT
 * perl-Text-RecordParser DEFAULT:Text-RecordParser CPAN-DEFAULT
 * perl-Text-SimpleTable DEFAULT:Text-SimpleTable CPAN-DEFAULT
 * perl-Text-Smart DEFAULT:Text-Smart CPAN-DEFAULT
 * perl-Text-Smart-Plugin DEFAULT:Text-Smart-Plugin CPAN-DEFAULT
 * perl-Text-Table DEFAULT:Text-Table CPAN-DEFAULT
 * perl-Text-TabularDisplay DEFAULT:Text-TabularDisplay CPAN-DEFAULT
 * perl-Text-Tree DEFAULT:Text-Tree CPAN-DEFAULT
 * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
 * perl-Text-VimColor DEFAULT:Text-VimColor CPAN-DEFAULT
 * perl-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-Time-Duration DEFAULT:Time-Duration CPAN-DEFAULT
 * perl-Time-modules DEFAULT:Time-modules CPAN-DEFAULT
 * perl-Time-Progress DEFAULT:Time-Progress CPAN-DEFAULT
 * perl-Tk DEFAULT:Tk CPAN-DEFAULT
 * perl-Tk-Canvas-GradientColor DEFAULT:Tk-Canvas-GradientColor CPAN-DEFAULT
 * perl-Tk-ColoredButton DEFAULT:Tk-ColoredButton CPAN-DEFAULT
 * perl-Tk-EntryCheck DEFAULT:Tk-EntryCheck CPAN-DEFAULT
 * perl-Tk-Getopt DEFAULT:Tk-Getopt CPAN-DEFAULT
 * perl-Tk-Pod DEFAULT:Tk-Pod CPAN-DEFAULT
 * perl-TryCatch DEFAULT:TryCatch CPAN-DEFAULT
 * perl-Unicode-Casing DEFAULT:Unicode-Casing CPAN-DEFAULT
 * perl-UNIVERSAL-ref DEFAULT:UNIVERSAL-ref CPAN-DEFAULT
 * perl-URI DEFAULT:URI CPAN-DEFAULT
 * perl-URI-Find-Simple DEFAULT:URI-Find-Simple CPAN-DEFAULT
 * perl-URI-Title DEFAULT:URI-Title CPAN-DEFAULT
 * perl-User DEFAULT:User CPAN-DEFAULT
 * perl-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-Curl DEFAULT:WW-Curl CPAN-DEFAULT
 * perl-WWW-Search DEFAULT:WWW-Search CPAN-DEFAULT
 * perl-WWW-Shorten DEFAULT:WWW-Shorten 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-DifferenceMarkup DEFAULT:XML-DifferenceMarkup CPAN-DEFAULT
 * perl-XML-DTDParser DEFAULT:XML-DTDParser CPAN-DEFAULT
 * perl-XML-Dumper DEFAULT:XML-Dumper CPAN-DEFAULT
 * perl-XML-Generator DEFAULT:XML-Generator CPAN-DEFAULT
 * perl-XML-Generator-DBI DEFAULT:XML-Generator-DBI CPAN-DEFAULT
 * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
 * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
 * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
 * perl-XML-LibXSLT DEFAULT:XML-LibXSLT CPAN-DEFAULT
 * perl-XML-Merge DEFAULT:XML-Merge CPAN-DEFAULT
 * perl-XML-NamespaceSupport DEFAULT:XML-NamespaceSupport CPAN-DEFAULT
 * perl-XML-Parser DEFAULT:XML-Parser CPAN-DEFAULT
 * perl-XML-Parser-Lite-Tree DEFAULT:XML-Parser-Lite-Tree CPAN-DEFAULT
 * perl-XML-Rules DEFAULT:XML-Rules CPAN-DEFAULT
 * perl-XML-SAX DEFAULT:XML-SAX CPAN-DEFAULT
 * perl-XML-Smart DEFAULT:XML-Smart CPAN-DEFAULT
 * perl-XML-Simple DEFAULT:XML-Simple CPAN-DEFAULT
 * perl-XML-Simple-DTDReader DEFAULT:XML-Simple-DTDReader CPAN-DEFAULT
 * perl-XML-Stream DEFAULT:XML-Stream CPAN-DEFAULT 
 * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
 * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
 * perl-XML-Writer DEFAULT:XML-Writer CPAN-DEFAULT
 * perl-XML-XPath DEFAULT:XML-XPath CPAN-DEFAULT
 * perl-XXX DEFAULT:XXX CPAN-DEFAULT
 * perl-YAML DEFAULT:YAML CPAN-DEFAULT
 * perl-YAML-LibYAML DEFAULT:YAML-LibYAML CPAN-DEFAULT
 * perl-YAML-Tiny DEFAULT:YAML-Tiny CPAN-DEFAULT
 * perl-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-Data-Types DEFAULT:Data-Types 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-v6 DEFAULT:v6 CPAN-DEFAULT
 * perl-WebService-Rajce DEFAULT:WebService-Rajce CPAN-DEFAULT
 * perl-WWW-Google-Contacts DEFAULT:WWW-Google-Contacts 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
 * perl-YUM-RepoQuery DEFAULT:YUM-RepoQuery 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-deepend-Mockery Mockery\s([\d\.]+)+\s\(stable\) http://pear.survivethedeepend.com/feed.xml
 * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
 * php-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-pecl-mongo mongo-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/mongo
 * php-pecl-oauth oauth-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/oauth
 * php-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/feed.xml
 * php-phpunit-bytekit <title>bytekit\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-File-Iterator <title>File_Iterator\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpcpd <title>phpcpd\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpdcd <title>phpdcd\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phploc <title>phploc\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-CodeBrowser <title>PHP_CodeBrowser\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
 * php-symfony-symfony <title>symfony \s([\d\.]+)+\s\(stable\)</title> http://pear.symfony-project.com//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
 * 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/
 * pinpoint DEFAULT GNOME-DEFAULT
 * 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/
 * pl DEFAULT http://www.swi-prolog.org/download/stable
 * plotutils DEFAULT GNU-DEFAULT
 * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
 * pmd pmd-src-([0-9.]*)\.zip http://downloads.sourceforge.net/pmd/
 * 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 https://01.org/powertop/downloads
 * 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
 * proguard DEFAULT SF-DEFAULT 
 * protobuf DEFAULT GOOGLE-DEFAULT
 * proxyknife DEFAULT GNU-DEFAULT
 * psacct DEFAULT GNU-DEFAULT:acct
 * pscan Version\s+(\d[\d.]+\d) http://deployingradius.com/pscan/README
 * psfex DEFAULT http://www.astromatic.net/download/psfex/
 * psmisc DEFAULT SF-DEFAULT
 * pspp DEFAULT GNU-DEFAULT
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * pure DEFAULT GOOGLE-DEFAULT:pure-lang
 * purple-facebookchat DEFAULT:pidgin-facebookchat GOOGLE-DEFAULT:pidgin-facebookchat
 * purple-microblog DEFAULT:mbpurple GOOGLE-DEFAULT:microblog-purple
 * 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
 * pycmd DEFAULT PYPI-DEFAULT
 * pyfits DEFAULT http://www.stsci.edu/resources/software_hardware/pyfits/
 * pyflakes DEFAULT http://divmod.org/trac/wiki/DivmodPyflakes
 * pygpgme DEFAULT LP-DEFAULT:pygpgme
 * 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
 * pytest DEFAULT PYPI-DEFAULT
 * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
 * python-ansi2html DEFAULT:ansi2html http://pypi.python.org/pypi/ansi2html
 * python-application DEFAULT PYPI-DEFAULT
 * python-argparse DEFAULT:argparse GOOGLE-DEFAULT:argparse
 * python-beaker DEFAULT:Beaker PYPI-DEFAULT
 * python-biopython biopython-([0-9].*?)\.tar\.gz http://biopython.org/DIST/
 * python-blist DEFAULT:blist PYPI-DEFAULT:blist
 * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
 * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
 * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
 * python-chameleon DEFAULT:Chameleon PYPI-DEFAULT:Chameleon
 * python-cherrypy <li><a href="([0-9][^/]*)/"> http://download.cherrypy.org/cherrypy/
 * python-cherrypy2 <li><a href="(2[^/]*)/"> http://download.cherrypy.org/cherrypy/
 * 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-decorator3 decorator-(3.*).tar.gz 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-django DEFAULT:Django PYPI-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-enchant DEFAULT:pyenchant PYPI-DEFAULT:pyenchant
 * 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-jinja DEFAULT:Jinja PYPI-DEFAULT:Jinja
 * python-kid DEFAULT:kid PYPI-DEFAULT:kid
 * python-kitchen DEFAULT:kitchen PYPI-DEFAULT:kitchen
 * 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-migrate0.5 sqlalchemy-migrate-(0.5.*).tar.gz" PYPI-DEFAULT:sqlalchemy-migrate
 * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
 * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
 * python-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-paramiko DEFAULT:paramiko http://www.lag.net/paramiko/download/
 * python-paste DEFAULT:Paste PYPI-DEFAULT:Paste
 * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
 * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
 * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
 * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
 * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
 * python-peak-util-assembler DEFAULT:BytecodeAssembler PYPI-DEFAULT:BytecodeAssembler
 * python-peak-util-extremes DEFAULT:Extremes PYPI-DEFAULT:Extremes
 * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
 * python-pep8 DEFAULT:pep8 PYPI-DEFAULT:pep8
 * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
 * python-protocols >PyProtocols-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * python-psutil DEFAULT:psutil GOOGLE-DEFAULT:psutil
 * python-psyco Current.version.is.([0-9]+\..+?) http://psyco.sourceforge.net/download.html
 * python-py py-([0-9.]*?).(?:tar.gz|zip) PYPI-DEFAULT:py
 * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
 * python-qserve DEFAULT:qserve PYPI-DEFAULT:qserve
 * 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-ruledispatch >RuleDispatch-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * 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-six DEFAULT:six PYPI-DEFAULT:six
 * 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-sqlalchemy0.5 .*(0.5[.0-9]*).tar.gz PYPI-DEFAULT:SQLAlchemy
 * python-sqlamp DEFAULT:sqlamp PYPI-DEFAULT:sqlamp
 * python-sqlite3dbm DEFAULT:sqlite3dbm PYPI-DEFAULT:sqlite3dbm
 * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
 * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
 * python-storm DEFAULT:storm LP-DEFAULT:storm
 * python-testtools DEFAULT:testtools LP-DEFAULT:testtools
 * python-tg-devtools DEFAULT:tg.devtools PYPI-DEFAULT:tg.devtools
 * python-tgcaptcha DEFAULT:TGCaptcha PYPI-DEFAULT:TGCaptcha
 * python-tgext-admin DEFAULT:tgext.admin PYPI-DEFAULT:tgext.admin
 * python-tgext-crud DEFAULT:tgext.crud PYPI-DEFAULT:tgext.crud
 * python-tgfastdata DEFAULT:TGFastData PYPI-DEFAULT:TGFastData
 * python-tgmochikit DEFAULT:tgMochiKit PYPI-DEFAULT:tgMochiKit
 * python-tgscheduler DEFAULT:TGScheduler PYPI-DEFAULT:TGScheduler
 * python-toscawidgets DEFAULT:ToscaWidgets PYPI-DEFAULT:ToscaWidgets
 * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
 * python-TurboMail DEFAULT:TurboMail PYPI-DEFAULT:TurboMail
 * python-turbocheetah DEFAULT:TurboCheetah PYPI-DEFAULT:TurboCheetah
 * python-turboflot DEFAULT:TurboFlot PYPI-DEFAULT:TurboFlot
 * python-turbojson DEFAULT:TurboJson PYPI-DEFAULT:TurboJson
 * python-turbojson13 .*-(1.3[.0-9]*).tar.gz PYPI-DEFAULT:TurboJson
 * python-turbokid DEFAULT:TurboKid PYPI-DEFAULT:TurboKid
 * python-tw-forms DEFAULT:tw.forms PYPI-DEFAULT:tw.forms
 * python-tw-jquery DEFAULT:tw.jquery PYPI-DEFAULT:tw.jquery
 * python-tw2-core DEFAULT:tw2.core PYPI-DEFAULT:tw2.core
 * python-twisted DEFAULT:Twisted http://twistedmatrix.com/trac/wiki/Downloads
 * python-txws DEFAULT:txWS http://pypi.python.org/pypi/txWS
 * python-txzmq DEFAULT:txZMQ http://pypi.python.org/pypi/txZMQ
 * python-unicodenazi DEFAULT PYPI-DEFAULT:unicode-nazi
 * python-virtualenvwrapper DEFAULT:virtualenvwrapper http://pypi.python.org/pypi/virtualenvwrapper
 * 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-webtest DEFAULT:WebTest PYPI-DEFAULT:WebTest
 * 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/
 * python3-zope-fixers DEFAULT:zope.fixers PYPI-DEFAULT:zope.fixers
 * PyYAML DEFAULT http://pyyaml.org/download/pyyaml/

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-creator DEFAULT http://get.qt.nokia.com/qtcreator/
 * qt-qsa qsa-x11-free-(.*?\..*?).tar.gz ftp://ftp.trolltech.com/qsa/source/
 * qterm DEFAULT SF-DEFAULT
 * 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
 * quodlibet DEFAULT GOOGLE-DEFAULT
 * 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/
 * rasterview DEFAULT http://www.easysw.com/~mike/rasterview/
 * rb_libtorrent DEFAULT:libtorrent-rasterbar GOOGLE-DEFAULT:libtorrent
 * rcs DEFAULT GNU-DEFAULT
 * rcsslogplayer \"([0-20]+?\.[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
 * recutils 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
 * redis redis-(.*?).tar.gz http://redis.io/download
 * redshift DEFAULT LP-DEFAULT
 * regionset regionset-([.0-9]*?).tar.gz http://linvdr.org/download/regionset/
 * reiserfs-utils reiserfsprogs-(.*?)\.tar\.bz2 http://www.kernel.org/pub/linux/utils/fs/reiserfs/
 * relevation DEFAULT http://p.outlyer.net/relevation/files/
 * remmina DEFAULT SF-DEFAULT
 * reptyr DEFAULT https://github.com/nelhage/reptyr/downloads
 * rest DEFAULT GNOME-DEFAULT
 * ReviewBoard DEFAULT http://downloads.reviewboard.org/releases/ReviewBoard/*/
 * rfkill DEFAULT http://wireless.kernel.org/download/rfkill/
 * rlwrap DEFAULT http://utopia.knoware.nl/~hlub/rlwrap/
 * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
 * rmol rmol-([0-9.]*)\.tar\.gz SF-DEFAULT
 * root-tail DEFAULT http://oldhome.schmorp.de/marc/data/
 * roundup DEFAULT PYPI-DEFAULT
 * routino DEFAULT http://www.routino.org/download/
 * roxterm DEFAULT SF-DEFAULT
 * rp-pppoe DEFAULT http://www.roaringpenguin.com/products/pppoe
 * rpl DEFAULT SF-DEFAULT
 * rpmlint DEFAULT http://rpmlint.zarb.org/download/
 * rpmorphan DEFAULT SF-DEFAULT
 * rrdtool rrdtool-([0-9\.]+).tar.gz http://oss.oetiker.ch/rrdtool/pub/
 * rst2pdf DEFAULT GOOGLE-DEFAULT
 * rsvndump DEFAULT SF-DEFAULT
 * rsync DEFAULT http://samba.org/ftp/rsync/
 * rsyslog DEFAULT http://www.rsyslog.com/download/stable-download/
 * rtmidi DEFAULT http://www.music.mcgill.ca/~gary/rtmidi/
 * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
 * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/
 * ruby ruby-(.*?)\.tar\.gz ftp://ftp.ruby-lang.org/pub/ruby/stable/
 * ruby-mysql mysql-ruby-(.*?).tar.gz http://tmtm.org/downloads/mysql/ruby/
 * rubygem-POpen4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-Platform RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ZenTest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-actionmailer RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-actionpack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activemodel RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activerecord RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activeresource RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-activesupport RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ammeter RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-arel RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-aws RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bacon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bcrypt-ruby RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bson RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bson_ext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-builder RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-bundler RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-coderay RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-commander RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rubygem-compass-960-plugin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-daemon_controller RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-database_cleaner RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-delayed_job RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-delorean RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-diff-lcs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-ditz RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-dynect_rest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-erubis RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-eventmachine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-excon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fakefs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fast_gettext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-file-tail RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fog RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-formatador RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-fssm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gem2rpm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-gettext_i18n_rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-haml-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-heroku RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-hike RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-i18n RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-i18n_data RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-introspection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-journey RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-kgio RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-linode RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-little-plugger RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-logging RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mail RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-map RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-metaclass RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-method_source RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-minitest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mocha RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multi_json RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multi_xml RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multipart RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-multipart-post RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-mustache RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-ldap RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-ping RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-scp RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-net-ssh-gateway RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-netrc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-oauth RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-openstack-compute RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pg RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-polyglot RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-pr_geohash RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-cache RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-mount RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-restful_submit RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rack-ssl RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rails_warden RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-railties RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-raindrops RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rake RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rbovirt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rdoc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-regin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rerun RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rhc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rsolr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-core RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-expectations RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-mocks RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-rspec-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-scruffy RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-session RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-shindo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-simple-navigation RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sinatra RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sqlite3 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-state_machine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-sup RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-test_declarative RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-term-ansicolor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-thin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-tilt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-trollop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-typhoeus RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-tzinfo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-uuidtools RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-warden RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-will_paginate RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rubygem-yard RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 * rygel DEFAULT GNOME-DEFAULT
 * s390utils s390-tools-([\d.]+?)\.html http://www.ibm.com/developerworks/linux/linux390/s390-tools.html
 * s3cmd DEFAULT SF-DEFAULT:s3tools
 * 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-bridge DEFAULT:scim-bridge SF-DEFAULT:scim
 * scim-fcitx DEFAULT:scim-fcitx SF-DEFAULT:scim
 * scim-m17n DEFAULT SF-DEFAULT:scim
 * scim-pinyin DEFAULT:scim-pinyin SF-DEFAULT:scim
 * scim-python DEFAULT GOOGLE-DEFAULT
 * scitools DEFAULT GOOGLE-DEFAULT
 * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
 * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
 * screen DEFAULT GNU-DEFAULT
 * SDL DEFAULT http://www.libsdl.org/download-1.2.php
 * 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
 * sendmail \bsendmail[.-]([\d.]+).tar ftp://ftp.sendmail.org/pub/sendmail/
 * sendxmpp DEFAULT http://sendxmpp.platon.sk/
 * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
 * sg3_utils DEFAULT http://sg.danny.cz/sg/sg3_utils.html
 * shadow-utils DEFAULT http://pkg-shadow.alioth.debian.org/releases/
 * sharutils DEFAULT GNU-DEFAULT
 * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
 * shorewall /pub/shorewall/\d+\.\d+/shorewall-(\d+\.\d+\.\d+)/releasenotes.txt http://www.shorewall.net/shorewall_index.htm
 * 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/
 * smp_utils DEFAULT http://sg.danny.cz/sg/smp_utils.html
 * 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
 * sombok ([0-9.]\.[0-9.]\.[0-9.].*)\.tar\.gz http://sourceforge.net/api/file/index/project-name/linefold/mtime/desc/limit/20/rss
 * sonata sonata-(.*?).tar.gz http://sonata.berlios.de/download.html
 * sonic-visualiser DEFAULT https://code.soundsoftware.ac.uk/projects/sonic-visualiser/files
 * soprano DEFAULT SF-DEFAULT
 * sound-juicer DEFAULT GNOME-DEFAULT
 * 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
 * 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
 * squid squid-([0-9]+\.[0-9]+\.[1-9][0-9.]*)\. ftp://ftp.squid-cache.org/pub/squid/
 * sshfp sshfp-(.*?).tar.gz ftp://ftp.xelerance.com/sshfp/
 * sshmenu DEFAULT SF-DEFAULT
 * ssmtp DEFAULT DEBIAN-DEFAULT
 * stardict DEFAULT GOOGLE-DEFAULT:stardict-3
 * 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/
 * svn2cl DEFAULT http://arthurdejong.org/svn2cl/downloads.html
 * 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
 * synapse DEFAULT LP-DEFAULT:synapse-project
 * 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
 * systemtap DEFAULT http://sourceware.org/systemtap/ftp/releases
 * 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
 * tclap DEFAULT SF-DEFAULT
 * tcllib DEFAULT SF-DEFAULT
 * tcsh DEFAULT http://ftp.funet.fi/pub/unix/shells/tcsh/
 * tcpdump DEFAULT http://www.tcpdump.org
 * techne techne-([0-9.]*?)\.tar\.gz http://download.savannah.gnu.org/releases/techne/
 * telepathy-mission-control DEFAULT http://telepathy.freedesktop.org/releases/telepathy-mission-control/
 * tellico tellico-(.*?)\.tar\.bz2 http://tellico-project.org/download
 * 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
 * testdisk \btestdisk-([\d.]+).tar http://www.cgsecurity.org/wiki/TestDisk_Download
 * texinfo DEFAULT GNU-DEFAULT
 * TeXmacs TeXmacs-(.*?)-src\.tar ftp://ftp.texmacs.org/pub/TeXmacs/targz/
 * texworks texworks-([.0-9]+)-r GOOGLE-DEFAULT
 * tftp DEFAULT:tftp-hpa http://www.kernel.org/pub/software/network/tftp/tftp-hpa/
 * thai-scalable-fonts fonts-tlwg-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-tlwg/
 * thai-arundina-fonts fonts-sipa-arundina-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-sipa-arundina/
 * 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/
 * tint DEFAULT http://code.google.com/p/tint2/downloads/list
 * tintin DEFAULT SF-DEFAULT
 * tla DEFAULT GNU-DEFAULT:gnu-arch
 * tmux DEFAULT SF-DEFAULT
 * tomboy DEFAULT GNOME-DEFAULT
 * tomcat DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-7/*/src/
 * tomcat5 DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-5/*/src/
 * tomcat6 DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-6/*/src/
 * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
 * toppler DEFAULT SF-DEFAULT
 * torque DEFAULT http://www.clusterresources.com/downloads/torque/
 * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
 * towhee DEFAULT SF-DEFAULT
 * trac-bazaar-plugin DEFAULT LP-DEFAULT:trac-bzr
 * trackballs 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
 * transmission-remote-gtk DEFAULT GOOGLE-DEFAULT
 * trash-cli DEFAULT PYPI-DEFAULT
 * tree tree-([0-9a-z.]+).tgz http://mama.indstate.edu/users/ice/tree/
 * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
 * tremulous DEFAULT SF-DEFAULT
 * tudu DEFAULT SF-DEFAULT
 * tulrich-tuffy-fonts <th[^>]*>[ ]*Tuffy[ ]*([^< ]*)[ ]*</th> http://tulrich.com/fonts/
 * tumbler DEFAULT http://git.xfce.org/apps/tumbler/
 * TurboGears DEFAULT http://www.turbogears.org/1.0/downloads/current/
 * TurboGears2 DEFAULT http://www.turbogears.org/2.1/downloads/current/
 * typespeed DEFAULT SF-DEFAULT
 * tzdata tzdata(.*?)\.tar\.gz ftp://munnari.oz.au/pub/
 * uboot-tools DEFAULT:u-boot ftp://ftp.denx.de/pub/u-boot/
 * uClibc DEFAULT http://uclibc.org/downloads/
 * ucommon DEFAULT http://www.gnutelephony.org/dist/tarballs/
 * udis86 DEFAULT SF-DEFAULT
 * udisks DEFAULT http://hal.freedesktop.org/releases/
 * udev DEFAULT http://ftp.kernel.org/pub/linux/utils/kernel/hotplug/
 * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
 * ufraw DEFAULT SF-DEFAULT
 * 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
 * unalz DEFAULT http://www.kippler.com/win/unalz/
 * uncrustify DEFAULT SF-DEFAULT
 * unicode-ucd ([0-9.]+)/ http://www.unicode.org/Public/zipped/
 * 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/
 * upower DEFAULT http://upower.freedesktop.org/releases/
 * 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
 * vacation vacation-(.*?).tar.gz SF-DEFAULT
 * vala DEFAULT GNOME-DEFAULT
 * valknut DEFAULT SF-DEFAULT:wxdcgui
 * vamp-plugin-sdk DEFAULT SF-DEFAULT:vamp
 * varconf DEFAULT SF-DEFAULT:worldforge
 * vdr DEFAULT ftp://ftp.tvdr.de/vdr/Developer/
 * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
 * vdr-femon DEFAULT http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/index.php
 * vdr-osdteletext DEFAULT http://projects.vdr-developer.org/projects/plg-osdteletext/files
 * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
 * vdr-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 DEFAULT 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
 * vmmlib DEFAULT SF-DEFAULT:vmmlib
 * vmpk DEFAULT SF-DEFAULT
 * 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 https://security.appspot.com/vsftpd.html
 * vttest DEFAULT ftp://invisible-island.net/vttest/
 * w3c-markup-validator validator-(\d.*?)\.t http://validator.w3.org/dist/
 * wdiff DEFAULT GNU-DEFAULT
 * wv ">([0-9]\.[0-9]\.[0-9])/</a> http://www.abisource.com/downloads/wv/
 * 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.org/
 * 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/
 * worker DEFAULT http://www.boomerangsworld.de/cms/worker/downloads/
 * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
 * wpa_supplicant DEFAULThttp://w1.fi/releases/
 * wp_tray ">([0-9.]+)</a> http://freshmeat.net/projects/wp_tray/
 * wqy-microhei-fonts DEFAULT:wqy-microhei SF-DEFAULT:wqy
 * wqy-zenhei-fonts DEFAULT:wqy-zenhei SF-DEFAULT:wqy
 * wxGTK DEFAULT http://www.wxwidgets.org/downloads/
 * x3270 DEFAULT:suite3270 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
 * Xaw3d DEFAULT:libXaw3d http://xorg.freedesktop.org/archive/individual/lib/
 * xbacklight DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xbean ([0-9]\.[0-9.]+)/ http://repo2.maven.org/maven2/org/apache/xbean/xbean/
 * xboard DEFAULT GNU-DEFAULT
 * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
 * 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 xine-lib-(1\.1\.[0-9.]+)\.tar\.xz 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
 * xml2 DEFAULT http://download.ofb.net/gale/
 * xmlrpc DEFAULT http://www.apache.org/dist/ws/xmlrpc/sources/
 * xmlstarlet DEFAULT SF-DEFAULT:xmlstar
 * xmltoman DEFAULT SF-DEFAULT
 * xmlunit DEFAULT SF-DEFAULT
 * xmms-modplug DEFAULT:modplugxmms SF-DEFAULT:modplug-xmms
 * xmobar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmoto DEFAULT http://download.tuxfamily.org/xmoto/xmoto/*/
 * xnoise DEFAULT https://github.com/shuerhaaken/xnoise-media-player/downloads
 * xorg-sgml-doctools DEFAULT http://xorg.freedesktop.org/archive/individual/doc/
 * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
 * xorg-x11-drv-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-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-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-nouveau AC_INIT\(\[xf86-video-nouveau\],\s+\[(.*?)\], http://cgit.freedesktop.org/nouveau/xf86-video-nouveau/tree/configure.ac
 * 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-s3virge xf86-video-s3virge-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-savage xf86-video-savage-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-siliconmotion xf86-video-siliconmotion-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sis xf86-video-sis-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sisusb xf86-video-sisusb-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-synaptics xf86-input-synaptics-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-tdfx xf86-video-tdfx-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-trident xf86-video-trident-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-v4l xf86-video-v4l-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vesa xf86-video-vesa-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmmouse xf86-input-vmmouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmware xf86-video-vmware-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-void xf86-input-void-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-voodoo xf86-video-voodoo-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-wacom xf86-input-wacom-(.*?)\.tar\.bz2 http://sf.net/projects/linuxwacom/files/
 * xorg-x11-server xorg-server-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/xserver/
 * xorg-x11-twm twm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-util-macros util-macros-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/util/
 * xorg-x11-xauth xauth-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xbitmaps xbitmaps-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/data
 * xorg-x11-xdm xdm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xfs xfs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xfwp xfwp-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xinit xinit-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xsm xsm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xtrans-devel xtrans-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/lib/
 * xosd DEFAULT SF-DEFAULT:libxosd
 * 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/
 * yad DEFAULT GOOGLE-DEFAULT
 * 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
 * ypbind DEFAULT:ypbind-mt http://www.linux-nis.org/download/ypbind-mt/
 * ypserv DEFAULT http://www.linux-nis.org/download/ypserv/
 * yp-tools DEFAULT http://www.linux-nis.org/download/yp-tools/
 * ytree DEFAULT http://www.han.de/~werner/ytree.html
 * z88dk DEFAULT SF-DEFAULT
 * zeroinstall-injector DEFAULT SF-DEFAULT:zero-install
 * zidrav DEFAULT:zidrav4unix SF-DEFAULT
 * zile DEFAULT GNU-DEFAULT
 * Zim zim-(.*?)\.tar\.gz http://zim-wiki.org/downloads/
 * zinnia DEFAULT SF-DEFAULT
 * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
 * znc DEFAULT SF-DEFAULT
 * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf


Package Owner Ignore List

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

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

Package Ignore List

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

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


Reason: it is released using daily snapshots:
* foomatic-db foomatic-db-(.*?[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
Impossible to track, they are formed by subpackages:
* xorg-x11-apps
* xorg-x11-font-utils
* xorg-x11-fonts
* xorg-x11-proto-devel
* xorg-x11-resutils
* xorg-x11-server-utils
* xorg-x11-utils
* xorg-x11-xkb-utils
Unplottable, fedora and upstream versions are incompatible.
* kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
Package 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
Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=722662#c2 ) :
* puppet
Remove shared-mime-info, I'm the upstream maintainer(Hadess)
* shared-mime-info DEFAULT http://people.freedesktop.org/~hadess/

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