From Fedora Project Wiki

Revision as of 14:09, 22 July 2010 by Fabiand (talk | contribs) (→‎N - Z: Added orc.)

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

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
* bitstream-vera-fonts http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/ (may need subdirectory handling)
* clutter* http://www.clutter-project.org/sources/ (may need subdirectory handling)
* gtk-murrine-engine http://ftp.gnome.org/pub/GNOME/sources/murrine/ (may need subdirectory handling)

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/
 * 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-firmware alsa-firmware-(\d+\.\d+\.\d+)\.tar.bz2 ftp://ftp.alsa-project.org/pub/firmware/
 * alsa-plugins alsa-plugins-(\d+\.\d+\.\d+)\.tar.bz2 ftp://ftp.alsa-project.org/pub/plugins/
 * alsa-tools alsa-tools-(\d+\.\d+\.\d+)\.tar.bz2 ftp://ftp.alsa-project.org/pub/tools/
 * 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 http://code.google.com/p/anki/downloads/list
 * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
 * antlrworks DEFAULT http://www.antlr.org/download/
 * apache-commons-exec DEFAULT:commons-exec http://www.apache.org/dist/commons/exec/source/
 * apache-commons-math DEFAULT:commons-math http://www.apache.org/dist/commons/math/source/
 * apache-commons-discovery DEFAULT:commons-discovery http://www.apache.org/dist/commons/discovery/source/
 * apache-commons-logging DEFAULT:commons-logging http://www.apache.org/dist/commons/logging/source/
 * apanov-edrip-fonts DEFAULT:edrip ftp://ftp.dvo.ru/pub/Font/edrip/
 * apanov-heuristica-fonts heuristica-src--(.*?).tar.xz http://code.google.com/p/evristika/downloads/list
 * archimedes DEFAULT GNU-DEFAULT
 * aria2 DEFAULT SF-DEFAULT
 * aspell DEFAULT GNU-DEFAULT
 * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
 * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
 * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
 * 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
 * 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
 * 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
 * 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/
 * bygfoot DEFAULT SF-DEFAULT
 * 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/
 * calc DEFAULT GNU-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/
 * 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://www.clutter-project.org/sources/clutter/1.3/
 * 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/
 * 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
 * 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
 * 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
 * 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
 * db4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technology/software/products/berkeley-db/db/index.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
 * dejagnu DEFAULT GNU-DEFAULT
 * dejavu-fonts DEFAULT SF-DEFAULT:dejavu
 * denemo DEFAULT GNU-DEFAULT
 * detox DEFAULT SF-DEFAULT
 * diction DEFAULT GNU-DEFAULT
 * diffstat diffstat-(.*?).tgz ftp://invisible-island.net/diffstat/
 * diffutils DEFAULT GNU-DEFAULT
 * 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
 * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
 * dot2tex DEFAULT http://code.google.com/p/dot2tex/downloads/list
 * 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 linuxtv-dvb-apps-(\S+?)\.t http://www.linuxtv.org/downloads/
 * 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
 * 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-common-ess ess-(.*?).tgz http://stat.ethz.ch/ESS/downloads/ess/
 * emacs-common-muse muse-(.*?).tar.gz http://download.gna.org/muse-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
 * ethtool ethtool-(2.*?)\.tar\. http://sf.net/projects/gkernel/files/
 * 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/
 * ext3grep ext3grep-(.*?).tar.gz http://code.google.com/p/ext3grep/downloads/list
 * Falcon Falcon-(.*?).tar.gz http://www.falconpl.org/index.ftd?page_id=official_download
 * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
 * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
 * fetchlog DEFAULT SF-DEFAULT
 * 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/
 * findutils DEFAULT GNU-DEFAULT
 * firehol DEFAULT SF-DEFAULT
 * flex DEFAULT SF-DEFAULT
 * 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
 * freedink DEFAULT GNU-DEFAULT
 * freedroidrpg DEFAULT SF-DEFAULT:freedroid
 * freeipmi DEFAULT GNU-DEFAULT
 * 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/
 * 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-binary HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-dataenc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-ghc-paths HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskeline HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghc-haskell-src-exts 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
 * ghc-tar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://ghostscript.com/releases/
 * 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/
 * git-cola cola-(.*?).tar.gz http://cola.tuxfamily.org/releases/
 * git git-([0-9.]+?).tar.bz2 http://kernel.org/pub/software/scm/git/
 * gkrellm DEFAULT http://www.gkrellm.net/
 * gkrellm-volume DEFAULT http://gkrellm.luon.net/volume.php
 * glade3 Glade\s+(\S+).*released http://glade.gnome.org/
 * global DEFAULT GNU-DEFAULT
 * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
 * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
 * gmp DEFAULT GNU-DEFAULT
 * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
 * 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-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
 * gnupg2 gnupg-(2.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnuradio DEFAULT GNU-DEFAULT
 * gnurobots DEFAULT GNU-DEFAULT
 * gnustep-make gnustep-make-(.*?).tar.gz ftp://ftp.gnustep.org/pub/gnustep/core/
 * gnutls DEFAULT GNU-DEFAULT
 * goffice goffice-(.*?).tar.bz2 http://ftp.gnome.org/pub/GNOME/sources/goffice/0.6/
 * google-gadgets google-gadgets-for-linux-(.*?).tar http://code.google.com/p/google-gadgets-for-linux/downloads/list
 * gperf DEFAULT GNU-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/
 * grub2 grub-(.*?).tar.gz ftp://alpha.gnu.org/gnu/grub/
 * gscan2pdf DEFAULT SF-DEFAULT
 * gsl DEFAULT GNU-DEFAULT
 * gtk-murrine-engine murrine-([0-9.]*)\.[tz][ai][rp] http://ftp.gnome.org/pub/GNOME/sources/murrine/0.90/
 * gtraffic DEFAULT http://fsckyou.info/gtraffic/
 * gtranslator DEFAULT SF-DEFAULT
 * gtypist DEFAULT GNU-DEFAULT
 * guile DEFAULT GNU-DEFAULT
 * guilt guilt-([0-9\.]*?).tar.bz2 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

H - M

 * hamlib DEFAULT SF-DEFAULT
 * hdparm DEFAULT SF-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hscolour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * gzip DEFAULT GNU-DEFAULT
 * help2man DEFAULT GNU-DEFAULT
 * hostapd hostapd-(0\.6\..*?)\.tar\.gz http://w1.fi/releases/
 * hping3 hping3-(.*?).tar.gz http://www.hping.org/download.php
 * hplip DEFAULT SF-DEFAULT
 * html-xml-utils html-xml-utils-(.*?).tar.gz 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 icecc-(.*?).tar.bz2 http://ftp.suse.com/pub/projects/icecream/
 * id3v2 DEFAULT SF-DEFAULT
 * 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/
 * indent DEFAULT GNU-DEFAULT
 * inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/
 * iproute DEFAULT:iproute2 http://devresources.linuxfoundation.org/dev/iproute2/download/
 * iptables iptables-(.*?)\.tar\. http://www.iptables.org/projects/iptables/files/
 * iputils iputils-s(.*?)\.tar\. http://www.skbuff.net/iputils/
 * ipvsadm ipvsadm-([0-9.]*?).tar.gz http://www.linuxvirtualserver.org/software/kernel-2.6/
 * ipython ipython-(.*?).tar.gz http://ipython.scipy.org/moin/Download
 * iso-codes iso-codes-(.*?).tar.bz2 ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/
 * isync DEFAULT SF-DEFAULT
 * iw DEFAULT http://wireless.kernel.org/download/iw/
 * jakarta-commons-dbcp commons-dbcp-([0-9\.]*?)-src\.tar\.gz http://www.apache.org/dist/commons/dbcp/source/
 * jakarta-commons-pool commons-pool-([0-9\.]*?)-src\.tar\.gz http://www.apache.org/dist/commons/pool/source/
 * jakarta-commons-validator commons-validator-([0-9\.]*?)-src\.tar\.gz http://www.apache.org/dist/commons/validator/source/
 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
 * java-gnome java-gnome-(.*?[0-9])\.tar\. http://ftp.gnome.org/pub/gnome/sources/java-gnome/4.0/
 * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
 * jmol jmol-(.*?)-full.tar.gz https://sourceforge.net/projects/jmol/files/Jmol/
 * joda-time DEFAULT SF-DEFAULT
 * joni ([0-9]+\.[0-9\.]+)/ http://svn.codehaus.org/jruby/joni/tags/
 * jvyamlb jvyamlb-src-([0-9]+\..+?).tar.gz http://code.google.com/p/jvyamlb/downloads/list
 * jwhois DEFAULT GNU-DEFAULT
 * kawa DEFAULT GNU-DEFAULT
 * kchmviewer DEFAULT SF-DEFAULT
 * kdesvn kdesvn-(.*)\.tar\.bz2 http://kdesvn.alwins-world.de/downloads/
 * kdiff3 DEFAULT SF-DEFAULT
 * keepalived keepalived-([0-9.]*?)\.tar\.gz 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
 * latencytop latencytop-([0-9\.]+)\.tar\.gz http://www.latencytop.org/download.php
 * latex2rtf DEFAULT SF-DEFAULT
 * latex-mk DEFAULT SF-DEFAULT
 * ldtp ldtp-([0-9.]*).tar.gz http://ldtp.freedesktop.org/wiki/Download
 * less DEFAULT GNU-DEFAULT
 * libbs2b libbs2b-([0-9.]*).tar.lzma http://sourceforge.net/projects/bs2b/files/
 * libcdio DEFAULT GNU-DEFAULT
 * libconfig libconfig-([0-9\.]*?)\.tar.gz http://www.hyperrealm.com/libconfig/
 * libdb DB (5[0-9.]*).tar.gz http://www.oracle.com/technology/software/products/berkeley-db/db/index.html
 * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
 * libEMF libEMF-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=141853&package_id=160078
 * libextractor DEFAULT GNU-DEFAULT
 * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/index.html
 * libgadu w wersji ([0-9\.]*) http://toxygen.net/libgadu/
 * libgdl gdl-(.*?).tar.gz http://ftp.acc.umu.se/pub/GNOME/sources/gdl/0.7/
 * libgee Libgee (.*?) released http://live.gnome.org/Libgee
 * libidn DEFAULT GNU-DEFAULT
 * libinfinity libinfinity-(.*?).tar.gz http://releases.0x539.de/libinfinity/
 * libical >libical-(.*?).tar.gz< https://sourceforge.net/project/showfiles.php?group_id=16077&package_id=64368
 * 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 libmodelfile-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=132225
 * libmodplug DEFAULT http://sourceforge.net/projects/modplug-xmms/files/
 * libpcap libpcap-(.*?)\.tar\. http://www.tcpdump.org/release/
 * libpng  libpng-(.*?).tar.gz ftp://ftp.simplesystems.org/pub/libpng/png/src/
 * libsamplerate libsamplerate-(.*?).tar.gz http://www.mega-nerd.com/SRC/download.html
 * libsigsegv DEFAULT GNU-DEFAULT
 * libtasn1 libtasn1-(.*?).tar.gz ftp://ftp.gnutls.org/pub/gnutls/libtasn1/
 * libtlen libtlen-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=62830&package_id=62542
 * libtool DEFAULT GNU-DEFAULT
 * libtorrent libtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
 * libunistring DEFAULT GNU-DEFAULT
 * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
 * libusb1 libusb-(.*?)\.tar\. http://sourceforge.net/projects/libusb/files/libusb-1.0/
 * libutempter libutempter-(.*?)\.tar ftp://ftp.altlinux.org/pub/people/ldv/utempter
 * libwfut libwfut-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=225151
 * libxdg-basedir libxdg-basedir-([0-9\.]+)\.tar\.gz http://n.ethz.ch/~nevillm/download/libxdg-basedir/
 * libyubikey DEFAULT http://code.google.com/p/yubico-c/downloads/list
 * lightning DEFAULT GNU-DEFAULT
 * linbox linbox-(.*?).tar.gz http://www.linalg.org/download.html
 * lingot lingot-(.*?).tar.gz http://savannah.nongnu.org/files/?group=lingot
 * logserial logserial-(.*?).tar.gz http://www.ibiblio.org/pub/Linux/system/serial/
 * lrzip DEFAULT http://lrzip.kolivas.org/
 * lsnipes lsnipes-([0-9\.]+)\.tgz http://www.ugcs.caltech.edu/~boultonj/snipes/
 * lua-filesystem luafilesystem-(.*?).tar.gz http://luaforge.net/frs/?group_id=66
 * luma luma-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=89105&package_id=93393
 * lxsplit lxsplit-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=216042&package_id=260824
 * lzip <a href="/projects/[^/]*/releases/[0-9]*">([0-9.]*)</a> FM-DEFAULT
 * 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 http://code.google.com/p/madwimax/downloads/list
 * mailman DEFAULT GNU-DEFAULT
 * make DEFAULT GNU-DEFAULT
 * manaworld tmw-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=106790&package_id=115181
 * 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 maximus-(.*?).tar.gz https://launchpad.net/maximus
 * mc DEFAULT http://www.midnight-commander.org/downloads
 * mdk DIR-LISTING-DEFAULT GNU-DEFAULT
 * mercator mercator-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=130617
 * mercurial mercurial-(.*?).tar.gz http://www.selenic.com/mercurial/release
 * min12xxw min12xxw-(.*?).tar.gz http://hinterbergen.de/mala/min12xxw/
 * mingw32-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
 * mingw32-libp11 libp11-(.*?)\.tar\.gz http://www.opensc-project.org/files/libp11/
 * mingw32-nsis nsis-(.*?)-src.tar.bz2 http://nsis.sourceforge.net/Download
 * mingw32-opensc opensc-([0-9.]*?)\.tar\.gz http://www.opensc-project.org/files/opensc/
 * Miro [M|m]iro-(.*?).tar.gz http://ftp.osuosl.org/pub/pculture.org/miro/src/
 * mkvtoolnix mkvtoolnix-([.0-9]*?).tar.bz2 http://www.bunkus.org/videotools/mkvtoolnix/sources/
 * mod_suphp \bhref="download/suphp-([.\d]+)\.tar\.gz\b http://www.suphp.org/Home.html
 * mod_wsgi mod_wsgi-([.0-9]*?).tar.gz http://code.google.com/p/modwsgi/downloads/list
 * 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
 * monotone-(.*?).tar.gz http://monotone.ca/downloads.php?type=Tarball
 * mozilla-adblockplus ([\d\.]+) https://hg.adblockplus.org/adblockplus/raw-file/tip/version
 * mozilla-noscript v (\d+\.\d+\.\d+\.\d+) http://noscript.net/changelog
 * mpfr DEFAULT GNU-DEFAULT
 * mpi4py DEFAULT http://code.google.com/p/mpi4py/downloads/list
 * mrepo DEFAULT http://dag.wieers.com/home-made/mrepo/
 * mtools DEFAULT GNU-DEFAULT
 * muParser Version...([0-9]\.[0-9.]*).*muparser http://sourceforge.net/projects/muparser/files/
 * museek+ museek\+-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=169682&package_id=193550
 * mysqltuner tarball/v([\w.-]+) http://github.com/rackerhacker/MySQLTuner-perl/downloads
 * mysql-connector-java mysql-connector-java-(.*?).tar.gz http://dev.mysql.com/downloads/connector/j/

N - Z

 * nano DEFAULT GNU-DEFAULT
 * 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
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nget nget-([^+%& ]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=3121&package_id=34721
 * 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/
 * obexftp DEFAULT http://sourceforge.net/projects/openobex/files/
 * ocrad DEFAULT GNU-DEFAULT
 * octave DEFAULT ftp://ftp.octave.org/pub/octave
 * octave-forge octave-forge-bundle-(.*?).tar.gz http://sourceforge.net/projects/octave/files/
 * 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 http://sourceforge.net/project/showfiles.php?group_id=40728&package_id=32894
 * opencdk opencdk-(.*?).tar.gz ftp://ftp.gnutls.org/pub/gnutls/opencdk/
 * opengrok DEFAULT http://opensolaris.org/os/project/opengrok/
 * openswan-2.4.(.*?).tar.gz ftp://ftp.openswan.org/openswan/
 * optipng DEFAULT SF-DEFAULT
 * orc DEFAULT http://code.entropywave.com/download/orc/
 * osmo DEFAULT SF-DEFAULT:osmo-pim
 * osslsigncode osslsigncode-([0-9.]*?).tar.gz http://sourceforge.net/projects/osslsigncode/files/
 * ovaldi ovaldi-(.*?)-src.tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=215469&package_id=259971
 * p7zip p7zip_([0-9.]*?)_src_all.tar.bz2 http://sourceforge.net/projects/p7zip/files/
 * pam_mount DEFAULT SF-DEFAULT:pam-mount
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * pbm2l7k lexmark7000linux-(.*?).tar.gz http://www.ibiblio.org/pub/linux/hardware/drivers/
 * pdfchain DEFAULT SF-DEFAULT
 * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
 * pem DEFAULT GNU-DEFAULT
 * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
 * perl-Acme-PlayCode DEFAULT:Acme-PlayCode CPAN-DEFAULT
 * perl-Algorithm-FastPermute DEFAULT:Algorithm-FastPermute CPAN-DEFAULT
 * perl-Algorithm-Permute DEFAULT:Algorithm-Permute 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-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-Convert-ASN1 DEFAULT:Convert-ASN1 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-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-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Date-Calc DEFAULT:Date-Calc CPAN-DEFAULT
 * perl-Font-TTF DEFAULT:Font-TTF CPAN-DEFAULT
 * perl-HTML-Encoding DEFAULT:HTML-Encoding CPAN-DEFAULT
 * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
 * perl-HTML-Template DEFAULT:HTML-Template CPAN-DEFAULT
 * perl-HTML-Template-Pro DEFAULT:HTML-Template-Pro CPAN-DEFAULT
 * perl-libwww-perl DEFAULT:libwww-perl CPAN-DEFAULT
 * perl-Module-Signature DEFAULT:Module-Signature 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-MultiType DEFAULT:Object-MultiType CPAN-DEFAULT
 * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
 * perl-Perl-Critic DEFAULT:Perl-Critic CPAN-DEFAULT
 * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
 * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
 * perl-String-Random DEFAULT:String-Random CPAN-DEFAULT
 * perl-TAP-Harness-Archive DEFAULT:TAP-Harness-Archive CPAN-DEFAULT
 * perl-Term-ReadLine-Gnu DEFAULT:Term-ReadLine-Gnu CPAN-DEFAULT
 * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
 * perl-Test-WWW-Selenium DEFAULT:Test-WWW-Selenium CPAN-DEFAULT
 * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
 * perl-URI DEFAULT:URI CPAN-DEFAULT
 * perl-XML-Atom-SimpleFeed DEFAULT:XML-Atom-SimpleFeed CPAN-DEFAULT
 * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
 * perl-XML-Smart DEFAULT:XML-Smart CPAN-DEFAULT
 * 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-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 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-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 http://sourceforge.net/projects/pianobooster/files/
 * picard picard-(.*?).tar.gz http://musicbrainz.org/doc/PicardDownload
 * pida PIDA-(.*?).tar.gz http://pida.co.uk/files/releases/
 * pidgin-latex pidgin-latex-(.*?)\.tar\.bz2 http://sourceforge.net/projects/pidgin-latex/files/
 * pidgin-libnotify >pidgin-libnotify-(.*?).tar.gz< http://sourceforge.net/project/showfiles.php?group_id=144907&package_id=237412
 * pigz DEFAULT http://zlib.net/pigz/
 * pinentry pinentry-([0-9.]*)\.tar\.gz ftp://ftp.gnupg.org/gcrypt/pinentry/
 * plotutils DEFAULT GNU-DEFAULT
 * pokerth PokerTH-(.*?)\.tar\.bz2 http://sourceforge.net/projects/pokerth/files/
 * 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 potrace-(.*?)\.tar\.gz http://sourceforge.net/projects/potrace/files/
 * 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) http://sourceforge.net/projects/ijbswa/files/
 * proxyknife DEFAULT GNU-DEFAULT
 * pspp DEFAULT GNU-DEFAULT
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * pure http://pure-lang.googlecode.com/files/pure-([0-9].*?).tar.gz http://code.google.com/p/pure-lang/downloads/list
 * purple-msn-pecan msn-pecan-(.*?).tar.bz2 http://code.google.com/p/msn-pecan/downloads/list
 * 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 pwgen-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=28391&package_id=20253
 * 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
 * pypar pypar-(.*?)\.tgz http://sourceforge.net/projects/pypar/files/
 * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
 * PyQuante PyQuante-(.*?)\.tar\.gz http://sourceforge.net/projects/pyquante/files/
 * pyroom pyroom-(.*?)\.tar https://edge.launchpad.net/pyroom/+download
 * python-biopython biopython-([0-9].*?)\.tar\.gz http://biopython.org/DIST/
 * python-blist blist-(.*?).tar.gz http://pypi.python.org/pypi/blist/
 * python-cclib \bcclib[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b http://sourceforge.net/projects/cclib/files/
 * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
 * python-dns <a href="kits/(.*)/">Stable</a> http://www.dnspython.org/
 * python-elixir Elixir-(.*?).tar.gz http://cheeseshop.python.org/pypi/Elixir/
 * python-execnet execnet-(.*?).tar.gz http://pypi.python.org/packages/source/e/execnet/
 * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
 * python-gdata DEFAULT:gdata http://code.google.com/p/gdata-python-client/downloads/list
 * python-imaging Imaging-([0-9.]*?)\.tar http://effbot.org/downloads/
 * python-jinja2 Jinja2-(.*?).tar.gz http://pypi.python.org/packages/source/J/Jinja2/
 * 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-mechanize mechanize-([0-9.]+?)\.tar http://pypi.python.org/packages/source/m/mechanize/
 * python-minimock DEFAULT:MiniMock http://pypi.python.org/packages/source/M/MiniMock/
 * python-mpmath mpmath-(.*?).tar.gz http://code.google.com/p/mpmath/downloads/list
 * python-mutagen mutagen-(.*?).tar.gz http://www.sacredchao.net/~piman/software/
 * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b http://sourceforge.net/projects/paida/files/
 * 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 http://pypi.python.org/packages/source/p/py/
 * python-simplejson simplejson-([0-9.]+?)\.tar http://pypi.python.org/packages/source/s/simplejson/
 * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
 * python-sphinx DEFAULT:Sphinx http://pypi.python.org/packages/source/S/Sphinx/
 * python-storm DEFAULT https://launchpad.net/storm/+download
 * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
 * python-xkit \b([\d.]+)\s+(?i)stable\s+release https://launchpad.net/x-kit
 * python-ZConfig ZConfig-([0-9.]+?)\.tar http://pypi.python.org/packages/source/Z/ZConfig/
 * python-zdaemon zdaemon-([0-9.]+?)\.tar http://pypi.python.org/packages/source/z/zdaemon/
 * python-zope-event zope\.event-([0-9.]+?)\.tar http://pypi.python.org/packages/source/z/zope.event/
 * python-zope-interface zope\.interface-([0-9.]+?)\.tar http://pypi.python.org/packages/source/z/zope.interface/
 * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.tar http://pypi.python.org/packages/source/z/zope.sqlalchemy/
 * python-zope-testing zope\.testing-([0-9.]+?)\.tar http://pypi.python.org/packages/source/z/zope.testing/
 * python3-chardet DEFAULT http://chardet.feedparser.org/download/
 * qiv DEFAULT http://spiegl.de/qiv/download/
 * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b http://sourceforge.net/projects/qmforge/files/
 * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
 * qof qof-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=83302&package_id=85668
 * qrupdate qrupdate-(.*?)\.tar\.gz http://sourceforge.net/projects/qrupdate/files/
 * 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) http://sourceforge.net/projects/rakarrack/files/
 * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
 * rcs DEFAULT GNU-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
 * regionset regionset-([.0-9]*?).tar.gz http://linvdr.org/download/regionset/
 * remmina DEFAULT SF-DEFAULT
 * ReviewBoard ReviewBoard-([0-9.]+).tar.gz http://downloads.reviewboard.org/releases/ReviewBoard/1.0/
 * 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 >rpl-(.*?).tar.gz< http://sourceforge.net/project/showfiles.php?group_id=189512&package_id=221994
 * rpmorphan DEFAULT SF-DEFAULT
 * rst2pdf rst2pdf-(.*?).tar.gz http://code.google.com/p/rst2pdf/downloads/list
 * 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/
 * 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/
 * s3cmd s3cmd-([\.0-9]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=178907&package_id=218690
 * sage sage-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=131227
 * scheme2js scheme2js-(.*?).tar.gz http://www-sop.inria.fr/mimosa/scheme2js/files/
 * scidavis scidavis-([0-9.]*?).tar.bz2 SF-DEFAULT
 * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
 * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
 * screen DEFAULT GNU-DEFAULT
 * 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
 * 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
 * sipwitch DEFAULT GNU-DEFAULT
 * six six-(.*?)\.tar.gz http://six.retes.hu/download/
 * skstream skstream-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=130615
 * slib DEFAULT http://people.csail.mit.edu/jaffer/SLIB.html
 * 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 http://downloads.sourceforge.net/sv1/sonic-visualiser-(.*?).tar.bz2 http://www.sonicvisualiser.org/download.html
 * soprano soprano-(.*?)\.tar\.bz2 http://sourceforge.net/project/showfiles.php?group_id=197043&package_id=233036
 * spacechart DEFAULT GNU-DEFAULT
 * sparse sparse-(.*?).tar.bz2 http://www.kernel.org/pub/software/devel/sparse/dist/
 * sphinx >\s*Sphinx\s([0-9\.]+)\s*< http://www.sphinxsearch.com/downloads.html
 * sqlite sqlite-amalgamation-(.*?)\.tar\.gz http://www.sqlite.org/download.html
 * sshfp sshfp-(.*?).tar.gz ftp://ftp.xelerance.com/sshfp/
 * sshmenu sshmenu-([0-9.]+)\.tar\.gz http://sourceforge.net/projects/sshmenu/files/
 * ssmtp DEFAULT DEBIAN-DEFAULT
 * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
 * steghide steghide-(.*?)\.tar\.gz http://sourceforge.net/project/showfiles.php?group_id=15895&package_id=31753
 * stellarium stellarium-(.*?)\.t.*gz http://sourceforge.net/project/showfiles.php?group_id=48857&package_id=52048
 * stgit stgit-(.*?).tar.gz http://homepage.ntlworld.com/cmarinas/stgit/
 * 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
 * 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 http://code.google.com/p/sympy/downloads/list
 * sysconftool sysconftool-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=5404&package_id=12779
 * syslinux DEFAULT http://www.kernel.org/pub/linux/utils/boot/syslinux/
 * 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
 * tcpdump tcpdump-(.*?)\.tar\. http://www.tcpdump.org/release/
 * tellico tellico-(.*?)\.tar\.bz2 http://tellico-project.org/download
 * termcap DEFAULT GNU-DEFAULT
 * terminus-fonts terminus-font-([0-9\.]+)\.tar\.gz https://sourceforge.net/projects/terminus-font/files/
 * teseq DEFAULT GNU-DEFAULT
 * tesseract tesseract.([0-9\.]*).tar.gz http://code.google.com/p/tesseract-ocr/downloads/list
 * texinfo DEFAULT GNU-DEFAULT
 * TeXmacs TeXmacs-(.*?)-src\.tar ftp://ftp.texmacs.org/pub/TeXmacs/targz/
 * texworks DEFAULT http://code.google.com/p/texworks/downloads/list
 * 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
 * tla DEFAULT GNU-DEFAULT:gnu-arch
 * tmux DEFAULT SF-DEFAULT
 * torque DEFAULT http://www.clusterresources.com/downloads/torque/
 * towhee DEFAULT http://sourceforge.net/projects/towhee/files/
 * transmission-remote-cli \bVERSION\s*=\s*'([^']+)' http://github.com/fagga/transmission-remote-cli/raw/master/transmission-remote-cli.py
 * trash-cli DEFAULT http://pypi.python.org/pypi/trash-cli/
 * 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
 * tumbler DEFAULT http://git.xfce.org/apps/tumbler/
 * typespeed DEFAULT SF-DEFAULT
 * 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-(.*?)-src.tar.gz http://ugene.unipro.ru/download.html
 * uncrustify >uncrustify-(.*?).tgz< http://sourceforge.net/project/showfiles.php?group_id=153164&package_id=169652
 * 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/
 * uucp DEFAULT GNU-DEFAULT
 * vala Vala (.*?) released http://live.gnome.org/Vala
 * valknut DEFAULT SF-DEFAULT:wxdcgui
 * varconf varconf-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=11101
 * 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/list_files/plg-osdteletext
 * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
 * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/list_files/plg-sudoku
 * vdr-text2skin DEFAULT http://projects.vdr-developer.org/projects/list_files/plg-text2skin
 * vdr-ttxtsubs \bvdr-ttxtsubs-(0\.0\.\S+?)\.t http://projects.vdr-developer.org/projects/list_files/plg-ttxtsubs
 * 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-latex vim-latex-(.*?).tar.gz http://sourceforge.net/projects/vim-latex/files/
 * virtaal DEFAULT:virtaal SF-DEFAULT:translate
 * vmpsd vmpsd-(.*?).tar.gz http://sourceforge.net/projects/vmps/files/
 * 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 wfmath-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=130616
 * 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
 * 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\.6\..*?)\.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 xar-([0-9.]*?).tar.gz http://code.google.com/p/xar/downloads/list
 * 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 >xchm-(.*?).tar.gz< http://sourceforge.net/project/showfiles.php?group_id=87007&package_id=90504
 * xdrawchem xdrawchem-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=34518&package_id=26684
 * xdrfile xdrfile-(.*?).tar.gz ftp://ftp.gromacs.org/pub/contrib/
 * 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-ui xine-ui-(.*?)\.tar\.gz http://sourceforge.net/projects/xine/files/
 * 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
 * xmltoman >xmltoman-(.*?).tar.gz< http://sourceforge.net/project/showfiles.php?group_id=215412&package_id=259893
 * xmms-modplug modplugxmms-(\S+?)\.t http://sourceforge.net/projects/modplug-xmms/files/
 * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xnoise DEFAULT http://code.google.com/p/xnoise/wiki/Downloads
 * xnoise-plugins-core DEFAULT http://code.google.com/p/xnoise/wiki/Downloads
 * xorg-x11-drv-ati xf86-video-ati-(.*?)\.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-radeonhd xf86-video-radeonhd-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * 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 xterm-(.*?)\.tgz ftp://invisible-island.net/xterm/
 * x-tile x-tile-(.*?)\.tar\.gz http://open.vitaminap.it/software/
 * yaml-cpp http://yaml-cpp.googlecode.com/files/yaml-cpp-([0-9.]*?).tar.gz http://code.google.com/p/yaml-cpp/downloads/list
 * yasm yasm-([0-9.]*?).tar.gz http://www.tortall.net/projects/yasm/releases/
 * ykpers ykpers-(.*?).tar.gz http://code.google.com/p/yubikey-personalization/downloads/list
 * youtube-dl The.latest.version.is.<strong>([^<]*)</strong> http://bitbucket.org/rg3/youtube-dl/wiki/Home
 * ytree DEFAULT http://www.han.de/~werner/ytree.html
 * z88dk z88dk-src-(.*?)\.tgz http://sourceforge.net/project/showfiles.php?group_id=2917&package_id=2867
 * zeroinstall-injector DEFAULT SF-DEFAULT:zero-install
 * zidrav zidrav4unix-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=50757&package_id=51175
 * 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/
 * 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.
  • 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.

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