From Fedora Project Wiki

Revision as of 22:43, 22 December 2010 by Kalev (talk | contribs) (→‎A - G: added cardpeek)

Fedora Upstream Release Monitoring

General Information

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

History

Michał Bentkowski wrote a software called FEver to track new upstream releases. Unluckily, he became unresponsive and the complete code of his software was lost. Currently a new tool is developed to fill the loss.

Software

The worked-on replacement for FEver 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.

URL Aliases

There are some URL aliases supported, that you can use instead of the normal URL. The "%s" formatstring is replace 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:

$ bin/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:

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

Regex Aliases

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

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

Bugzilla bugs by upstream-release-monitoring

OPEN bugs

CLOSED bugs

Feedback

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

Check My Package, please!

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

* PKGNAME URL
* xorg-x11-drv-nouveau http://nouveau.freedesktop.org
* ruby ftp://ftp.ruby-lang.org//pub/ruby/
* nmap http://nmap.org/dist/
* gnome-icon-theme http://ftp.gnome.org/pub/GNOME/sources/gnome-icon-theme/
* intltool http://ftp.gnome.org/pub/gnome/sources/intltool/
* gucharmap http://ftp.gnome.org/pub/GNOME/sources/gucharmap/
* geeqie http://sourceforge.net/projects/geeqie/files/

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)

* adf-accanthis-fonts
* ecolier-court-fonts
* gfs-ambrosia-fonts
* gfs-artemisia-fonts
* gfs-baskerville-fonts
* gfs-bodoni-classic-fonts
* gfs-bodoni-fonts
* gfs-complutum-fonts
* gfs-decker-fonts
* gfs-didot-classic-fonts
* gfs-didot-fonts
* gfs-eustace-fonts
* gfs-fleischman-fonts
* gfs-garaldus-fonts
* gfs-gazis-fonts
* gfs-jackson-fonts
* gfs-neohellenic-fonts
* gfs-nicefore-fonts
* gfs-olga-fonts
* gfs-porson-fonts
* gfs-pyrsos-fonts
* gfs-solomos-fonts
* gfs-theokritos-fonts
* google-droid-fonts
* senamirmir-washra-fonts
* sil-andika-fonts
* stix-fonts 
* xgridfit
* yanone-kaffeesatz-fonts

List Of Packages

