(httpd minor fix) |
m (don't flag up RC versions for php-pear-DB) |
||
Line 464: | Line 464: | ||
* php-pdepend-PHP-Depend <title>PHP_Depend\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.pdepend.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-Color Console_Color-(.*?).tgz http://pear.php.net/package/Console_Color/download | ||
* php-pear-DB DB-(. | * 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-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-PhpDocumentor PhpDocumentor-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PhpDocumentor/download |
Revision as of 12:54, 9 April 2010
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 isDEFAULT
. An alternative value for the package name can be set using a colon:DEFAULT:foo
, e.g. if the tarball is calledpam-mount-1.33.tar.bz2
, but the Fedora package ispam_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 isSF-DEFAULT
. This alias will be updated in case future changes to sourceforge require a change. The name override works here, too.
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:>
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 * 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 * andika-fonts * apanov-edrip-fonts * apanov-heuristica-fonts * bitstream-vera-fonts * charis-fonts * dejavu-fonts * ecolier-court-fonts * edrip-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 * sil-charis-compact-fonts * sil-charis-fonts * stix-fonts * xgridfit * yanone-kaffeesatz-fonts
List Of Packages
A - M
* a2ps DEFAULT GNU-DEFAULT * abcde abcde[_-](.*?)(?:\.orig)\.tar\. http://ftp.debian.org/debian/pool/main/a/abcde/ * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/ * acl acl-(.*?)\.src\.tar\. http://download.savannah.gnu.org/releases-noredirect/acl/ * adjtimex adjtimex_(.*?)\.orig\.tar http://ftp.debian.org/debian/pool/main/a/adjtimex/ * 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 altermime-(.*?).tar.gz http://www.pldaniels.com/altermime/ * anjuta anjuta-([0-9.]*).tar.bz2 http://ftp.acc.umu.se/pub/GNOME/sources/anjuta/2.25/ * anki anki-(.*?).tgz http://code.google.com/p/anki/downloads/list * apache-commons-exec commons-exec-([0-9\.]*?)-src\.tar\.gz http://www.apache.org/dist/commons/exec/source/ * apache-commons-math commons-math-([0-9\.]*?)-src\.tar\.gz http://www.apache.org/dist/commons/math/source/ * archimedes archimedes-(.*?).tar.gz GNU-DEFAULT * aria2 >aria2-(.*?).tar.bz2< http://sourceforge.net/project/showfiles.php?group_id=159897&package_id=179690 * astyle astyle_(.*?)_linux.tar.gz http://sourceforge.net/projects/astyle/files/ * atlascpp Atlas-C\+\+-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=132539 * attr attr-(.*?)\.src\.tar\. http://download.savannah.gnu.org/releases-noredirect/attr/ * auto-nng auto-nng.v(.*?).tar.gz http://www.auto-nng.org/files/downloads/ * awstats awstats-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=13764&package_id=11481 * bcrypt bcrypt-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=62194&package_id=58722 * beep beep-([0-9\.]+).tar.gz http://www.johnath.com/beep/ * bibus bibus-(.*?).tar.gz http://sourceforge.net/projects/bibus-biblio/files/ * binutils binutils-(.*?\.0\.[0-9.]*?)\.tar\. http://www.kernel.org/pub/linux/devel/binutils/ * bison DEFAULT GNU-DEFAULT * 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/ * bodr bodr-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=189199&package_id=221528 * 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 http://wiki.bazaar.canonical.com/SourceDownloads * bzrtools bzrtools-(.*?).tar.gz http://bazaar-vcs.org/BzrTools * c2050 c2050-(.*?).tar.gz http://www.prato.linux.it/~mnencia/lexmark2050/files/ * ccache DEFAULT http://samba.org/ftp/ccache/ * clutter DEFAULT http://www.clutter-project.org/sources/clutter/1.0/ * CCfits CCfits-([0-9].*?).tar.gz http://heasarc.gsfc.nasa.gov/fitsio/CCfits/ * 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/ * checkgmail checkgmail-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=137480&package_id=151051 * chemical-mime-data chemical-mime-data-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=159685&package_id=179318 * chemtool chemtool-([.0-9]*?).tar.gz http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd * coccinelle coccinelle-([0-9.]*?).tgz 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 coreutils-(.*?).tar.gz GNU-DEFAULT * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/ * cowsay cowsay-(.*?).tar.gz http://www.nog.net/~tony/warez/cowsay.shtml * cpl cpl-(.*?).tar.gz http://www.eso.org/sci/data-processing/software/cpl/download.html * cppi cppi-(.*?)\.tar\.xz http://ftp.gnu.org/gnu/cppi/ * cppcheck cppcheck-(.*?)\.tar\.bz2 http://sourceforge.net/projects/cppcheck/files/ * 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 cssed-([0-9].*?)\.tar.gz http://sourceforge.net/project/showfiles.php?group_id=95078&package_id=101269 * 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 cyphesis-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=130618 * db4 Berkeley DB (*.?)\.tar\. http://www.oracle.com/technology/software/products/berkeley-db/index.html * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/ * dblatex >dblatex-(.*?).tar.bz2< http://sourceforge.net/project/showfiles.php?group_id=72607&package_id=72489 * dclib dclib-(.*?).tar.bz2 http://sourceforge.net/projects/wxdcgui/files * ddclient ddclient-([0-9.]*?).tar.bz2 http://sourceforge.net/projects/ddclient/files/ * debootstrap debootstrap_(.*?).tar.gz http://ftp.debian.org/debian/pool/main/d/debootstrap/ * decibel-audio-player decibel-audio-player-([0-9]+\..+?).tar.gz http://decibel.silent-blade.org/index.php?n=Main.Download * detox DEFAULT SF-DEFAULT * diffstat diffstat-(.*?).tgz ftp://invisible-island.net/diffstat/ * dkms DEFAULT http://linux.dell.com/dkms/ * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/ * dopewars dopewars-(.*?)\.tar\.gz http://sourceforge.net/projects/dopewars/files/ * dos2unix DEFAULT http://www.xs4all.nl/~waterlan/dos2unix.html * ds9 source/ds9\.(.*?).tar.gz http://hea-www.harvard.edu/RD/ds9/ * 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 e2fsprogs-([0-9\.]*?).tar.gz http://sourceforge.net/projects/e2fsprogs/files/e2fsprogs/ * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/ * ed2k_hash ed2k_hash-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=59235&package_id=55264 * efte efte-(.*?)\.tar\.bz2 http://sourceforge.net/projects/efte/files/ * ekg2 ekg2-(0.*?).tar.gz http://ekg2.org/download.php * ekg ekg-(.{3,5}?).tar.gz http://ekg.chmurka.net/download.php * emacs-auctex auctex-([0-9.]*)\.[tz][ai][rp] http://ftp.gnu.org/pub/gnu/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 ember-([0-9\.]*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=142898 * ember-media ember-media-([0-9\.]*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=142898 * epdfview epdfview-([0-9\.]+)\.tar\.bz2 http://trac.emma-soft.com/epdfview/wiki/Download * epydoc epydoc-([0-9.]+)\.tar\.gz http://sourceforge.net/projects/epydoc/files/ * eris eris-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=133109 * etoys DEFAULT http://download.sugarlabs.org/sources/sucrose/glucose/etoys/ * exaile DEFAULT http://www.exaile.org/downloads * 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 fetchlog-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=51728&package_id=45670 * ffsb ffsb-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=114842&package_id=124391 * fftw fftw-([0-9\.]*?).tar.gz http://www.fftw.org/download.html * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/ * firehol firehol-(.*?)\.tar\.bz2 http://sourceforge.net/projects/firehol/files/ * freedroidrpg freedroidrpg-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=54521&package_id=58238 * 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="/https/fedoraproject.org/tex/fusecompress/tarball/([0-9.]*)" http://github.com/tex/fusecompress/downloads * g2clib g2clib-([0-9.]*).tar http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/ * gajim gajim-(.*?)\.tar\.bz2 http://gajim.org/downloads.php * gausssum GaussSum-(.*?)\.tar\.gz http://sourceforge.net/projects/gausssum/files/ * gengetopt gengetopt-(.*?).tar.gz GNU-DEFAULT * gentoo DEFAULT SF-DEFAULT * gg2 gg2-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=76206&package_id=76860 * ghasher ghasher-(.*?)\.tar\. http://asgaard.homelinux.org/code/ghasher/ * 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 (.*?) </b><b> released! http://glade.gnome.org/ * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/ * 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 gnome-password-generator-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=104020&package_id=111794 * gnome-subtitles gnome-subtitles-(.*?).tar.gz http://sourceforge.net/projects/gnome-subtitles/files/gnome-subtitles/ * 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/ * gnugo gnugo-(.*?)\.tar\.gz GNU-DEFAULT * gnu-smalltalk smalltalk-(.*?)\.tar\.gz http://ftp.gnu.org/gnu/smalltalk * gnubik DEFAULT GNU-DEFAULT * gnupg gnupg-(1.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/ * gnupg2 gnupg-(2.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/ * gnustep-make gnustep-make-(.*?).tar.gz ftp://ftp.gnustep.org/pub/gnustep/core/ * goffice04 goffice-(.*?).tar.bz2 http://ftp.gnome.org/pub/GNOME/sources/goffice/0.4/ * 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 * gpscorrelate DEFAULT http://www.freefoote.com/linux_gpscorr.html * graphviz stable/SOURCES/graphviz-([0-9.]*?)\.tar http://www.graphviz.org/Download_source.php * grep grep-(.*?)\.tar\. GNU-DEFAULT * gromacs DEFAULT ftp://ftp.gromacs.org/pub/gromacs/ * grub2 grub-(.*?).tar.gz ftp://alpha.gnu.org/gnu/grub/ * gscan2pdf-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=174140&package_id=199621 * 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 * guilt guilt-([0-9\.]*?).tar.bz2 http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/ * gwsmhg gwsmhg-(.*?).tar.gz http://sourceforge.net/projects/gwsmhg/files/ * gxine gxine-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=9655&package_id=67526 * gyachi gyachi-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=158490&package_id=177556 * help2man DEFAULT http://ftp.gnu.org/gnu/help2man/ * hping3 hping3-(.*?).tar.gz http://www.hping.org/download.php * hplip hplip-([^ ]*).tar.gz http://sourceforge.net/project/showfiles.php?group_id=149981&package_id=165777 * 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/ * 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 id3v2-([0-9\.]+)\.tar\.gz http://downloads.sourceforge.net/id3v2/ * ImageMagick ImageMagick-([0-9]\.[0-9]\.[0-9]-.*?[0-9]).tar.bz2 ftp://ftp.imagemagick.org/pub/ImageMagick/ * inadyn inadyn.v(.*?).zip http://www.inatech.eu/inadyn/readme.html * inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/ * iptables iptables-([0-9]\.[0-9]\.[0-9]).tar.bz2 http://www.iptables.org/projects/iptables/files/ * ipvsadm ipvsadm-([0-9.]*?).tar.gz http://www.linuxvirtualserver.org/software/kernel-2.6/ * ipython ipython-(.*?).tar.gz http://ipython.scipy.org/dist/ * isync isync-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=69662&package_id=68687 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/ * javasqlite ["/]javasqlite-(.*?)\.tar http://www.ch-werner.de/javasqlite/overview-summary.html * jmol jmol-(.*?)-full.tar.gz https://sourceforge.net/projects/jmol/files/Jmol/ * jna-posix ([0-9]+\.[0-9]+)/ http://svn.codehaus.org/jruby-contrib/tags/jna-posix/ * joda-time joda-time-([0-9]+\..+?)-src.tar.gz http://sourceforge.net/project/showfiles.php?group_id=97367&package_id=104212 * 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 * kchmviewer DEFAULT SF-DEFAULT * kdesvn kdesvn-(.*)\.tar\.bz2 http://kdesvn.alwins-world.de/downloads/ * kdiff3 kdiff3-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=58666&package_id=54597 * keepalived keepalived-([0-9.]*?)\.tar\.gz http://www.keepalived.org/software/ * keychain DEFAULT http://www.funtoo.org/archive/keychain/ * kid3 DEFAULT SF-DEFAULT * kile Latest available stable version for KDE3: <a href="download.php">(.*?)</a>\. http://kile.sourceforge.net/ * komparator komparator-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=156901&package_id=175196 * 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 latex2rtf-(.*?)\.tar\.gz http://sourceforge.net/projects/latex2rtf/files/ * ldtp ldtp-([0-9.]*).tar.gz http://ldtp.freedesktop.org/wiki/Download * libbs2b libbs2b-([0-9.]*).tar.lzma http://sourceforge.net/projects/bs2b/files/ * 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 * libfplll libfplll-([0-9]+\..+?).tar.gz http://perso.ens-lyon.fr/damien.stehle/english.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 * 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([0-9][az]).tar.gz http://www.ijg.org/files/ * 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 * 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 * libtorrent libtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/ * 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 libyubikey-(.*?).tar.gz http://code.google.com/p/yubico-c/downloads/list/ * lightning lightning-(.*?)\.tar\.gz 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/ * 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="/https/fedoraproject.org/projects/[^/]*/releases/[0-9]*">([0-9.]*)</a> FM-DEFAULT * madwimax DEFAULT http://code.google.com/p/madwimax/downloads/list * mailman DEFAULT GNU-DEFAULT * manaworld tmw-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=106790&package_id=115181 * maximus maximus-(.*?).tar.gz https://launchpad.net/maximus * 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 libtool-([0-9\.]+)[a-z]?\.tar\.(gz|lzma|xz) http://ftp.gnu.org/gnu/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_wsgi mod_wsgi-([.0-9]*?).tar.gz http://code.google.com/p/modwsgi/downloads/list * monotone (0\.[0-9]+) http://monotone.ca/downloads/ * mozilla-adblockplus ([\d\.]+) https://hg.adblockplus.org/adblockplus/raw-file/tip/version * mozilla-noscript v (\d+\.\d+\.\d+\.\d+) http://noscript.net/changelog * mrepo DEFAULT http://dag.wieers.com/home-made/mrepo/ * 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
* ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/ * netmask DEFAULT http://ftp.debian.org/debian/pool/main/n/netmask/ * newsx newsx-(.*?).tar.gz ftp://ftp.kvaleberg.com/pub/ * nicotine+ DEFAULT SF-DEFAULT * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/ * nget nget-([^+%& ]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=3121&package_id=34721 * nted nted-([0-9.]+).tar.gz http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/sources/ * nickle nickle-(.*?).tar.gz http://nickle.org/release/ * obexftp DEFAULT http://sourceforge.net/projects/openobex/files/ * 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 opengrok-(.*?)-src.tar.gz http://opensolaris.org/os/project/opengrok/ * openswan-2.4.(.*?).tar.gz ftp://ftp.openswan.org/openswan/ * optipng DEFAULT SF-DEFAULT * osmo DEFAULT http://prdownloads.sourceforge.net/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/ * parted parted-(.*?)\.tar\. GNU-DEFAULT * patch patch-(.*?)\.tar\. GNU-DEFAULT * pam_mount DEFAULT SF-DEFAULT:pam-mount * pbm2l7k lexmark7000linux-(.*?).tar.gz http://www.ibiblio.org/pub/linux/hardware/drivers/ * pdfchain pdfchain-(.*?)\.tar\.gz http://sourceforge.net/projects/pdfchain/files/ * pdfmerge >pdfmerge-(.*?).tar.gz< http://sourceforge.net/project/showfiles.php?group_id=90404&package_id=95036 * perl-Ace AcePerl-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Ace/ * perl-Acme-PlayCode Acme-PlayCode-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Acme/ * perl-Algorithm-FastPermute Algorithm-FastPermute-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Algorithm/ * perl-Algorithm-Permute Algorithm-Permute-([^</]*) http://search.cpan.org/search%3fmodule=Algorithm::Permute * perl-Archive-Tar Archive-Tar-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Archive/ * perl-Archive-Zip Archive-Zip-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Archive/ * perl-Authen-Captcha Authen-Captcha-([^</]*) http://search.cpan.org/search%3fmodule=Authen::Captcha * perl-AutoXS-Header AutoXS-Header-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/AutoXS/ * perl-BSD-Resource BSD-Resource-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/BSD/ * 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 Bit-Vector-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Bit/ * perl-Business-ISBN Business-ISBN-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Business/ * perl-Business-ISBN-Data Business-ISBN-Data-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Business/ * perl-Capture-Tiny Capture-Tiny-([^</]*) http://search.cpan.org/search%3fmodule=Capture::Tiny * perl-Carp-Clan Carp-Clan-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Carp/ * perl-Class-Adapter Class-Adapter-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Class/ * perl-Class-Unload Class-Unload-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Class/ * perl-Class-XSAccessor Class-XSAccessor-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Class/ * perl-Class-XSAccessor-Array Class-XSAccessor-Array-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Class/ * perl-Compress-Bzip2 Compress-Bzip2-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Compress/ * perl-Compress-Raw-Bzip2 Compress-Raw-Bzip2-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Compress/ * perl-Compress-Raw-Zlib Compress-Raw-Zlib-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Compress/ * perl-Compress-Zlib Compress-Zlib-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Compress/ * perl-Config-General Config-General-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Config/ * perl-Convert-ASN1 Convert-ASN1-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Convert/ * perl-Crypt-OpenSSL-AES Crypt-OpenSSL-AES-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-OpenSSL-Bignum Crypt-OpenSSL-Bignum-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-OpenSSL-DSA Crypt-OpenSSL-DSA-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-OpenSSL-PKCS10 Crypt-OpenSSL-PKCS10-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-OpenSSL-Random Crypt-OpenSSL-Random-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-OpenSSL-RSA Crypt-OpenSSL-RSA-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-OpenSSL-X509 Crypt-OpenSSL-X509-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-Crypt-SSLeay Crypt-SSLeay-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Crypt/ * perl-DBD-CSV DBD-CSV-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/DBD/ * perl-DBD-MySQL DBD-MySQL-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/DBD/ * perl-DBD-Pg DBD-Pg-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/DBD/ * perl-DBD-SQLite DBD-SQLite-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/DBD/ * perl-DBI DBI-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/DBI/ * perl-Data-Dumper-Names Data-Dumper-Names-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Data/ * perl-Date-Calc Date-Calc-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Date/ * perl-Font-TTF Font-TTF-(\S+?)\.tar http://search.cpan.org/dist/Font-TTF/ * perl-HTML-Encoding HTML-Encoding-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/HTML/ * perl-HTML-Template-Pro HTML-Template-Pro-([^</]*) http://search.cpan.org/search%3fmodule=HTML::Template::Pro * perl-Module-Signature Module-Signature-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Module/ * perl-Net-Patricia \b\/Net-Patricia[-_]([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b http://search.cpan.org/dist/Net-Patricia/ * perl-Net-Whois Net-Whois-(.*?)\.tar\.gz http://search.cpan.org/dist/Net-Whois/ * perl-Net-Whois-IP Net-Whois-IP-(.*?)\.tar\.gz http://search.cpan.org/dist/Net-Whois-IP/ * perl-Object-MultiType Object-MultiType-([^</]*) http://search.cpan.org/search%3fmodule=Object::MultiType * perl-PDF-API2 PDF-API2-(.*?)\.tar\.gz http://search.cpan.org/dist/PDF-API2/ * perl-Set-IntSpan Set-IntSpan-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Set/ * perl-SGML-Parser-OpenSP SGML-Parser-OpenSP-(.*?)\.tar\. http://www.cpan.org/modules/by-module/SGML/ * perl-String-Random String-Random-([^</]*) http://search.cpan.org/search%3fmodule=String::Random * perl-TAP-Harness-Archive TAP-Harness-Archive-([^</]*) http://search.cpan.org/search%3fmodule=TAP::Harness::Archive * perl-Term-ReadLine-Gnu Term-ReadLine-Gnu-([^</]*) http://search.cpan.org/search%3fmodule=Term::ReadLine::Gnu * perl-Test-Mock-LWP Test-Mock-LWP-([^</]*) http://search.cpan.org/search%3fmodule=Test::Mock::LWP * perl-Test-WWW-Selenium Test-WWW-Selenium-([^</]*) http://search.cpan.org/search%3fmodule=Test::WWW::Selenium * perl-Text-Iconv Text-Iconv-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Text/ * perl-XML-Atom-SimpleFeed XML-Atom-SimpleFeed-([^</]*) http://search.cpan.org/search%3fmodule=XML::Atom::SimpleFeed * perl-XML-Smart XML-Smart-([^</]*) http://search.cpan.org/search%3fmodule=XML::Smart * perltidy Perl-Tidy-(\S+?)\.(?:t|zip) SF-DEFAULT * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300 * 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 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 php-(\d+\.\d+\.\d+)\.tar.bz2 http://www.php.net/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 * 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 * potrace potrace-(.*?)\.tar\.gz http://sourceforge.net/projects/potrace/files/ * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/ * 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 proxyknife-([^>]*?).tar.gz 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 * 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 http://code.google.com/p/pyicqt/downloads/list * PyMca pymca(.*?)-src\.tar\.gz http://sourceforge.net/projects/pymca/files/ * 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-cclib \bcclib[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b http://sourceforge.net/projects/cclib/files/ * python-dns <a href="kits/(.*)/">Stable</a> http://www.dnspython.org/ * python-elixir Elixir-(.*?).tar.gz http://cheeseshop.python.org/pypi/Elixir/ * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/ * python-lxml latest version is <a class="reference external" href="lxml-([0-9.]+)\.tgz http://codespeak.net/lxml/ * python-minimock DEFAULT http://pypi.python.org/packages/source/M/MiniMock/ * 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 psutil-(.*?).tar.gz http://psutil.googlecode.com/files/ * python-psyco Current.version.is.([0-9]+\..+?) http://psyco.sourceforge.net/download.html * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files * python-sphinx Sphinx-(.*?).tar.gz http://pypi.python.org/packages/source/S/Sphinx/ * python-storm storm-(.*?).tar.bz2 https://launchpad.net/storm/+download * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html * python-xkit <a href="/https/fedoraproject.org/xorgparser/trunk/([0-9.]*)" https://launchpad.net/x-kit * qiv DEFAULT http://spiegl.de/qiv/download/ * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b http://sourceforge.net/projects/qmforge/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 * qwt DEFAULT SF-DEFAULT * RackTables RackTables-(\d+\.\d+\.\d+)\.tar.gz http://racktables.org/files/ * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/ * 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/ * ReviewBoard ReviewBoard-([0-9.]+).tar.gz http://downloads.reviewboard.org/releases/ReviewBoard/1.0/ * 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 * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/ * rst2pdf rst2pdf-(.*?).tar.gz http://code.google.com/p/rst2pdf/downloads/list * 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 * 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/ * 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 * smem smem-([0-9\.]+)\.tar\.gz http://www.selenic.com/smem/download/ * soci soci-([0-9.]*)\.tar\.gz SF-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 * sparse sparse-(.*?).tar.bz2 http://www.kernel.org/pub/software/devel/sparse/dist/ * sqlite sqlite-(.*?).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/ * 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/ * sublib sublib-(.*?).zip http://sourceforge.net/project/showfiles.php?group_id=138366&package_id=151898 * 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 * swing-layout Version.([^.]*) https://swing-layout.dev.java.net/servlets/ProjectNewsList * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/ * sysconftool sysconftool-(.*?).tar.bz2 http://sourceforge.net/project/showfiles.php?group_id=5404&package_id=12779 * 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 * tcpdump tcpdump-(.*?)\.tar\. http://www.tcpdump.org/release/ * terminus-fonts terminus-font-([0-9\.]+)\.tar\.gz http://www.is-vn.bg/hamster/ * tesseract tesseract.([0-9\.]*).tar.gz http://code.google.com/p/tesseract-ocr/downloads/list * 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/ * transmission DEFAULT http://www.transmissionbt.com/download.php * tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/ * tla tla-(.*?).tar.gz http://ftp.gnu.org/gnu/gnu-arch/ * tmux DEFAULT SF-DEFAULT * towhee DEFAULT http://sourceforge.net/projects/towhee/files/ * 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 * udis86 DEFAULT SF-DEFAULT * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html * uncrustify >uncrustify-(.*?).tgz< http://sourceforge.net/project/showfiles.php?group_id=153164&package_id=169652 * unix2dos unix2dos-\(.*?).tar.gz http://www.xs4all.nl/~waterlan/dos2unix.html * 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/ * vala Vala (.*?) released http://live.gnome.org/Vala * valknut valknut-(.*?).tar.bz2 http://prdownloads.sourceforge.net/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/ * vmpsd vmpsd-(.*?).tar.gz http://sourceforge.net/projects/vmps/files/ * vym vym-([0-9.]*)-.*.src.rpm http://download.opensuse.org/repositories/home://insilmaril/openSUSE_11.1/src/ * wannier90 DEFAULT http://quasiamore.mit.edu/wannier/code/ * warzone2100 warzone2100-(.*?).tar.bz2 http://wz2100.net/download * wfmath wfmath-([0-9\.]*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=11799&package_id=130616 * 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/ * 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 * xalan-c Xalan-C\+\+.version.(.*?)< http://xml.apache.org/xalan-c/ * xar xar-([0-9.]*?).tar.gz http://code.google.com/p/xar/downloads/list * 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/ * 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/ * xorg-x11-drv-radeonhd xf86-video-radeonhd-([0-9\.]+)\.tar\.bz2 ftp://ftp.freedesktop.org/pub/individual/driver/ * xpa xpa-(.*?).tar.gz http://hea-www.harvard.edu/saord/xpa/ * xsane xsane-([0-9]\.[0-9][0-9]*?).tar.gz ftp://ftp.sane-project.org/pub/sane/xsane/ * xterm xterm-(.*?)\.tgz ftp://invisible-island.net/xterm/ * 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/ * z88dk z88dk-src-(.*?)\.tgz http://sourceforge.net/project/showfiles.php?group_id=2917&package_id=2867 * zidrav zidrav4unix-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=50757&package_id=51175 * 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:
- corsepiu
- ensc
- tgl
Related Projects
- Debian External Health Status
- Custom script for packages from Caolán McNamara
- OSWatershed - Monitors several distributions at once
- Perl package monitoring
- Reports from Remi PECL, pear and R extensions upstream comparison and stable repo with rawhide comparison for all packages