A - G

 * a2ps DEFAULT GNU-DEFAULT
 * abcde DEFAULT DEBIAN-DEFAULT
 * abiword >([.0-9]+?)/< http://www.abisource.com/downloads/abiword/
 * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
 * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
 * acpid DEFAULT http://tedfelix.com/linux/acpid-netlink.html  
 * adjtimex DEFAULT DEBIAN-DEFAULT
 * adns DEFAULT GNU-DEFAULT
 * aircrack-ng aircrack-ng-([0-9][0-9.]*?).tar.gz http://download.aircrack-ng.org/
 * alltray DEFAULT https://edge.launchpad.net/alltray/old-maintenance
 * alsa-utils DEFAULT ftp://ftp.alsa-project.org/pub/utils/
 * alsa-lib DEFAULT ftp://ftp.alsa-project.org/pub/lib/
 * alsa-tools DEFAULT ftp://ftp.alsa-project.org/pub/tools/
 * alsa-firmware DEFAULT ftp://ftp.alsa-project.org/pub/firmware/
 * alsa-plugins DEFAULT ftp://ftp.alsa-project.org/pub/plugins/
 * alsa-oss DEFAULT ftp://ftp.alsa-project.org/pub/oss-lib/
 * altermime DEFAULT http://www.pldaniels.com/altermime/
 * anjuta anjuta-([0-9.]*).tar.bz2 http://ftp.acc.umu.se/pub/GNOME/sources/anjuta/2.25/
 * anki DEFAULT GOOGLE-DEFAULT
 * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
 * antlrworks DEFAULT http://www.antlr.org/download/
 * apache-commons-beanutils DEFAULT:commons-beanutils http://www.apache.org/dist/commons/beanutils/source/
 * apache-commons-cli DEFAULT:commons-cli http://www.apache.org/dist/commons/cli/source/
 * apache-commons-codec DEFAULT:commons-codec http://www.apache.org/dist/commons/codec/source/
 * apache-commons-collections DEFAULT:commons-collections http://www.apache.org/dist/commons/collections/source/
 * apache-commons-compress DEFAULT:commons-compress http://www.apache.org/dist/commons/compress/source/
 * apache-commons-configuration DEFAULT:commons-configuration http://www.apache.org/dist/commons/configuration/source/
 * apache-commons-daemon DEFAULT:commons-daemon http://www.apache.org/dist/commons/daemon/source/
 * apache-commons-dbcp DEFAULT:commons-dbcp http://www.apache.org/dist/commons/dbcp/source/
 * apache-commons-digester DEFAULT:commons-digester http://www.apache.org/dist/commons/digester/source/
 * apache-commons-discovery DEFAULT:commons-discovery http://www.apache.org/dist/commons/discovery/source/
 * apache-commons-el DEFAULT:commons-el http://www.apache.org/dist/commons/el/source/
 * apache-commons-exec DEFAULT:commons-exec http://www.apache.org/dist/commons/exec/source/
 * apache-commons-fileupload DEFAULT:commons-fileupload http://www.apache.org/dist/commons/fileupload/source/
 * apache-commons-io DEFAULT:commons-io http://www.apache.org/dist/commons/io/source/
 * apache-commons-jexl DEFAULT:commons-jexl http://www.apache.org/dist/commons/jexl/source/
 * apache-commons-jxpath DEFAULT:commons-jxpath http://www.apache.org/dist/commons/jxpath/source/
 * apache-commons-lang DEFAULT:commons-lang http://www.apache.org/dist/commons/lang/source/
 * apache-commons-launcher DEFAULT:commons-launcher http://www.apache.org/dist/commons/launcher/source/
 * apache-commons-logging DEFAULT:commons-logging http://www.apache.org/dist/commons/logging/source/
 * apache-commons-math DEFAULT:commons-math http://www.apache.org/dist/commons/math/source/
 * apache-commons-modeler DEFAULT:commons-modeler http://www.apache.org/dist/commons/modeler/source/
 * apache-commons-net DEFAULT:commons-net http://www.apache.org/dist/commons/net/source/
 * apache-commons-parent commons-parent-(\d+)[^-] http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/
 * apache-commons-pool DEFAULT:commons-pool http://www.apache.org/dist/commons/pool/source/
 * apache-commons-validator DEFAULT:commons-validator http://www.apache.org/dist/commons/validator/source/
 * 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
 * aria2 DEFAULT SF-DEFAULT
 * aspell DEFAULT GNU-DEFAULT
 * 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-gl aspell6-gl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gl/
 * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
 * atk atk-html-(.*?)\.tar\.gz http://library.gnome.org/devel/atk/
 * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
 * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
 * audacious DEFAULT http://audacious-media-player.org/downloads
 * auto-nng auto-nng.v(.*?).tar.gz http://www.auto-nng.org/files/downloads/
 * autogen DEFAULT GNU-DEFAULT
 * autoconf DEFAULT GNU-DEFAULT
 * automake DEFAULT GNU-DEFAULT
 * awstats awstats-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=13764&package_id=11481
 * barcode DEFAULT GNU-DEFAULT
 * bash DEFAULT GNU-DEFAULT
 * bc DEFAULT GNU-DEFAULT
 * bcrypt DEFAULT SF-DEFAULT
 * beep beep-([0-9\.]+).tar.gz http://www.johnath.com/beep/
 * bibus DEFAULT SF-DEFAULT:bibus-biblio
 * bigloo Current version is <font color="red">(.*?)</font> http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html
 * binutils binutils-(.*?\.0\.[0-9.]*?)\.tar\. http://www.kernel.org/pub/linux/devel/binutils/
 * bison DEFAULT GNU-DEFAULT
 * bitstream-vera-fonts DEFAULT:ttf-bitstream-vera http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/
 * 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
 * bluez DEFAULT http://www.kernel.org/pub/linux/bluetooth/
 * bodr DEFAULT SF-DEFAULT
 * bouml bouml_(.*?).tar.gz http://bouml.free.fr/download.html
 * bouml-doc doc(.*?).tar.gz http://bouml.free.fr/documentation.html
 * bouncycastle (?i)Java\s+Release\s+([\d.]+) http://www.bouncycastle.org/
 * bridge-utils DEFAULT SF-DEFAULT:bridge
 * bti bti-(.*?).tar.bz2 http://www.kernel.org/pub/linux/kernel/people/gregkh/bti/
 * btrfs-progs btrfs-progs-(.*?).tar.bz2 http://www.kernel.org/pub/linux/kernel/people/mason/btrfs/
 * busybox  busybox-(1\.17\..*?)\.tar\.bz2 http://www.busybox.net/downloads/
 * byacc DEFAULT ftp://invisible-island.net/byacc/
 * bygfoot DEFAULT SF-DEFAULT
 * byobu DEFAULT https://launchpad.net/byobu/+download
 * bzr DEFAULT https://launchpad.net/bzr/+download
 * bzrtools bzrtools-(.*?).tar.gz http://bazaar-vcs.org/BzrTools
 * c2050 c2050-(.*?).tar.gz http://www.prato.linux.it/~mnencia/lexmark2050/files/
 * cairo DEFAULT http://cairographics.org/releases/
 * calc DEFAULT GNU-DEFAULT
 * cardpeek DEFAULT GOOGLE-DEFAULT
 * ccache DEFAULT http://samba.org/ftp/ccache/
 * CCfits CCfits-([0-9].*?).tar.gz 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/
 * cfengine DEFAULT GNU-DEFAULT
 * cflow DEFAULT GNU-DEFAULT
 * CGAL CGAL-([0-9.]*)\.tar.xz https://gforge.inria.fr/frs/?group_id=52
 * checkgmail DEFAULT SF-DEFAULT
 * chemical-mime-data DEFAULT SF-DEFAULT:chemical-mime
 * chemtool chemtool-([.0-9]*?).tar.gz http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
 * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
 * clutter DEFAULT http://source.clutter-project.org/sources/clutter/1.4/
 * cmake DEFAULT http://www.cmake.org/files/v2.8/
 * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd
 * coccinelle DEFAULT http://coccinelle.lip6.fr/download.php
 * colordiff DEFAULT http://colordiff.sourceforge.net/
 * compiz >([\d.]+)< http://releases.compiz.org/
 * conduit conduit-(.*?)\.tar\.gz http://ftp.gnome.org/pub/GNOME/sources/conduit/0.3/
 * coreutils DEFAULT GNU-DEFAULT
 * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
 * cowsay cowsay-(.*?).tar.gz http://www.nog.net/~tony/warez/cowsay.shtml
 * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
 * cpl cpl-(.*?).tar.gz http://www.eso.org/sci/data-processing/software/cpl/download.html
 * cpio DEFAULT GNU-DEFAULT
 * cpphs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cppi DEFAULT GNU-DEFAULT
 * cppcheck DEFAULT SF-DEFAULT
 * cproto DEFAULT ftp://invisible-island.net/cproto/
 * crda DEFAULT http://wireless.kernel.org/download/crda/
 * crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
 * crossvc crossvc-(.*?)\-generic-src\.tgz http://crossvc.com/index.php?menu_id=5&lang=en
 * cscope DEFAULT SF-DEFAULT
 * cssed DEFAULT SF-DEFAULT
 * cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
 * ctorrent ctorrent-dnh(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
 * cups cups-(\d\.\d\.\d)-source\.tar\.bz2 http://www.cups.org/software.php
 * curl DEFAULT http://curl.haxx.se/download/
 * cvs >(\d+(?:\.\d+)+)/< http://ftp.gnu.org/non-gnu/cvs/source/stable/
 * cvs2cl Revision:\s*([^\s$]+) http://www.red-bean.com/cvs2cl/cvs2cl.pl
 * cvsps DEFAULT http://www.cobite.com/cvsps/
 * cyphesis DEFAULT SF-DEFAULT:worldforge
 * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * darktable DEFAULT SF-DEFAULT
 * db4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technetwork/database/berkeleydb/downloads/index-082944.html
 * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
 * dblatex DEFAULT SF-DEFAULT
 * dclib DEFAULT SF-DEFAULT:wxdcgui
 * ddclient DEFAULT SF-DEFAULT
 * ddd DEFAULT GNU-DEFAULT
 * ddrescue DEFAULT GNU-DEFAULT
 * debootstrap DEFAULT DEBIAN-DEFAULT
 * decibel-audio-player decibel-audio-player-([0-9]+\..+?).tar.gz http://decibel.silent-blade.org/index.php?n=Main.Download
 * deja-dup DEFAULT https://launchpad.net/deja-dup/+download
 * dejagnu DEFAULT GNU-DEFAULT
 * dejavu-fonts DEFAULT SF-DEFAULT:dejavu
 * 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/
 * dialog DEFAULT ftp://invisible-island.net/dialog/
 * diction DEFAULT GNU-DEFAULT
 * diffstat DEFAULT ftp://invisible-island.net/diffstat/
 * diffutils DEFAULT GNU-DEFAULT
 * digikam DEFAULT SF-DEFAULT
 * directfb DEFAULT:DirectFB http://www.directfb.org/index.php?path=Main/Downloads
 * dirmngr DEFAULT ftp://ftp.gnupg.org/gcrypt/dirmngr/
 * dkms DEFAULT http://linux.dell.com/dkms/
 * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
 * dopewars DEFAULT SF-DEFAULT
 * dos2unix DEFAULT http://www.xs4all.nl/~waterlan/dos2unix.html
 * dosbox DEFAULT SF-DEFAULT
 * dosfstools DEFAULT http://www.daniel-baumann.ch/software/dosfstools/
 * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
 * dot2tex DEFAULT GOOGLE-DEFAULT
 * drraw DEFAULT http://web.taranis.org/drraw/dist
 * ds9 source/ds9\.?(.*?).tar.gz http://hea-www.harvard.edu/RD/ds9/
 * dstat latest <b>(.*?)<\/b> tarball http://dag.wieers.com/home-made/dstat/
 * 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
 * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html
 * e2fsprogs DEFAULT SF-DEFAULT
 * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
 * eclipse >([0-9]\.[0-9])</a http://download.eclipse.org/eclipse/downloads/
 * ed DEFAULT GNU-DEFAULT
 * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
 * efibootmgr DEFAULT http://linux.dell.com/efibootmgr/
 * efte DEFAULT SF-DEFAULT
 * eina DEFAULT https://launchpad.net/eina/+download
 * 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 ibus-el-(.*?)\.tar\.gz https://launchpad.net/ibus.el/
 * 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
 * enscript DEFAULT GNU-DEFAULT
 * epdfview epdfview-([0-9\.]+)\.tar\.bz2 http://trac.emma-soft.com/epdfview/wiki/Download
 * epydoc DEFAULT SF-DEFAULT
 * eris DEFAULT SF-DEFAULT:worldforge
 * esound DEFAULT http://ftp.gnome.org/pub/gnome/sources/esound/0.2/
 * etckeeper DEFAULT DEBIAN-DEFAULT
 * ethtool DEFAULT http://ftp.kernel.org/pub/software/network/ethtool/
 * etoys DEFAULT http://download.sugarlabs.org/sources/sucrose/glucose/etoys/
 * exaile DEFAULT http://www.exaile.org/downloads
 * exempi exempi-([0-9\.]*?)\.tar.gz http://libopenraw.freedesktop.org/download/
 * exim DEFAULT ftp://ftp.exim.org/pub/exim/exim4/
 * expat DEFAULT SF-DEFAULT
 * ext3grep DEFAULT GOOGLE-DEFAULT
 * Falcon Falcon-([0-9\.]*)\.t.*gz http://falconpl.org/project_dl/_official_rel/
 * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
 * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
 * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
 * fetchlog DEFAULT SF-DEFAULT
 * fetchmail DEFAULT http://download.berlios.de/fetchmail/
 * ffsb DEFAULT SF-DEFAULT
 * fftw fftw-([0-9\.]*?).tar.gz http://www.fftw.org/download.html
 * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
 * file DEFAULT ftp://ftp.astron.com/pub/file/
 * findutils DEFAULT GNU-DEFAULT
 * firebird Firebird-(.*?)-[0-9]\.tar\.bz2 SF-DEFAULT
 * firehol DEFAULT SF-DEFAULT
 * flac DEFAULT SF-DEFAULT
 * flex DEFAULT SF-DEFAULT
 * fontconfig DEFAULT http://www.fontconfig.org/release/ 
 * foomatic foomatic-db-engine-(.*?\.[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
 * fpc The latest release is <b>([\d.]+)</b> http://www.freepascal.org/download.var
 * freecol DEFAULT SF-DEFAULT
 * freedink DEFAULT GNU-DEFAULT
 * freedroidrpg DEFAULT SF-DEFAULT:freedroid
 * freefem++ freefem\+\+-(.*?).tar.gz http://www.freefem.org/ff++/ftp/
 * freeipmi DEFAULT GNU-DEFAULT
 * freenx-server DEFAULT http://download.berlios.de/freenx/
 * freetype DEFAULT SF-DEFAULT
 * fs_mark DEFAULT SF-DEFAULT:fsmark
 * f-spot DEFAULT http://ftp.gnome.org/pub/gnome/sources/f-spot/0.6/
 * 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
 * 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
 * gausssum DEFAULT:GaussSum SF-DEFAULT
 * gcin gcin-([0-9\.]*?).tar.bz2 http://cle.linux.org.tw/gcin/download/
 * gcl DEFAULT GNU-DEFAULT
 * gcompris DEFAULT GNU-DEFAULT
 * gdbm DEFAULT GNU-DEFAULT
 * gdome2 DEFAULT http://gdome2.cs.unibo.it/
 * gengetopt DEFAULT GNU-DEFAULT
 * 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-attoparsec HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-binary HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-Boolean HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-bytestring-trie HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cairo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-cmdargs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-colour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-csv HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dataenc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-failure 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-hashed-storage HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskeline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskell-src-exts HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hinotify HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-hslogger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-libmpd HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-MissingH HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-mmap HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-neither HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-pango HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tagsoup HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-tar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-terminfo HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-text HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-uniplate HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-utf8-string HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11 HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-X11-xft HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-xmonad-contrib HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://ghostscript.com/releases/
 * 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/
 * git-cola cola-(.*?).tar.gz http://cola.tuxfamily.org/releases/
 * gkrellm DEFAULT http://www.gkrellm.net/
 * gkrellm-freq DEFAULT:gkrellm-gkfreq SF-DEFAULT:gkrellm-gkfreq
 * gkrellm-top DEFAULT:gkrelltop SF-DEFAULT:gkrelltop
 * gkrellm-volume DEFAULT http://gkrellm.luon.net/volume.php
 * glade3 Glade\s+(\S+).*released http://glade.gnome.org/
 * 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 https://launchpad.net/jalali-calendar/+download
 * gnome-applet-netspeed netspeed_applet-(.*?).tar.gz http://www.wh-hms.uni-ulm.de/~mfcn/netspeed/packages/
 * gnome-applet-timer DEFAULT:timer-applet SF-DEFAULT:timerapplet
 * gnome-gmail DEFAULT SF-DEFAULT
 * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
 * gnome-subtitles DEFAULT SF-DEFAULT
 * gnomeradio gnomeradio-(.*?).tar.gz http://www.wh-hms.uni-ulm.de/~mfcn/gnomeradio/packages/
 * gnote /browse/gnote/tag/\?id=([0-9.]+) http://git.gnome.org/cgit/gnote/refs/
 * gnubik DEFAULT GNU-DEFAULT
 * gnucap DEFAULT GNU-DEFAULT
 * gnuchess DEFAULT GNU-DEFAULT:chess
 * gnugo gnugo-(.*?)\.tar\.gz GNU-DEFAULT
 * gnu-smalltalk DEFAULT:smalltalk GNU-DEFAULT:smalltalk
 * gnubik DEFAULT GNU-DEFAULT
 * gnugo DEFAULT GNU-DEFAULT
 * gnujump DEFAULT GNU-DEFAULT
 * gnumeric DEFAULT http://projects.gnome.org/gnumeric/downloads.shtml
 * gnupg gnupg-(1.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnupg2 gnupg-(2.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnuplot DEFAULT SF-DEFAULT
 * gnuradio DEFAULT GNU-DEFAULT
 * gnurobots DEFAULT GNU-DEFAULT
 * gnustep-make DEFAULT ftp://ftp.gnustep.org/pub/gnustep/core/
 * gnutls DEFAULT GNU-DEFAULT
 * gobject-introspection DEFAULT http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/0.9/
 * goffice DEFAULT http://ftp.gnome.org/pub/GNOME/sources/goffice/0.8/
 * googlecl DEFAULT GOOGLE-DEFAULT
 * google-gadgets DEFAULT:google-gadgets-for-linux GOOGLE-DEFAULT:google-gadgets-for-linux
 * google-perftools DEFAULT GOOGLE-DEFAULT
 * gparted DEFAULT SF-DEFAULT
 * gperf DEFAULT GNU-DEFAULT
 * gpredict DEFAULT SF-DEFAULT
 * gprolog DEFAULT GNU-DEFAULT
 * gpscorrelate DEFAULT http://www.freefoote.com/linux_gpscorr.html
 * gquilt DEFAULT SF-DEFAULT
 * graphviz stable/SOURCES/graphviz-([0-9.]*?)\.tar http://www.graphviz.org/Download_source.php
 * grep DEFAULT GNU-DEFAULT
 * groff DEFAULT GNU-DEFAULT
 * gromacs DEFAULT ftp://ftp.gromacs.org/pub/gromacs/
 * groonga DEFAULT http://groonga.org/download/
 * grub2 DEFAULT:grub ftp://alpha.gnu.org/gnu/grub/
 * gscan2pdf DEFAULT SF-DEFAULT
 * gstreamer DEFAULT http://gstreamer.freedesktop.org/src/gstreamer/
 * gsl DEFAULT GNU-DEFAULT
 * gthumb DEFAULT http://download.gnome.org/sources/gthumb/2.12/
 * gtk-murrine-engine DEFAULT:murrine http://ftp.gnome.org/pub/GNOME/sources/murrine/0.98/
 * gtraffic DEFAULT http://fsckyou.info/gtraffic/
 * gtranslator DEFAULT SF-DEFAULT
 * gtypist DEFAULT GNU-DEFAULT
 * guile DEFAULT GNU-DEFAULT
 * guilt DEFAULT http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/
 * gutenprint Gutenprint (.*?) is released http://gimp-print.sourceforge.net/
 * gv DEFAULT GNU-DEFAULT
 * gwsmhg DEFAULT SF-DEFAULT
 * gxine DEFAULT SF-DEFAULT:xine
 * gxmessage DEFAULT GNU-DEFAULT
 * gyachi DEFAULT SF-DEFAULT
 * gzip DEFAULT GNU-DEFAULT

H - M

 * hal DEFAULT http://hal.freedesktop.org/releases/
 * hamlib DEFAULT SF-DEFAULT
 * hdparm DEFAULT SF-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * help2man DEFAULT GNU-DEFAULT
 * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
 * horde DEFAULT ftp://ftp.horde.org/pub/horde/
 * hostapd hostapd-(0\.7\..*?)\.tar\.gz http://w1.fi/releases/
 * hping3 DEFAULT http://www.hping.org/download.php
 * hplip DEFAULT SF-DEFAULT
 * html-xml-utils DEFAULT http://www.w3.org/Tools/HTML-XML-utils/
 * 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
 * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
 * icon-naming-utils DEFAULT http://tango.freedesktop.org/releases/
 * id3v2 DEFAULT SF-DEFAULT
 * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
 * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
 * ikarus DEFAULT http://ikarus-scheme.org/
 * ikiwiki DEFAULT DEBIAN-DEFAULT
 * ImageMagick ImageMagick-([0-9]\.[0-9]\.[0-9]-.*?[0-9]).tar.bz2 ftp://ftp.imagemagick.org/pub/ImageMagick/
 * imake DEFAULT http://xorg.freedesktop.org/archive/individual/util/
 * imp DEFAULT:imp-h3 ftp://ftp.horde.org/pub/imp/
 * impressive DEFAULT SF-DEFAULT:Impressive
 * indent DEFAULT GNU-DEFAULT
 * inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/
 * innotop DEFAULT GOOGLE-DEFAULT
 * iproute DEFAULT:iproute2 http://devresources.linuxfoundation.org/dev/iproute2/download/
 * iptables DEFAULT http://www.iptables.org/projects/iptables/files/
 * 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
 * iso-codes DEFAULT ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/
 * isync DEFAULT SF-DEFAULT
 * iw DEFAULT http://wireless.kernel.org/download/iw/
 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
 * java-gnome DEFAULT http://ftp.gnome.org/pub/gnome/sources/java-gnome/4.0/
 * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
 * jing-trang DEFAULT:jing GOOGLE-DEFAULT
 * jline DEFAULT SF-DEFAULT
 * jmol jmol-(.*?)-full.tar.gz https://sourceforge.net/projects/jmol/files/Jmol/
 * joda-time DEFAULT SF-DEFAULT
 * joe DEFAULT SF-DEFAULT:joe-editor
 * john DEFAULT http://www.openwall.com/john/
 * joni ([0-9]+\.[0-9\.]+)/ http://svn.codehaus.org/jruby/joni/tags/
 * jvyamlb DEFAULT GOOGLE-DEFAULT
 * jwhois DEFAULT GNU-DEFAULT
 * k3b DEFAULT SF-DEFAULT
 * kadu kadu-(.*?)\.tar\.bz2 http://www.kadu.net/download/unstable/
 * kaffeine DEFAULT SF-DEFAULT
 * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
 * kawa DEFAULT GNU-DEFAULT
 * kbd DEFAULT http://www.kernel.org/pub/linux/utils/kbd/
 * kbluetooth (?i)version\s+([\d.]+) http://kde-apps.org/content/show.php/kbluetooth?content=112110
 * kchmviewer DEFAULT SF-DEFAULT
 * kcm-gtk DEFAULT https://launchpad.net/kcm-gtk
 * kdesvn DEFAULT http://kdesvn.alwins-world.de/downloads/
 * kdiff3 DEFAULT SF-DEFAULT
 * keepalived DEFAULT http://www.keepalived.org/software/
 * keychain DEFAULT http://www.funtoo.org/en/security/keychain/intro/
 * kid3 DEFAULT SF-DEFAULT
 * kile Latest available stable version for KDE3: <a href="download.php">(.*?)</a>\. http://kile.sourceforge.net/
 * kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
 * 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
 * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
 * less DEFAULT GNU-DEFAULT
 * 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
 * libbs2b DEFAULT SF-DEFAULT:bs2b
 * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
 * libcdio DEFAULT GNU-DEFAULT
 * libconfig DEFAULT http://www.hyperrealm.com/libconfig/
 * libdb DB (5[0-9.]*).tar.gz http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html
 * libdc1394 DEFAULT SF-DEFAULT
 * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
 * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
 * libEMF DEFAULT SF-DEFAULT:pstoedit
 * libextractor DEFAULT GNU-DEFAULT
 * libfontenc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/index.html
 * libFS DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libgadu w wersji ([0-9\.]*) http://toxygen.net/libgadu/
 * libgdl DEFAULT:gdl http://ftp.gnome.org/pub/GNOME/sources/gdl/2.31/
 * libgee Libgee (.*?) released http://live.gnome.org/Libgee
 * 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
 * libjpeg jpegsrc.v(.*?[az])\.tar\. http://www.ijg.org/files/
 * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
 * libmatheval DEFAULT GNU-DEFAULT
 * libmatroska libmatroska-([.0-9]*?).tar.bz2 http://dl.matroska.org/downloads/libmatroska/
 * libmicrohttpd DEFAULT GNU-DEFAULT
 * libmodelfile DEFAULT SF-DEFAULT:worldforge
 * libmodplug DEFAULT SF-DEFAULT:modplug-xmms
 * libmpc DEFAULT:mpc http://www.multiprecision.org/index.php?prog=mpc&page=download
 * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
 * libpcap DEFAULT http://www.tcpdump.org/release/
 * libpciaccess DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libpng DEFAULT ftp://ftp.simplesystems.org/pub/libpng/png/src/
 * libraw1394 DEFAULT http://www.kernel.org/pub/linux/libs/ieee1394/
 * libsamplerate DEFAULT http://www.mega-nerd.com/SRC/download.html
 * libsigsegv DEFAULT GNU-DEFAULT
 * libSM DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libtasn1 DEFAULT ftp://ftp.gnutls.org/pub/gnutls/libtasn1/
 * libtlen DEFAULT SF-DEFAULT:tleenx
 * libtool DEFAULT GNU-DEFAULT
 * libtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
 * libunicap DEFAULT http://unicap-imaging.org/download.htm
 * libunistring DEFAULT GNU-DEFAULT
 * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
 * libusb1 DEFAULT:libusb SF-DEFAULT:libusb
 * libutempter libutempter-(.*?)\.tar ftp://ftp.altlinux.org/pub/people/ldv/utempter
 * libwfut DEFAULT SF-DEFAULT:worldforge
 * libX11 DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXau DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXaw DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxcb DEFAULT http://xcb.freedesktop.org/dist/
 * libXcomposite DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXcursor DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXdamage DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxdg-basedir libxdg-basedir-([0-9\.]+)\.tar\.gz http://n.ethz.ch/~nevillm/download/libxdg-basedir/
 * libXdmcp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXevie DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXext DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfixes DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfontcache DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfont DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXft DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXi DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXinerama DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxkbfile DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxml2 DEFAULT ftp://xmlsoft.org/libxml2/ 
 * libXmu DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXpm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrandr DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrender DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXres DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXScrnSaver DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXt DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXTrap DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXtst DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXv DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXvMC DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86dga DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86misc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86vm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libyubikey DEFAULT GOOGLE-DEFAULT:yubico-c
 * lightning DEFAULT GNU-DEFAULT
 * lighttpd DEFAULT http://download.lighttpd.net/lighttpd/releases-1.4.x/
 * linbox DEFAULT http://www.linalg.org/download.html
 * lingot DEFAULT http://savannah.nongnu.org/files/?group=lingot
 * logserial DEFAULT http://www.ibiblio.org/pub/Linux/system/serial/
 * lrzip DEFAULT http://lrzip.kolivas.org/
 * lsnipes DEFAULT http://www.ugcs.caltech.edu/~boultonj/snipes/
 * lsof DEFAULT ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
 * lua-filesystem DEFAULT:luafilesystem http://luaforge.net/frs/?group_id=66
 * luma DEFAULT SF-DEFAULT
 * lxsplit DEFAULT SF-DEFAULT
 * lzip DEFAULT http://download.savannah.gnu.org/releases/lzip/
 * lzo DEFAULT http://www.oberhumer.com/opensource/lzo/download/
 * m17n-db DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 * m17n-contrib DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 * m17n-lib DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 * m4 DEFAULT GNU-DEFAULT
 * macchanger DEFAULT GNU-DEFAULT
 * madwimax DEFAULT GOOGLE-DEFAULT
 * mailman DEFAULT GNU-DEFAULT
 * mailx DEFAULT SF-DEFAULT:heirloom
 * make DEFAULT GNU-DEFAULT
 * manaworld DEFAULT:tmw SF-DEFAULT:themanaworld
 * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
 * man-pages DEFAULT http://www.kernel.org/pub/linux/docs/man-pages/
 * maven-checkstyle-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-checkstyle-plugin/
 * maximus DEFAULT https://launchpad.net/maximus
 * mawk DEFAULT ftp://invisible-island.net/mawk/
 * mc DEFAULT http://www.midnight-commander.org/downloads
 * mdadm DEFAULT http://www.kernel.org/pub/linux/utils/raid/mdadm/
 * mdk DIR-LISTING-DEFAULT GNU-DEFAULT
 * mercator DEFAULT SF-DEFAULT:worldforge
 * mercurial DEFAULT http://mercurial.selenic.com/release/
 * mesa DEFAULT:MesaLib ftp://ftp.freedesktop.org/pub/mesa/current/
 * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
 * mingw32-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
 * mingw32-libp11 DEFAULT:libp11 http://www.opensc-project.org/files/libp11/
 * mingw32-nsis DEFAULT:nsis http://nsis.sourceforge.net/Download
 * mingw32-opensc DEFAULT:opensc http://www.opensc-project.org/files/opensc/
 * Miro [Mm]iro-(.*?)\.tar\. http://ftp.osuosl.org/pub/pculture.org/miro/src/
 * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
 * mod_suphp DEFAULT:suphp http://www.suphp.org/Home.html
 * mod_wsgi DEFAULT GOOGLE-DEFAULT:modwsgi
 * modplugtools DEFAULT SF-DEFAULT:modplug-xmms
 * module-init-tools DEFAULT http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
 * moe DEFAULT GNU-DEFAULT
 * mojomojo DEFAULT:MojoMojo CPAN-DEFAULT:MojoMojo
 * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
 * 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
 * mrbs DEFAULT SF-DEFAULT
 * mrepo DEFAULT http://dag.wieers.com/home-made/mrepo/
 * 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
 * museek+ DEFAULT SF-DEFAULT:museek-plus
 * mutt DEFAULT ftp://ftp.mutt.org/mutt/
 * mysqltuner tarball/v([\w.-]+) http://github.com/rackerhacker/MySQLTuner-perl/downloads
 * mysql-connector-java DEFAULT http://dev.mysql.com/downloads/connector/j/

N - P

 * nano DEFAULT GNU-DEFAULT
 * nasm DEFAULT http://www.nasm.us/pub/nasm/releasebuilds/
 * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
 * ncurses DEFAULT GNU-DEFAULT
 * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
 * netbeans <option value="([0-9]\.[0-9])"> http://www.netbeans.info/downloads/dev.php
 * netmask DEFAULT DEBIAN-DEFAULT
 * netmonitor DEFAULT SF-DEFAULT
 * netpbm DEFAULT SF-DEFAULT
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nfs-utils DEFAULT SF-DEFAULT:nfs
 * ntfsprogs DEFAULT SF-DEFAULT:linux-ntfs
 * nget nget-([^+%& ]*?).tar.gz SF-DEFAULT
 * nginx nginx-(0\.8.*?)\.tar\.gz http://nginx.org/download/
 * nickle DEFAULT http://nickle.org/release/
 * nicotine+ DEFAULT SF-DEFAULT:nicotine-plus
 * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/
 * nted nted-([0-9.]+).tar.gz http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/sources/
 * ntfs-3g >ntfs-3g-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
 * numactl DEFAULT ftp://oss.sgi.com/projects/libnuma/download
 * nx nx-X11-([\d.]+) http://www.nomachine.com/sources.php
 * obexftp DEFAULT SF-DEFAULT:openobex
 * obexd DEFAULT http://www.kernel.org/pub/linux/bluetooth/
 * ocrad DEFAULT GNU-DEFAULT
 * octave DEFAULT ftp://ftp.octave.org/pub/octave
 * octave-forge DEFAULT:octave-forge-bundle SF-DEFAULT:octave
 * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
 * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
 * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
 * opencdk opencdk-(.*?).tar.gz ftp://ftp.gnutls.org/pub/gnutls/opencdk/
 * opengrok DEFAULT http://opensolaris.org/os/project/opengrok/
 * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
 * openobex DEFAULT http://www.kernel.org/pub/linux/bluetooth/
 * opensc DEFAULT http://www.opensc-project.org/files/opensc/
 * opensp DEFAULT:OpenSP SF-DEFAULT:openjade
 * openssh DEFAULT http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/
 * openssl openssl-(.*?[a-z])\.tar\.gz http://www.openssl.org/source/
 * openswan DEFAULT ftp://ftp.openswan.org/openswan/
 * openvpn DEFAULT http://www.openvpn.net/release/
 * optipng DEFAULT SF-DEFAULT
 * orbited DEFAULT:orbited PYPI-DEFAULT
 * orc DEFAULT http://code.entropywave.com/download/orc/
 * osmo DEFAULT SF-DEFAULT:osmo-pim
 * osslsigncode DEFAULT SF-DEFAULT
 * ovaldi DEFAULT SF-DEFAULT
 * p7zip p7zip_([0-9.]*?)_src_all.tar.bz2 SF-DEFAULT
 * pam DEFAULT http://www.us.kernel.org/pub/linux/libs/pam/library/
 * pam_mount DEFAULT SF-DEFAULT:pam-mount
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * 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/
 * pciutils DEFAULT ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
 * pcmciautils DEFAULT http://www.kernel.org/pub/linux/utils/kernel/pcmcia/
 * pcre DEFAULT ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
 * pdfchain DEFAULT SF-DEFAULT
 * pdfjam <strong>(\d+\.\d+)</strong> http://go.warwick.ac.uk/pdfjam
 * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
 * pem DEFAULT GNU-DEFAULT
 * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
 * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
 * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-Permute DEFAULT:Algorithm-Permute CPAN-DEFAULT
 * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
 * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
 * perl-Archive-Tar DEFAULT:Archive-Tar CPAN-DEFAULT
 * perl-Archive-Zip DEFAULT:Archive-Zip CPAN-DEFAULT
 * perl-Authen-Captcha DEFAULT:Authen-Captcha CPAN-DEFAULT
 * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
 * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
 * perl-bioperl BioPerl-([0-9].*?)\.tar\.bz2 http://bioperl.org/DIST/
 * perl-bioperl-run BioPerl-[r|R]un-([0-9].*?)\.tar\.bz2 http://bioperl.org/DIST/
 * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
 * perl-Business-ISBN DEFAULT:Business-ISBN CPAN-DEFAULT
 * perl-Business-ISBN-Data DEFAULT:Business-ISBN-Data CPAN-DEFAULT
 * perl-Capture-Tiny DEFAULT:Capture-Tiny CPAN-DEFAULT
 * perl-Carp-Clan DEFAULT:Carp-Clan CPAN-DEFAULT
 * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
 * perl-Class-ISA DEFAULT:Class-ISA CPAN-DEFAULT
 * perl-Class-Unload DEFAULT:Class-Unload CPAN-DEFAULT
 * perl-Class-XSAccessor DEFAULT:Class-XSAccessor CPAN-DEFAULT
 * perl-Class-XSAccessor-Array DEFAULT:Class-XSAccessor-Array CPAN-DEFAULT
 * perl-Compress-Bzip2 DEFAULT:Compress-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Bzip2 DEFAULT:Compress-Raw-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Zlib DEFAULT:Compress-Raw-Zlib CPAN-DEFAULT
 * perl-Config-General DEFAULT:Config-General CPAN-DEFAULT
 * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
 * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
 * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
 * perl-CPAN-Inject DEFAULT:CPAN-Inject 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-SSLeay DEFAULT:Crypt-SSLeay CPAN-DEFAULT
 * perl-CSS-DOM DEFAULT:CSS-DOM CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Date-Calc DEFAULT:Date-Calc CPAN-DEFAULT
 * perl-Date-Manip DEFAULT:Date-Manip CPAN-DEFAULT
 * perl-DBD-AnyData DEFAULT:DBD-AnyData CPAN-DEFAULT
 * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
 * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
 * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
 * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
 * perl-DBI DEFAULT:DBI CPAN-DEFAULT
 * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
 * perl-Devel-Dumpvar DEFAULT:Devel-Dumpvar CPAN-DEFAULT
 * perl-Devel-CheckOS DEFAULT:Devel-CheckOS CPAN-DEFAULT
 * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
 * perl-Devel-Symdump DEFAULT:Devel-Symdump CPAN-DEFAULT
 * perl-Digest-HMAC DEFAULT:Digest-HMAC CPAN-DEFAULT
 * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
 * perl-ExtUtils-InferConfig DEFAULT:ExtUtils-InferConfig CPAN-DEFAULT
 * perl-ExtUtils-InstallPAR DEFAULT:ExtUtils-InstallPAR CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage CPAN-DEFAULT
 * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
 * perl-Feed-Find DEFAULT:Feed-Find CPAN-DEFAULT
 * perl-File-BaseDir DEFAULT:File-BaseDir CPAN-DEFAULT
 * perl-File-DesktopEntry DEFAULT:File-DesktopEntry CPAN-DEFAULT
 * perl-File-Find-Rule-VCS DEFAULT:File-Find-Rule-VCS CPAN-DEFAULT
 * perl-File-HomeDir DEFAULT:File-HomeDir CPAN-DEFAULT
 * perl-File-MimeInfo DEFAULT:File-MimeInfo CPAN-DEFAULT
 * perl-File-MMagic DEFAULT:File-MMagic CPAN-DEFAULT
 * perl-File-NFSLock DEFAULT:File-NFSLock CPAN-DEFAULT
 * perl-File-pushd DEFAULT:File-pushd CPAN-DEFAULT
 * perl-File-ShareDir DEFAULT:File-ShareDir CPAN-DEFAULT
 * perl-File-ShareDir-PAR DEFAULT:File-ShareDir-PAR CPAN-DEFAULT
 * perl-Font-TTF DEFAULT:Font-TTF CPAN-DEFAULT
 * perl-Format-Human-Bytes DEFAULT:Format-Human-Bytes CPAN-DEFAULT
 * perl-FreezeThaw DEFAULT:FreezeThaw CPAN-DEFAULT
 * perl-Frontier-RPC DEFAULT:Frontier-RPC CPAN-DEFAULT
 * perl-Heap DEFAULT:Heap CPAN-DEFAULT
 * perl-HTML-Encoding DEFAULT:HTML-Encoding CPAN-DEFAULT
 * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
 * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
 * perl-HTML-Tagset DEFAULT:HTML-Tagset CPAN-DEFAULT
 * perl-HTML-Template DEFAULT:HTML-Template CPAN-DEFAULT
 * perl-HTML-Template-Pro DEFAULT:HTML-Template-Pro CPAN-DEFAULT
 * perl-HTML-Tidy DEFAULT:HTML-Tidy CPAN-DEFAULT
 * perl-HTTP-Parser DEFAULT:HTTP-Parser CPAN-DEFAULT
 * perl-Inline DEFAULT:Inline CPAN-DEFAULT
 * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
 * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
 * perl-JavaScript-Beautifier DEFAULT:JavaScript-Beautifier CPAN-DEFAULT
 * perl-JavaScript-Minifier DEFAULT:JavaScript-Minifier CPAN-DEFAULT
 * perl-JavaScript-Minifier-XS DEFAULT:JavaScript-Minifier-XS CPAN-DEFAULT
 * perl-Jemplate DEFAULT:Jemplate CPAN-DEFAULT
 * perl-JSON DEFAULT:JSON CPAN-DEFAULT
 * perl-LDAP DEFAULT:LDAP CPAN-DEFAULT
 * perl-libwww-perl DEFAULT:libwww-perl CPAN-DEFAULT
 * perl-libxml-perl DEFAULT:libxml-perl CPAN-DEFAULT
 * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
 * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
 * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
 * perl-Math-MatrixReal DEFAULT:Math-MatrixReal CPAN-DEFAULT
 * perl-Math-Symbolic DEFAULT:Math-Symbolic CPAN-DEFAULT
 * perl-Math-Vec DEFAULT:Math-Vec CPAN-DEFAULT
 * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
 * perl-Module-Extract DEFAULT:Module-Extract CPAN-DEFAULT
 * perl-Module-Inspector DEFAULT:Module-Inspector CPAN-DEFAULT
 * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
 * perl-Module-Math-Depends DEFAULT:Module-Math-Depends CPAN-DEFAULT
 * perl-Module-Signature DEFAULT:Module-Signature CPAN-DEFAULT
 * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
 * perl-MooseX-MarkAsMethod DEFAULT:MooseX-MarkAsMethod 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-Net-DNS DEFAULT:Net-DNS CPAN-DEFAULT
 * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
 * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
 * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
 * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
 * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
 * perl-Object-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-Padre DEFAULT:Padre CPAN-DEFAULT
 * perl-PAR DEFAULT:PAR CPAN-DEFAULT
 * perl-PAR-Packer DEFAULT:PAR-Packer CPAN-DEFAULT
 * perl-Parse-ErrorString-Perl DEFAULT:Parse-ErrorString-Perl CPAN-DEFAULT
 * perl-Parse-ExuberantCTags DEFAULT:Parse-ExuberantCTags CPAN-DEFAULT
 * perl-Parse-RecDescent DEFAULT:Parse-RecDescent CPAN-DEFAULT
 * perl-Parse-Yapp DEFAULT:Parse-Yapp CPAN-DEFAULT
 * perl-PDL DEFAULT:PDL CPAN-DEFAULT
 * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
 * perl-PDF-Haru DEFAULT:PDF-Haru CPAN-DEFAULT
 * perl-Perl-Critic DEFAULT:Perl-Critic CPAN-DEFAULT
 * perl-pip DEFAULT:pip CPAN-DEFAULT
 * perl-Pod-Abstract DEFAULT:Pod-Abstract CPAN-DEFAULT
 * perl-Pod-Coverage DEFAULT:Pod-Coverage CPAN-DEFAULT
 * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
 * perl-Pod-Strip DEFAULT:Pod-Strip CPAN-DEFAULT
 * perl-POE-Filter-HTTP-Parser DEFAULT:POE-Filter-HTTP-Parser CPAN-DEFAULT
 * perl-PPIx-EditorTools DEFAULT:PPIx-EditorTools CPAN-DEFAULT
 * perl-PPIx-Regexp DEFAULT:PPIx-Regexp CPAN-DEFAULT
 * perl-Probe-Perl DEFAULT:Probe-Perl CPAN-DEFAULT
 * perl-RPM-Specfile DEFAULT:RPM-Specfile CPAN-DEFAULT
 * perl-RPM2 DEFAULT:RPM2 CPAN-DEFAULT
 * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
 * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
 * perl-SQL-Statement DEFAULT:SQL-Statement CPAN-DEFAULT
 * perl-String-CRC32 DEFAULT:String-CRC32 CPAN-DEFAULT
 * perl-String-Random DEFAULT:String-Random CPAN-DEFAULT
 * perl-Syntax-Highlight-Engine-Kate DEFAULT:Syntax-Highlight-Engine-Kate CPAN-DEFAULT
 * perl-Syntax-Highlight-Perl6 DEFAULT:Syntax-Highlight-Perl6 CPAN-DEFAULT
 * perl-TAP-Harness-Archive DEFAULT:TAP-Harness-Archive CPAN-DEFAULT
 * perl-Template-Tiny DEFAULT:Template-Tiny CPAN-DEFAULT
 * perl-TermReadKey DEFAULT:TermReadKey CPAN-DEFAULT
 * perl-Term-ReadLine-Gnu DEFAULT:Term-ReadLine-Gnu CPAN-DEFAULT
 * perl-Test-AutoBuild DEFAULT:Test-AutoBuild CPAN-DEFAULT
 * perl-Test-Compile DEFAULT:Test-Compile CPAN-DEFAULT
 * perl-Test-Harness-Straps DEFAULT:Test-Harness-Straps CPAN-DEFAULT
 * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
 * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
 * perl-Test-Most DEFAULT:Test-Most CPAN-DEFAULT
 * perl-Test-NeedsDisplay DEFAULT:Test-NeedsDisplay CPAN-DEFAULT
 * perl-Test-Pod DEFAULT:Test-Pod CPAN-DEFAULT
 * perl-Test-Pod-Coverage DEFAULT:Test-Pod-Coverage CPAN-DEFAULT
 * perl-Test-POE-Client-TCP DEFAULT:Test-POE-Client-TCP CPAN-DEFAULT
 * perl-Test-Prereq DEFAULT:Test-Prereq CPAN-DEFAULT
 * perl-Test-Smoke DEFAULT:Test-Smoke CPAN-DEFAULT
 * perl-Test-WWW-Selenium DEFAULT:Test-WWW-Selenium CPAN-DEFAULT
 * perl-Text-Aligner DEFAULT:Text-Aligner CPAN-DEFAULT
 * perl-Text-CSV_XS DEFAULT:Text-CSV_XS CPAN-DEFAULT
 * perl-Text-FindIndent DEFAULT:Text-FindIndent CPAN-DEFAULT
 * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
 * perl-Text-Table DEFAULT:Text-Table CPAN-DEFAULT
 * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
 * perl-Text-VimColor DEFAULT:Text-VimColor CPAN-DEFAULT
 * perl-threads DEFAULT:threads CPAN-DEFAULT
 * perl-threads-shared DEFAULT:threads-shared CPAN-DEFAULT
 * perl-TimeDate DEFAULT:TimeDate CPAN-DEFAULT
 * perl-URI DEFAULT:URI CPAN-DEFAULT
 * perl-VCS-LibCVS DEFAULT:VCS-LibCVS CPAN-DEFAULT
 * perl-WebService-Validator-CSS-W3C DEFAULT:WebService-Validator-CSS-W3C CPAN-DEFAULT
 * perl-WebService-Validator-HTML-W3C DEFAULT:WebService-Validator-HTML-W3C CPAN-DEFAULT
 * perl-WWW-Mechanize DEFAULT:WWW-Mechanize CPAN-DEFAULT
 * perl-Wx-Perl-DataWalker DEFAULT:Wx-Perl-DataWalker CPAN-DEFAULT
 * perl-Wx-Perl-ProcessStream DEFAULT:Wx-Perl-ProcessStream CPAN-DEFAULT
 * perl-XML-Atom-SimpleFeed DEFAULT:XML-Atom-SimpleFeed CPAN-DEFAULT
 * perl-XML-Dumper DEFAULT:XML-Dumper CPAN-DEFAULT
 * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
 * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
 * perl-XML-LibXSLT DEFAULT:XML-LibXSLT CPAN-DEFAULT
 * perl-XML-NamespaceSupport DEFAULT:XML-NamespaceSupport CPAN-DEFAULT
 * perl-XML-Parser DEFAULT:XML-Parser CPAN-DEFAULT
 * perl-XML-SAX DEFAULT:XML-SAX CPAN-DEFAULT
 * perl-XML-Smart DEFAULT:XML-Smart CPAN-DEFAULT
 * perl-XML-Simple DEFAULT:XML-Simple CPAN-DEFAULT
 * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
 * perl-XML-XPath DEFAULT:XML-XPath CPAN-DEFAULT
 * perl-XXX DEFAULT:XXX CPAN-DEFAULT
 * perl-YAML-LibYAML DEFAULT:YAML-LibYAML CPAN-DEFAULT
 * perl-Algorithm-CheckDigits DEFAULT:Algorithm-CheckDigits CPAN-DEFAULT
 * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
 * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisec CPAN-DEFAULT
 * perl-Class-Inner DEFAULT:Class-Inner CPAN-DEFAULT
 * perl-Config-Properties DEFAULT:Config-Properties CPAN-DEFAULT
 * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber CPAN-DEFAULT
 * perl-Date-ICal DEFAULT:Date-ICal CPAN-DEFAULT
 * perl-Date-Leapyear DEFAULT:Date-Leapyear CPAN-DEFAULT
 * perl-DateTime-Precise DEFAULT:DateTime-Precise CPAN-DEFAULT
 * perl-Font-TTFMetrics DEFAULT:Font-TTFMetrics CPAN-DEFAULT
 * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered CPAN-DEFAULT
 * perl-HTML-PrettyPrinter DEFAULT:HTML-PrettyPrinter CPAN-DEFAULT
 * perl-HTML-StripScripts DEFAULT:HTML-StripScripts CPAN-DEFAULT
 * perl-HTML-StripScripts-Parser DEFAULT:HTML-StripScripts-Parser CPAN-DEFAULT
 * perl-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT
 * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT
 * perl-MIME-Charset DEFAULT:MIME-Charset CPAN-DEFAULT
 * perl-MIME-EncWords DEFAULT:MIME-EncWords CPAN-DEFAULT
 * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
 * perl-Net-eBay DEFAULT:Net-eBay CPAN-DEFAULT
 * perl-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-XML-Generator-DBI DEFAULT:XML-Generator-DBI CPAN-DEFAULT
 * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
 * perl-XML-Merge DEFAULT:XML-Merge CPAN-DEFAULT
 * perl-XML-Simple-DTDReader DEFAULT:XML-Simple-DTDReader CPAN-DEFAULT
 * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
 * perlbrew DEFAULT:App-perlbrew CPAN-DEFAULT:App-perlbrew
 * perltidy Perl-Tidy-(\S+?)\.(?:t|zip) SF-DEFAULT
 * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300
 * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
 * php-pdepend-PHP-Depend <title>PHP_Depend\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.pdepend.org/feed.xml
 * php-pear-Console-Color Console_Color-(.*?).tgz http://pear.php.net/package/Console_Color/download
 * php-pear-Console-CommandLine Console_CommandLine-(.*?).tgz http://pear.php.net/package/Console_CommandLine/download
 * php-pear-Crypt-Blowfish Crypt_Blowfish-(.*?)\.tgz http://pear.php.net/package/Crypt_Blowfish/download
 * php-pear-DB DB-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/DB/download
 * php-pear-PHP-CodeSniffer PHP_CodeSniffer-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PHP_CodeSniffer/download/
 * php-pear-PhpDocumentor PhpDocumentor-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PhpDocumentor/download
 * php-pear-phing phing-(\d+\.\d+\.\d+) http://phing.info/trac/wiki/Users/Download
 * php-pear-Text-Diff Text_Diff-(.*?)\.tgz http://pear.php.net/package/Text_Diff/download
 * php-pear PEAR-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PEAR/download
 * php-pecl-apc APC-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/APC
 * php-pecl-geoip geoip-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/GEOIP
 * php-pecl-lzf LZF-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/lzf
 * php-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/feed.xml
 * php-phpunit-File-Iterator <title>File_Iterator\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpcpd <title>phpcpd\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phploc <title>phploc\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-CodeBrowser <title>PHP_CodeBrowser\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
 * php php-(\d+\.\d+\.\d+)\.tar.bz2 http://www.php.net/downloads.php
 * phpMyAdmin phpMyAdmin-([0-9.]*?)-all-languages\.tar http://www.phpmyadmin.net/home_page/downloads.php
 * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
 * picard picard-(.*?).tar.gz http://musicbrainz.org/doc/PicardDownload
 * pida PIDA-(.*?).tar.gz http://pida.co.uk/files/releases/
 * pidgin DEFAULT http://www.pidgin.im/download/source/
 * pidgin-latex DEFAULT SF-DEFAULT
 * pidgin-libnotify DEFAULT SF-DEFAULT:gaim-libnotify
 * pidgin-musictracker DEFAULT GOOGLE-DEFAULT
 * pidgin-privacy-please DEFAULT GOOGLE-DEFAULT
 * pigz DEFAULT http://zlib.net/pigz/
 * pinentry pinentry-([0-9.]*)\.tar\.gz ftp://ftp.gnupg.org/gcrypt/pinentry/
 * pitivi version is <b>([0-9]+\.[0-9]+\.[0-9]+?) http://www.pitivi.org/?go=download
 * pixman DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * plotutils DEFAULT GNU-DEFAULT
 * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
 * pokerth DEFAULT:PokerTH SF-DEFAULT
 * polipo polipo-([0-9]\.[0-9.]*?).tar.gz http://freehaven.net/~chrisd/polipo/
 * pondus DEFAULT http://www.ephys.de/software/pondus/download.htm
 * pootle DEFAULT:pootle SF-DEFAULT:translate
 * potrace DEFAULT SF-DEFAULT
 * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
 * ppp DEFAULT ftp://ftp.samba.org/pub/ppp/
 * 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
 * proxyknife DEFAULT GNU-DEFAULT
 * psacct DEFAULT GNU-DEFAULT:acct
 * psmisc DEFAULT SF-DEFAULT
 * pspp DEFAULT GNU-DEFAULT
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * pure DEFAULT GOOGLE-DEFAULT:pure-lang
 * purple-msn-pecan DEFAULT:msn-pecan GOOGLE-DEFAULT:msn-pecan
 * purple-plugin_pack purple-plugin_pack-[.0-9]+\.tar\.bz2 http://plugins.guifications.org/trac/downloads?order=time&desc=1
 * pvm pvm([0-9.]*)\..*\.(?:tar|t[bglx]z|tbz2|zip) http://www.netlib.org/pvm3/index.html
 * pwgen DEFAULT SF-DEFAULT
 * pychess DEFAULT GOOGLE-DEFAULT
 * pyflakes DEFAULT http://divmod.org/trac/wiki/DivmodPyflakes
 * pygrace pygrace-(.*?).tgz http://www.cacr.caltech.edu/~mmckerns/software.html
 * pyicq-t pyicq-t-(.*?).tar.gz GOOGLE-DEFAULT:pyicqt
 * PyMca pymca(.*?)-src\.t SF-DEFAULT:pymca
 * pynac pynac-([\d.]+)\.spkg http://sagemath.org/packages/standard/
 * pypar DEFAULT SF-DEFAULT
 * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
 * PyQuante DEFAULT SF-DEFAULT:pyquante
 * PyQwt DEFAULT SF-DEFAULT:pyqwt
 * pyroom pyroom-(.*?)\.tar https://edge.launchpad.net/pyroom/+download
 * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
 * python-argparse DEFAULT:argparse PYPI-DEFAULT:argparse
 * python-beaker DEFAULT:Beaker PYPI-DEFAULT
 * python-biopython biopython-([0-9].*?)\.tar\.gz http://biopython.org/DIST/
 * python-blist blist-(.*?).tar.gz PYPI-DEFAULT
 * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
 * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
 * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
 * python-clientform DEFAULT:ClientForm PYPI-DEFAULT:ClientForm
 * python-configobj DEFAULT:ConfigObj PYPI-DEFAULT:ConfigObj
 * python-coverage DEFAULT:coverage PYPI-DEFAULT:coverage
 * python-cpio DEFAULT:python-cpio http://download.berlios.de/python-cpio/
 * python-daemon DEFAULT:daemon PYPI-DEFAULT:daemon
 * python-decorator DEFAULT:decorator PYPI-DEFAULT:decorator
 * python-decoratortools DEFAULT:DecoratorTools PYPI-DEFAULT:DecoratorTools
 * python-demjson DEFAULT:demjson PYPI-DEFAULT:demjson
 * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
 * python-dns <a href="kits/(.*)/">Stable</a> http://www.dnspython.org/
 * python-docutils DEFAULT PYPI-DEFAULT:docutils
 * python-elixir Elixir-(.*?).tar.gz PYPI-DEFAULT:Elixir
 * python-execnet execnet-(.*?).tar.gz PYPI-DEFAULT:execnet
 * python-feedcache DEFAULT:feedcache http://pypi.python.org/pypi/feedcache/
 * python-fedora DEFAULT:python-fedora PYPI-DEFAULT:python-fedora
 * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
 * python-formencode DEFAULT:FormEncode PYPI-DEFAULT:FormEncode
 * python-gdata DEFAULT:gdata GOOGLE-DEFAULT:gdata-python-client
 * python-imaging Imaging-([0-9.]*?)\.tar http://effbot.org/downloads/
 * python-irclib DEFAULT SF-DEFAULT:python-irclib
 * python-jinja2 Jinja2-(.*?).tar.gz PYPI-DEFAULT:Jinja2
 * python-kid DEFAULT:kid PYPI-DEFAULT:kid
 * python-Levenshtein DEFAULT:python-Levenshtein SF-DEFAULT:translate
 * python-lxml latest version is <a class="reference external" href="lxml-([0-9.]+)\.tgz http://codespeak.net/lxml/
 * python-mako DEFAULT:Mako PYPI-DEFAULT:Mako
 * python-markupsafe DEFAULT:MarkupSafe PYPI-DEFAULT:MarkupSafe
 * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
 * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
 * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
 * python-morbid DEFAULT:morbid PYPI-DEFAULT:morbid
 * python-mpmath DEFAULT:mpmath GOOGLE-DEFAULT:mpmath
 * python-mutagen mutagen-(.*?).tar.gz http://www.sacredchao.net/~piman/software/
 * python-myghty DEFAULT:Myghty PYPI-DEFAULT:Myghty
 * python-nose DEFAULT:nose PYPI-DEFAULT:nose
 * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT:paida
 * python-paste DEFAULT:Paste PYPI-DEFAULT:Paste
 * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
 * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
 * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
 * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
 * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
 * python-peak-util-assembler DEFAULT:BytecodeAssembler PYPI-DEFAULT:BytecodeAssembler
 * python-peak-util-extremes DEFAULT:Extremes PYPI-DEFAULT:Extremes
 * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
 * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
 * python-protocols DEFAULT:PyProtocols http://peak.telecommunity.com/dist/
 * python-psutil DEFAULT:psutil GOOGLE-DEFAULT:psutil
 * python-psyco Current.version.is.([0-9]+\..+?) http://psyco.sourceforge.net/download.html
 * python-py py-(.*?).tar.gz PYPI-DEFAULT:py
 * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
 * python-repoze-tm2 DEFAULT:repoze.tm2 PYPI-DEFAULT:repoze.tm2
 * python-repoze-what DEFAULT:repoze.what PYPI-DEFAULT:repoze.what
 * python-repoze-what-plugins-sql DEFAULT:repoze.what.plugins.sql PYPI-DEFAULT:repoze.what.plugins.sql
 * python-repoze-what-pylons DEFAULT:repoze.what-pylons PYPI-DEFAULT:repoze.what-pylons
 * python-repoze-what-quickstart DEFAULT:repoze.what-quickstart PYPI-DEFAULT:repoze.what-quickstart
 * python-repoze-who DEFAULT:repoze.who PYPI-DEFAULT:repoze.who
 * python-repoze-who-friendlyform DEFAULT:repoze.who-friendlyform PYPI-DEFAULT:repoze.who-friendlyform
 * python-repoze-who-plugins-sa DEFAULT:repoze.who.plugins.sa PYPI-DEFAULT:repoze.who.plugins.sa
 * python-repoze-who-testutil DEFAULT:repoze.who-testutil PYPI-DEFAULT:repoze.who-testutil
 * python-rope DEFAULT:rope PYPI-DEFAULT:rope
 * python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
 * python-setuptools DEFAULT:distribute PYPI-DEFAULT:distribute
 * python-shove DEFAULT:shove PYPI-DEFAULT:shove
 * python-simplegeneric DEFAULT:simplegeneric PYPI-DEFAULT:simplegeneric
 * python-simplejson simplejson-([0-9.]+?)\.tar PYPI-DEFAULT:simplejson
 * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
 * python-sphinx DEFAULT:Sphinx PYPI-DEFAULT:Sphinx
 * python-sprox DEFAULT:sprox PYPI-DEFAULT:sprox
 * python-sqlalchemy DEFAULT:SQLAlchemy PYPI-DEFAULT:SQLAlchemy
 * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
 * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
 * python-storm DEFAULT:storm https://launchpad.net/storm/+download
 * python-tgcaptcha DEFAULT:TGCaptcha PYPI-DEFAULT:TGCaptcha
 * python-tgext-admin DEFAULT:tgext.admin PYPI-DEFAULT:tgext.admin
 * python-tgext-crud DEFAULT:tgext.crud PYPI-DEFAULT:tgext.crud
 * python-toscawidgets DEFAULT:ToscaWidgets PYPI-DEFAULT:ToscaWidgets
 * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
 * python-turbocheetah DEFAULT:TurboCheetah PYPI-DEFAULT:TurboCheetah
 * python-turboflot DEFAULT:TurboFlot PYPI-DEFAULT:TurboFlot
 * python-turbojson DEFAULT:TurboJson PYPI-DEFAULT:TurboJson
 * python-turbokid DEFAULT:TurboKid PYPI-DEFAULT:TurboKid
 * python-tw-forms DEFAULT:tw.forms PYPI-DEFAULT:tw.forms
 * python-tw-jquery DEFAULT:tw.jquery PYPI-DEFAULT:tw.jquery
 * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
 * python-weberror DEFAULT:WebError PYPI-DEFAULT:WebError
 * python-webflash DEFAULT:WebFlash PYPI-DEFAULT:WebFlash
 * python-webhelpers DEFAULT:WebHelpers PYPI-DEFAULT:WebHelpers
 * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
 * python-xkit \b([\d.]+)\s+(?i)stable\s+release https://launchpad.net/x-kit
 * 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-zope-component zope\.component-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.component
 * python-zope-event zope\.event-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.event
 * python-zope-exceptions zope\.exceptions-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.exceptions
 * python-zope-i18n zope\.i18n-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.i18n
 * python-zope-i18nmessageid zope\.i18nmessageid-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip)  PYPI-DEFAULT:zope.i18nmessageid
 * python-zope-interface zope\.interface-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.interface
 * python-zope-proxy zope\.proxy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.proxy
 * python-zope-schema zope\.schema-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.schema
 * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.sqlalchemy
 * python-zope-testing zope\.testing-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.testing
 * python3-chardet DEFAULT http://chardet.feedparser.org/download/

Q - Z

 * qiv DEFAULT http://spiegl.de/qiv/download/
 * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
 * qof DEFAULT SF-DEFAULT
 * qrupdate DEFAULT SF-DEFAULT
 * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
 * qt-qsa qsa-x11-free-(.*?\..*?).tar.gz ftp://ftp.trolltech.com/qsa/source/
 * qtiplot DEFAULT http://soft.proindependent.com/download.html
 * quazip DEFAULT SF-DEFAULT
 * quilt DEFAULT http://savannah.nongnu.org/files/?group=quilt
 * qwt DEFAULT SF-DEFAULT
 * RackTables DEFAULT SF-DEFAULT:racktables
 * rakarrack rakarrack-(.[^-]*?).tar.(?:bz2|gz) SF-DEFAULT
 * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
 * rcs DEFAULT GNU-DEFAULT
 * rcsslogplayer DEFAULT SF-DEFAULT:sserver
 * rcssmonitor DEFAULT SF-DEFAULT:sserver
 * rcssserver DEFAULT SF-DEFAULT:sserver
 * rcssserver3d DEFAULT SF-DEFAULT:simspark
 * rdesktop DEFAULT SF-DEFAULT
 * readline DEFAULT GNU-DEFAULT
 * recode DEFAULT GNU-DEFAULT
 * redet-doc redet_manual(.*?).tar.gz http://billposer.org/Software/redet.html
 * redet redet-(.*?).tar.gz http://billposer.org/Software/redet.html
 * redshift DEFAULT http://launchpad.net/redshift/+download/
 * regionset regionset-([.0-9]*?).tar.gz http://linvdr.org/download/regionset/
 * reiserfs-utils reiserfsprogs-(.*?)\.tar\.bz2 http://www.kernel.org/pub/linux/utils/fs/reiserfs/
 * remmina DEFAULT SF-DEFAULT
 * ReviewBoard ReviewBoard-([0-9.]+).tar.gz http://downloads.reviewboard.org/releases/ReviewBoard/1.0/
 * rfkill DEFAULT http://wireless.kernel.org/download/rfkill/
 * rlwrap rlwrap-(.*?).tar.gz http://utopia.knoware.nl/~hlub/rlwrap/
 * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
 * rmol rmol-([0-9.]*)\.tar\.gz SF-DEFAULT
 * rpl DEFAULT SF-DEFAULT
 * rpmlint DEFAULT http://rpmlint.zarb.org/download/
 * rpmorphan DEFAULT SF-DEFAULT
 * rst2pdf DEFAULT GOOGLE-DEFAULT
 * rsync DEFAULT http://samba.org/ftp/rsync/
 * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
 * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/
 * ruby-mysql mysql-ruby-(.*?).tar.gz http://tmtm.org/downloads/mysql/ruby/
 * rubygem-warden warden-([0-9.]*?).gem http://rubygems.org/api/v1/gems/warden.json
 * s3cmd DEFAULT SF-DEFAULT:s3tools
 * s390utils s390-tools-(.*?)\.html http://www.ibm.com/developerworks/linux/linux390/s390-tools.html
 * sage DEFAULT SF-DEFAULT:worldforge
 * 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/
 * scheme2js scheme2js-(.*?).tar.gz http://www-sop.inria.fr/mimosa/scheme2js/files/
 * scidavis scidavis-([0-9.]*?).tar.bz2 SF-DEFAULT
 * scim DEFAULT SF-DEFAULT
 * scim-m17n DEFAULT SF-DEFAULT:scim
 * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
 * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
 * screen DEFAULT GNU-DEFAULT
 * sdparm DEFAULT http://sg.danny.cz/sg/p/
 * sed DEFAULT GNU-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/
 * sextractor sextractor-([0-9].*?).tar.gz ftp://ftp.iap.fr/pub/from_users/bertin/sextractor/
 * sharutils DEFAULT GNU-DEFAULT
 * shorewall /pub/shorewall/\d+\.\d+/shorewall-(\d+\.\d+\.\d+)/releasenotes.txt http://www.shorewall.net/shorewall_index.htm
 * 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/
 * 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 DEFAULT SF-DEFAULT
 * simulavr DEFAULT http://download.savannah.gnu.org/releases-noredirect/simulavr/
 * sipwitch DEFAULT GNU-DEFAULT
 * six six-(.*?)\.tar.gz http://six.retes.hu/download/
 * sks DEFAULT GOOGLE-DEFAULT:sks-keyserver
 * skstream DEFAULT SF-DEFAULT:worldforge
 * slib DEFAULT http://people.csail.mit.edu/jaffer/SLIB.html
 * slrn DEFAULT SF-DEFAULT
 * smartmontools DEFAULT SF-DEFAULT
 * smem smem-([0-9\.]+)\.tar\.gz http://www.selenic.com/smem/download/
 * soci soci-([0-9.]*)\.tar\.gz SF-DEFAULT
 * solfege DEFAULT GNU-DEFAULT
 * sonata sonata-(.*?).tar.gz http://sonata.berlios.de/download.html
 * sonic-visualiser DEFAULT SF-DEFAULT:sv1
 * soprano DEFAULT SF-DEFAULT
 * 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/
 * sphinx >\s*Sphinx\s([0-9\.]+)\s*< http://www.sphinxsearch.com/downloads.html
 * splint DEFAULT http://www.splint.org/downloads/
 * sqlite Version\s+([\d.]+\d) http://www.sqlite.org/news.html
 * sshfp sshfp-(.*?).tar.gz ftp://ftp.xelerance.com/sshfp/
 * sshmenu DEFAULT SF-DEFAULT
 * ssmtp DEFAULT DEBIAN-DEFAULT
 * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
 * steghide DEFAULT SF-DEFAULT
 * stellarium DEFAULT SF-DEFAULT
 * stgit stgit-(.*?).tar.gz http://homepage.ntlworld.com/cmarinas/stgit/
 * 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 https://launchpad.net/subdownloader/+download
 * subversion DEFAULT http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260
 * sudo DEFAULT http://www.sudo.ws/sudo/dist/
 * sunbird lightning-sunbird-(.*?)-source.tar.bz2 http://releases.mozilla.org/pub/mozilla.org/calendar/sunbird/releases/0.8/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/
 * swing-layout Version.([^.]*) https://swing-layout.dev.java.net/servlets/ProjectNewsList
 * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
 * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
 * sympy DEFAULT GOOGLE-DEFAULT
 * sysbench DEFAULT SF-DEFAULT
 * sysconftool DEFAULT SF-DEFAULT:courier
 * sysfsutils DEFAULT SF-DEFAULT:linux-diag
 * syslinux DEFAULT http://www.kernel.org/pub/linux/utils/boot/syslinux/
 * sysvinit sysvinit-(.*?)dsf\.tar\.bz2 http://download.savannah.gnu.org/releases/sysvinit/
 * tack tack-(.*?)\.tgz ftp://invisible-island.net/ncurses/
 * tango-icon-theme-extras tango-icon-theme-extras-([0-9].*?).tar.gz http://tango.freedesktop.org/releases/
 * tango-icon-theme tango-icon-theme-([0-9].*?).tar.gz http://tango.freedesktop.org/Tango_Icon_Library
 * tar DEFAULT GNU-DEFAULT
 * tcl \btcl([\d.]+)-src\.t SF-DEFAULT
 * tcsh tcsh-(.*?)\.00\.tar\.gz http://ftp.funet.fi/pub/unix/shells/tcsh/
 * tcpdump tcpdump-(.*?)\.tar\. http://www.tcpdump.org/release/
 * techne techne-([0-9.]*?)\.tar\.gz http://download.savannah.gnu.org/releases/techne/
 * tellico tellico-(.*?)\.tar\.bz2 http://tellico-project.org/download
 * termcap DEFAULT GNU-DEFAULT
 * terminus-fonts DEFAULT:terminus-font SF-DEFAULT:terminus-font
 * teseq DEFAULT GNU-DEFAULT
 * tesseract tesseract.([0-9\.]*).tar.gz GOOGLE-DEFAULT:tesseract-ocr
 * texinfo DEFAULT GNU-DEFAULT
 * TeXmacs TeXmacs-(.*?)-src\.tar ftp://ftp.texmacs.org/pub/TeXmacs/targz/
 * texworks DEFAULT GOOGLE-DEFAULT
 * thai-scalable-fonts thaifonts-scalable-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/thaifonts-scalable/
 * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
 * tomcat5 Current stable version is (5\.[0-9]\.[0-9][0-9]) http://www.apache.org/dist/tomcat/tomcat-5/
 * tomcat6 Current stable version is (6\.[0-9]\.[0-9][0-9]) http://www.apache.org/dist/tomcat/tomcat-6/
 * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
 * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
 * translate-toolkit DEFAULT:translate-toolkit SF-DEFAULT:translate
 * transmission DEFAULT http://www.transmissionbt.com/download.php
 * 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/
 * tla DEFAULT GNU-DEFAULT:gnu-arch
 * tmux DEFAULT SF-DEFAULT
 * torque DEFAULT http://www.clusterresources.com/downloads/torque/
 * towhee DEFAULT SF-DEFAULT
 * transmission-remote-cli \bVERSION\s*=\s*'([^']+)' http://github.com/fagga/transmission-remote-cli/raw/master/transmission-remote-cli.py
 * trash-cli DEFAULT PYPI-DEFAULT
 * tree tree-([0-9a-z.]+).tgz http://mama.indstate.edu/users/ice/tree/
 * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
 * tremulous DEFAULT SF-DEFAULT
 * tudu DEFAULT SF-DEFAULT
 * tumbler DEFAULT http://git.xfce.org/apps/tumbler/
 * TurboGears2-(.*?).tar.gz http://www.turbogears.org/2.1/downloads/current/
 * typespeed DEFAULT SF-DEFAULT
 * tzdata tzdata(.*?)\.tar\.gz ftp://elsie.nci.nih.gov/pub/
 * uClibc DEFAULT http://uclibc.org/downloads/
 * ucommon DEFAULT http://www.gnutelephony.org/dist/tarballs/
 * udis86 DEFAULT SF-DEFAULT
 * udev DEFAULT http://ftp.kernel.org/pub/linux/utils/kernel/hotplug/
 * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
 * ugene ugene-([.0-9]*?).tar.gz http://ugene.unipro.ru/download.html
 * un-core-fonts un-fonts-core-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * un-extra-fonts un-fonts-extra-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * uncrustify DEFAULT SF-DEFAULT
 * units DEFAULT GNU-DEFAULT
 * unrtf DEFAULT GNU-DEFAULT
 * unuran unuran-([0-9.]*).tar.gz http://statmath.wu.ac.at/src/
 * up-imapproxy up-imapproxy-(\d+\.\d+\.\d+).tar.gz http://www.imapproxy.org/downloads/
 * upstart upstart-(.*?)\.tar\. http://upstart.ubuntu.com/download/0.6/
 * usb_modeswitch usb-modeswitch-(.*?)\.tar\. http://www.draisberghof.de/usb_modeswitch/
 * usb_modeswitch-data usb-modeswitch-data-(.*?)\.tar\. http://www.draisberghof.de/usb_modeswitch/
 * usbutils DEFAULT http://www.kernel.org/pub/linux/utils/usb/usbutils/
 * uucp DEFAULT GNU-DEFAULT
 * vala Vala (.*?) released http://live.gnome.org/Vala
 * valknut DEFAULT SF-DEFAULT:wxdcgui
 * varconf DEFAULT SF-DEFAULT:worldforge
 * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
 * vdr-femon vdr-femon-(1\.6\.\S+?)\.t http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/index.php
 * vdr-osdteletext DEFAULT http://projects.vdr-developer.org/projects/plg-osdteletext/files
 * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
 * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/plg-sudoku/files
 * vdr-text2skin DEFAULT http://projects.vdr-developer.org/projects/plg-text2skin/files
 * vdr-ttxtsubs \bvdr-ttxtsubs-(0\.0\.\S+?)\.t http://projects.vdr-developer.org/projects/plg-ttxtsubs/files
 * vdr-wapd DEFAULT http://www.heiligenmann.de/vdr/download/
 * vdradmin-am DEFAULT http://andreas.vdr-developer.org/vdradmin-am/download.html
 * vidalia DEFAULT http://www.torproject.org/vidalia/index.html.en
 * vim DEFAULT http://ftp.vim.org/pub/vim/unix/
 * vim-latex vim-latex-(.*?).tar.gz SF-DEFAULT
 * virtaal DEFAULT:virtaal SF-DEFAULT:translate
 * vmpsd DEFAULT SF-DEFAULT:vmps
 * vorbis-tools DEFAULT  http://downloads.xiph.org/releases/vorbis/
 * vsftpd DEFAULT ftp://vsftpd.beasts.org/users/cevans/
 * vttest DEFAULT ftp://invisible-island.net/vttest/
 * 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/
 * 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
 * WindowMaker DEFAULT http://windowmaker.info/pub/source/release/
 * wine DEFAULT SF-DEFAULT
 * wireshark DEFAULT SF-DEFAULT
 * wol DEFAULT SF-DEFAULT:wake-on-lan
 * wordnet WordNet-([0-9.]*)\.[tz][ai][rp] http://wordnet.princeton.edu/wordnet/download/
 * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
 * wpa_supplicant wpa_supplicant-(0\.7\..*?)\.tar\.gz http://w1.fi/releases/
 * wp_tray ">([0-9.]+)</a> http://freshmeat.net/projects/wp_tray/
 * xalan-c Xalan-C\+\+.version.(.*?)< http://xml.apache.org/xalan-c/
 * xaos DEFAULT GNU-DEFAULT
 * xar DEFAULT GOOGLE-DEFAULT
 * xastir DEFAULT SF-DEFAULT
 * xautomation xautomation-(.*?).tar.gz http://hoopajoo.net/static/projects/
 * xbacklight DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xboard DEFAULT GNU-DEFAULT
 * xcb-util xcb-util-([0-9\.]+)\.tar\.bz2 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 xdrfile-(.*?).tar.gz ftp://ftp.gromacs.org/pub/contrib/
 * xerces-c DEFAULT http://www.apache.org/dist/xerces/c/3/sources/
 * xerces-j2 (?i)xerces-j-src[-.]([\d.]+)\.(?:t|zip) http://www.apache.org/dist/xerces/j/source/
 * xfsdump xfsdump-([0-9.]*).tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
 * xfsprogs xfsprogs-([0-9.]*).tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
 * xine-lib DEFAULT SF-DEFAULT:xine
 * xine-ui DEFAULT SF-DEFAULT:xine
 * xinetd DEFAULT http://www.xinetd.org/
 * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
 * xl2tpd xl2tpd-(.*?).tar.gz 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
 * xmlstarlet DEFAULT SF-DEFAULT:xmlstar
 * xmltoman DEFAULT SF-DEFAULT
 * xmms-modplug DEFAULT:modplugxmms SF-DEFAULT:modplug-xmms
 * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xnoise DEFAULT GOOGLE-DEFAULT
 * xnoise-plugins-core DEFAULT GOOGLE-DEFAULT:xnoise
 * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
 * xorg-x11-drv-acecad xf86-input-acecad-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-aiptek xf86-input-aiptek-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-apm xf86-video-apm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ark xf86-video-ark-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ast xf86-video-ast-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ati xf86-video-ati-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/ 
 * xorg-x11-drv-cirrus xf86-video-cirrus-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-chips xf86-video-chips-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-dummy xf86-video-dummy-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-elographics xf86-input-elographics-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-evdev xf86-input-evdev-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-fbdev xf86-video-fbdev-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-fpit xf86-input-fpit-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-geode xf86-video-geode-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-glint xf86-video-glint-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-hyperpen xf86-input-hyperpen-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i128 xf86-video-i128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i740 xf86-video-i740-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-intel xf86-video-intel-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ivtv xf86-video-ivtv-(.*?)\.tar\.gz http://dl.ivtvdriver.org/xf86-video-ivtv/archive/1.1.x/
 * xorg-x11-drv-keyboard xf86-input-keyboard-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mach64 xf86-video-mach64-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mga xf86-video-mga-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mouse xf86-input-mouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mutouch xf86-input-mutouch-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-neomagic xf86-video-neomagic-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-nv xf86-video-nv-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-openchrome xf86-video-openchrome-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-penmount xf86-input-penmount-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-qxl xf86-video-qxl-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-radeonhd xf86-video-radeonhd-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-r128 xf86-video-r128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-rendition xf86-video-rendition-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-s3 xf86-video-s3-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-s3virge xf86-video-s3virge-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-savage xf86-video-savage-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-siliconmotion xf86-video-siliconmotion-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sis xf86-video-sis-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sisusb xf86-video-sisusb-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-synaptics xf86-input-synaptics-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-tdfx xf86-video-tdfx-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-trident xf86-video-trident-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-tseng xf86-video-tseng-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-v4l xf86-video-v4l-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vesa xf86-video-vesa-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmmouse xf86-input-vmmouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmware xf86-video-vmware-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-void xf86-input-void-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-voodoo xf86-video-voodoo-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-wacom xf86-input-wacom-(.*?)\.tar\.bz2 http://sf.net/projects/linuxwacom/files/
 * xorg-x11-server xorg-server-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/xserver/
 * xorg-x11-twm twm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-util-macros util-macros-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/util/
 * xorg-x11-xauth xauth-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xbitmaps xbitmaps-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/data
 * xorg-x11-xdm xdm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xfs xfs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xfwp xfwp-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xinit xinit-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xsm xsm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xtrans-devel xtrans-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/lib/
 * xorriso DEFAULT GNU-DEFAULT
 * xpa xpa-(.*?).tar.gz http://hea-www.harvard.edu/saord/xpa/
 * xsane xsane-(.*?)\.tar\. ftp://ftp.sane-project.org/pub/sane/xsane/
 * xterm DEFAULT ftp://invisible-island.net/xterm/
 * x-tile x-tile-(.*?)\.tar\.gz http://www.giuspen.com/software/
 * yaboot DEFAULT http://yaboot.ozlabs.org/releases/
 * yaml-cpp DEFAULT GOOGLE-DEFAULT
 * yasm yasm-([0-9.]*?).tar.gz http://www.tortall.net/projects/yasm/releases/
 * ykpers DEFAULT GOOGLE-DEFAULT:yubikey-personalization
 * youtube-dl /youtube-dl">([\d.]+)</a> http://rg3.github.com/youtube-dl/download.html
 * ytree DEFAULT http://www.han.de/~werner/ytree.html
 * z88dk DEFAULT SF-DEFAULT
 * zeroinstall-injector DEFAULT SF-DEFAULT:zero-install
 * zeromq zeromq-(.*?).tar.gz http://www.zeromq.org/area:download
 * zidrav DEFAULT:zidrav4unix SF-DEFAULT
 * zile DEFAULT GNU-DEFAULT
 * Zim zim-(.*?)\.tar\.gz http://zim-wiki.org/downloads/
 * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
 * znc DEFAULT SF-DEFAULT
 * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf


Package Owner Ignore List

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

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

Package Ignore List

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

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


Reason: it is released using daily snapshots:
* foomatic-db foomatic-db-(.*?[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
Impossible to track, they are formed by subpackages:
* xorg-x11-apps
* xorg-x11-font-utils
* xorg-x11-fonts
* xorg-x11-proto-devel
* xorg-x11-resutils
* xorg-x11-server-utils
* xorg-x11-utils
* xorg-x11-xkb-utils
Package maintainer( https://fedoraproject.org/wiki/User:Ausil ) does not want any notice:
* snort
Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=635372#c2 ) :
* git
Package maintainer does not care about updates ( CLOSED WONTFIX https://bugzilla.redhat.com/show_bug.cgi?id=646941 ):
* elilo DEFAULT SF-DEFAULT
* gnu-efi DEFAULT SF-DEFAULT
Remove shared-mime-info, I'm the upstream maintainer(Hadess)
* shared-mime-info DEFAULT http://people.freedesktop.org/~hadess/

Retired Packages

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

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

Related Projects