From Fedora Project Wiki

(removed aldrin and libzzub (orphaned))
(Undo revision 624539 by Oturpe (talk))
Tag: Undo
 
Line 1: Line 1:
<!-- page was renamed from MichałBentkowski/FEver
{{admon/warning |This page has been moved out of the wiki. The current version of this document is located at https://docs.fedoraproject.org/en-US/package-maintainers/Upstream_Release_MonitoringPlease update your bookmarks.}}
-->
= FEver - FEdora version =
 
 
== General Information ==
'''FEver''' (''FEdora versions'') aims to be a simple and easy way to track upstream changes in Fedora's repository. Some packages don't provide any possibility to check their changes. '''FEver''' is written to check upstream version changes if possible. At (ir)regular intervals it checks for a new version and if it's found, '''FEver''' will put a new ticket on [http://bugzilla.redhat.com bugzilla]  (an example you may see here: [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211783 #211783]  or [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=220742 #220742] ).
 
== 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 [[PackagesList|  List Of Packages]]  section. Also you can add your package name to [[CheckMyPackage|  Check My Package]]  Section and I will make everything that's needed to make your package be checked by '''FEver'''.
 
=== What Is The Format Of The List? ===
It should be easy to guess by looking at the [[PackagesList|  List Of Packages]] . It contains three fields: <code><package name></code>, <code><file name></code> and <code><url></code>.
* <code><package name></code> - must be the name of SRPM, CVS branch and spec file name. If your package spec creates a few packages you needn't specify them - only the main one.
* <code><file name></code> - in fact, it doesn't have to be a file name but in most cases it is. <code><file name></code> is the regex used to check the version of a package. Usually, it should look like this: <code><package name>-(.*?).tar.bz2</code>, but obviously it doesn't have to. I suggest to use a file name, because it is probably the easiest way to check what the newest application version is. You can find examples on how to make the regex in the [[HowToMakeRegex|  How To Make Regex]]  section.
* <code><url></code> - contains an URL, where '''FEver''' will try to find the newest version. If your package is hosted at SourceForge, you should use <code>http://prdownloads.sourceforge.net/<package name></code> format.
 
{{Anchor|HowToMakeRegex}}
=== How To Make Regex? ===
This is the most important thing in adding your package to '''FEver'''. I've made a simple application to make checking regexes easier. It is called [#fever-check FEver-check]  (check the [#fever-check FEver-check]  section to find out how to get it).
The first thing we should do is to find a proper URL, where '''FEver''' will try to find the newest version. Let's take <code>bugzilla</code> as an example. Its official site is <code>http://www.bugzilla.org</code>. You need to get to <code>Download</code> section and you'll find something like '''Stable Release (2.22.1)''' and few lines below there is a url to download <code>bugzilla</code>. Let's replace a version string by <code>(.*?)</code> and try to give that URL to [#fever-check FEver-check] .
<pre>
$ python ./fever-check.py
URL: http://ftp.mozilla.org/pub/mozilla.org/webtools/
Filename: (regex): bugzilla-(.*?).tar.gz
['2.23.3', '2.23.3', '2.23.2', '2.23.2', '2.23.1', '2.23.1', '2.22.1', '2.22.1', '2.22rc1', '2.22rc1', '2.22', '2.22', '2.21.1', '2.21.1', '2.20.3', '2.20.3', '2.20.2', '2.20.2', '2.20.1', '2.20.1', '2.20rc2', '2.20rc2', '2.20rc1', '2.20rc1', '2.20', '2.20', '2.19.3', '2.19.3', '2.19.2', '2.19.2', '2.19.1', '2.19.1', '2.18.6', '2.18.6', '2.18.5', '2.18.5', '2.18.4', '2.18.4', '2.18.3', '2.18.3', '2.18.2', '2.18.2', '2.18.1', '2.18.1', '2.18rc3', '2.18rc3', '2.18rc2', '2.18rc2', '2.18rc1', '2.18rc1', '2.18', '2.18', '2.16.11', '2.16.11', '2.16.10', '2.16.10', '2.16.9', '2.16.9', '2.16.8', '2.16.8', '2.16.7', '2.16.7', '2.16.6', '2.16.6', 'submit-0.6', 'submit-0.6', 'submit-0.5', 'submit-0.5', 'STABLE', 'STABLE', 'LATEST', 'LATEST']
Filename: (regex):
</pre>
It looks pretty good, but as you can see there are records like <code>'submit-0.5</code>' or <code>'STABLE'</code>. There is a possibility (a small one) that these unwanted records may confuse '''FEver''' check. To improve it, you can make a simple change. Program version always starts with a number, so let's try to put it into the regex:
<pre>
Filename: (regex): bugzilla-([0-9] .*?).tar.gz
['2.23.3', '2.23.3', '2.23.2', '2.23.2', '2.23.1', '2.23.1', '2.22.1', '2.22.1', '2.22rc1', '2.22rc1', '2.22', '2.22', '2.21.1', '2.21.1', '2.20.3', '2.20.3', '2.20.2', '2.20.2', '2.20.1', '2.20.1', '2.20rc2', '2.20rc2', '2.20rc1', '2.20rc1', '2.20', '2.20', '2.19.3', '2.19.3', '2.19.2', '2.19.2', '2.19.1', '2.19.1', '2.18.6', '2.18.6', '2.18.5', '2.18.5', '2.18.4', '2.18.4', '2.18.3', '2.18.3', '2.18.2', '2.18.2', '2.18.1', '2.18.1', '2.18rc3', '2.18rc3', '2.18rc2', '2.18rc2', '2.18rc1', '2.18rc1', '2.18', '2.18', '2.16.11', '2.16.11', '2.16.10', '2.16.10', '2.16.9', '2.16.9', '2.16.8', '2.16.8', '2.16.7', '2.16.7', '2.16.6', '2.16.6']
</pre>
Now it looks much better. Another way to check <code>bugzilla</code> version is to use the download site. You can use a heading: '''Stable Release (2.22.1)'''. Example:
<pre>
$ python ./fever-check.py
URL: http://www.bugzilla.org/download/
Filename: (regex): Stable Release \((.*?)\)
['2.22.1']
</pre>
{{Admon/warning | Don't forget to escape <code>(</code> and <code>)</code> chars! | You need to escape <code>(</code> and <code>)</code> chars because they are used on the page. Unescaped brackets are used by regex parser as grouping chars. So if you don't escape brackets in that case, they will be included in version string (and this is unwanted). Read [http://docs.python.org/lib/re-syntax.html Regular Expressions Syntax]  for more information.}}
 
{{Anchor|fever-check}}
 
== FEver-check ==
'''FEver-check''' is a simple python script that makes creating regexes much easier. You can download it [http://ecik.nonlogic.org/fever-check.tar here] . This archive contains two files, unpack them wherever you want to and run <code>fever-check.py</code>. Script will ask you for URL and regex. You can quit an application at any time by pressing '''[CTRL] '''+'''C''' keys. If you want to enter another URL than you did before, just press '''[CTRL] '''+'''D''' and you'll get back to typying URL.
 
{{Anchor|feedback}}
== Feedback ==
If you have any questions, suggestions, you found a bug etc. feel free to mail me [[MailTo(mr DOT ecik AT gmail DOT com)] .
 
{{Anchor|CheckMyPackage}}
== 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 [[PackagesList|  List Of Packages]]  section. It would be nice, if you added URL aside of your package name.
<pre>
 
* libedit http://www.thrysoee.dk/editline/
* libical http://freeassociation.sourceforge.net/
* osmo http://clay.ll.pl/osmo/
* checkgmail http://checkgmail.sf.net
* bcrypt http://bcrypt.sf.net
* lxsplit http://lxsplit.sf.net
* gyachi http://gyachi.sf.net
* pdfmerge http://microtronyx.com/pdfmerge/
 
</pre>
 
{{Anchor|PackagesList}}
 
== List Of Packages ==
<pre>
* a2ps Current.Version.is.([0-9a-z.]+) http://www.inf.enst.fr/~demaille/a2ps/
* abcde abcde[_-](.*?)(?:\.orig)\.tar\. http://ftp.debian.org/debian/pool/main/a/abcde/
* abook abook-(0.*?).tar.gz http://abook.sourceforge.net/devel/
* aircrack-ng aircrack-ng-([0-9][0-9.]*?).tar.gz http://download.aircrack-ng.org/
* alsa-firmware alsa-firmware-(\d+\.\d+\.\d+)\.tar.bz2 ftp://ftp.alsa-project.org/pub/firmware/
* 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/
* archimedes archimedes-(.*?).tar.gz ftp://ftp.gnu.org/gnu/archimedes/
* aria2 aria2-(.*?).tar.bz2 http://prdownloads.sourceforge.net/aria2
* atlascpp Atlas-C\+\+-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* awstats awstats-(.*?).tar.gz http://prdownloads.sourceforge.net/awstats
* blender blender-(.[^-]*?)\.tar\.gz http://download.blender.org/source/
* blktrace blktrace-([0-9\.].*?).tar.bz2 http://brick.kernel.dk/snaps/
* bmpx bmpx-(\d*\.\d*\.\d*(?:\.\d*)?)\.tar\.bz2 http://files.backtrace.info/releases/0.40/
* bodr bodr-(.*?).tar.bz2 http://prdownloads.sourceforge.net/bodr
* 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/
* bygfoot bygfoot-(.[^-]*?).tar.bz2 http://prdownloads.sourceforge.net/bygfoot
* c2050 c2050-(.*?).tar.gz http://www.prato.linux.it/~mnencia/lexmark2050/files/
* ccache ccache-(.+?)\.tar http://samba.org/ftp/ccache/
* CCfits CCfits-([0-9].*?).tar.gz http://heasarc.gsfc.nasa.gov/fitsio/CCfits/
* cd-discid cd-discid[_-](.*?)(?:\.orig)\.tar\. http://ftp.debian.org/debian/pool/main/c/cd-discid/
* cdlabelgen cdlabelgen-(.*?).tgz http://www.aczoom.com/tools/cdinsert/
* centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
* chemical-mime-data chemical-mime-data-(.*?).tar.gz http://prdownloads.sourceforge.net/chemical-mime
* chemtool chemtool-([.0-9]*?).tar.gz http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
* clamav clamav-(.*?).tar.gz http://prdownloads.sourceforge.net/clamav
* 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
* crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
* crossvc crossvc-(.*?)\-generic-src\.tgz http://crossvc.com/index.php?option=com_content&task=view&id=21&Itemid=34
* cssed cssed-([0-9].*?)\.tar.gz http://prdownloads.sourceforge.net/cssed
* cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
* ctorrent ctorrent-(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
* cups cups-(\d\.\d\.\d)-source\.tar\.bz2 http://www.cups.org/software.php
* cupsddk cupsddk-(\d\.\d\.\d)-source\.tar\.bz2 http://www.cups.org/ddk/software.php
* cyphesis cyphesis-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
* dblatex dblatex-(.*?).tar.bz2 http://prdownloads.sourceforge.net/dblatex
* debootstrap debootstrap_(.*?).tar.gz http://ftp.debian.org/debian/pool/main/d/debootstrap/
* doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
* dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html
* e2fsprogs e2fsprogs-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/e2fsprogs
* e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
* ed2k_hash ed2k_hash-(.*?).tar.gz http://prdownloads.sourceforge.net/ed2k-tools
* 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-(.*?).zip ftp://ftp.gnu.org/pub/gnu/auctex/
* emacs-common-muse muse-(.*?).tar.gz http://download.gna.org/muse-el/
* emacs-vm vm-([^v]*?).tgz http://download.savannah.nongnu.org/releases/viewmail/
* eris eris-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* ext3grep ext3grep-(.*?).tar.gz http://code.google.com/p/ext3grep/downloads/list
* fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
* fetchlog fetchlog-(.*?).tar.gz http://prdownloads.sourceforge.net/fetchlog
* ffsb ffsb-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/ffsb
* fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
* freedroidrpg freedroidrpg-(.*?).tar.bz2 http://prdownloads.sourceforge.net/freedroid
* funtools funtools-(.*?).tar.gz http://hea-www.harvard.edu/saord/funtools/
* fusecompress fusecompress-(.*).tar.gz http://miio.net/fusecompress/
* gajim gajim-(.*?).tar.gz http://gajim.org/downloads/
* gengetopt gengetopt-(.*?).tar.gz ftp://ftp.gnu.org/gnu/gengetopt/
* gg2 gg2-(.*?).tar.bz2 http://prdownloads.sourceforge.net/ggadu
* giggle giggle-(.*?).tar.gz http://ftp.imendio.com/pub/imendio/giggle/src/
* gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
* git git-(.*?).tar.bz2 http://kernel.org/pub/software/scm/git/
* glade3 Glade (.*?) </b><b> released! http://glade.gnome.org/
* 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-build gnome-build-(.*?).tar.gz http://ftp.acc.umu.se/pub/GNOME/sources/gnome-build/0.2/
* gnome-password-generator gnome-password-generator-(.*?).tar.gz http://downloads.sourceforge.net/gnome-password/
* gnomeradio gnomeradio-(.*?).tar.gz http://www.wh-hms.uni-ulm.de/~mfcn/gnomeradio/packages/
* gnu-smalltalk smalltalk-(.*?)\.tar\.gz ftp://ftp.gnu.org/gnu/smalltalk
* goffice goffice-(.*?).tar.bz2 http://ftp.gnome.org/pub/GNOME/sources/goffice/0.6/
* goffice04 goffice-(.*?).tar.bz2 http://ftp.gnome.org/pub/GNOME/sources/goffice/0.4/
* google-gadgets-for-linux google-gadgets-for-linux-(.*?).tar.gz http://code.google.com/p/google-gadgets-for-linux/
* guilt guilt-([0-9\.]*?).tar.bz2 http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/
* gxine gxine-(.*?).tar.bz2 http://prdownloads.sourceforge.net/xine/
* hping3 hping3-(.*?).tar.gz http://www.hping.org/download.php
* hplip hplip-([^ ]*).tar.gz http://prdownloads.sourceforge.net/hplip
* httrack httrack-(.*?).tar.gz http://www.httrack.com/page/2/en/index.html
* inadyn inadyn.v(.*?).zip http://inadyn.ina-tech.net/readme.html
* inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/
* ipython ipython-(.*?).tar.gz http://ipython.scipy.org/dist/
* isync isync-(.*?).tar.gz http://prdownloads.sourceforge.net/isync/
* java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
* kdesvn kdesvn-(.*)\.tar http://kdesvn.alwins-world.de/trac.fcgi/downloads/
* kdiff3 kdiff3-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=58666
* kile Latest available stable version: <a href="download.php">(.*?)</a>. http://kile.sourceforge.net/
* komparator komparator-(.*?).tar.bz2 http://prdownloads.sourceforge.net/komparator/
* 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/
* ksudoku ksudoku-(.*?)\.tar.gz http://prdownloads.sourceforge.net/ksudoku
* kyum kyum-(.*?)\.tar\.gz http://downloads.sourceforge.net/kyum
* libEMF libEMF-(.*?).tar.gz http://prdownloads.sourceforge.net/pstoedit
* libextractor libextractor-(.*?).tar.gz http://gnunet.org/libextractor/download
* libgadu w wersji ([0-9\.]*) http://toxygen.net/libgadu/
* libgdl gdl-(.*?).tar.gz http://ftp.acc.umu.se/pub/GNOME/sources/gdl/0.7/
* libmodelfile libmodelfile-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* 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://prdownloads.sourceforge.net/tleenx
* lightning lightning-(.*?)\.tar\.gz ftp://alpha.gnu.org/pub/gnu/lightning
* logserial logserial-(.*?).tar.gz http://www.ibiblio.org/pub/Linux/system/serial/
* luma luma-(.*?)\.tar\.bz2 http://downloads.sourceforge.net/luma
* manaworld tmw-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/themanaworld
* mercator mercator-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* mercurial mercurial-(.*?).tar.gz http://www.selenic.com/mercurial/release
* milter-greylist milter-greylist-(2\..*).tgz ftp://ftp.espci.fr/pub/milter-greylist/
* mimetic mimetic-(.*?).tar.gz http://codesink.org/download
* min12xxw min12xxw-(.*?).tar.gz http://hinterbergen.de/mala/min12xxw/
* mkvtoolnix mkvtoolnix-([.0-9]*?).tar.bz2 http://www.bunkus.org/videotools/mkvtoolnix/sources/
* monotone (0\.[0-9]+) http://monotone.ca/downloads/
* museek+ museek\+-(.*?).tar.bz2 http://prdownloads.sourceforge.net/museek-plus
* mysqltuner mysqltuner-(.*?)\.pl http://mysqltuner.com/releases/
* netmask netmask[_-](.*?)\.tar http://ftp.debian.org/debian/pool/main/n/netmask/
* newsx newsx-(.*?).tar.gz ftp://ftp.kvaleberg.com/pub/
* nget nget-([^+%&]*?).tar.gz http://downloads.sourceforge.net/nget/
* obexftp obexftp-(.*?).tar.bz2 http://triq.net/obexftp/
* odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
* openbabel openbabel-([0-9].*?).tar.gz http://downloads.sourceforge.net/openbabel/
* 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/
* ovaldi ovaldi-(.*?)-src.tar.bz2 http://prdownloads.sourceforge.net/ovaldi/
* pbm2l7k lexmark7000linux-(.*?).tar.gz http://www.ibiblio.org/pub/linux/hardware/drivers/
* perl-Ace AcePerl-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Ace/
* 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-Authen-Captcha Authen-Captcha-([^</]*) http://search.cpan.org/search%3fmodule=Authen::Captcha
* perl-Config-General Config-General-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Config/
* 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-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-Object-MultiType Object-MultiType-([^</]*) http://search.cpan.org/search%3fmodule=Object::MultiType
* perl-Set-IntSpan Set-IntSpan-(.*?)\.tar\.gz http://www.cpan.org/modules/by-module/Set/
* 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
* php php-(\d+\.\d+\.\d+)\.tar.bz2 http://www.php.net/downloads.php
* php-pear PEAR-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PEAR/download
* 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-pecl-apc APC-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/APC
* picard picard-(.*?).tar.gz http://musicbrainz.org/doc/PicardDownload
* pida PIDA-(.*?).tar.gz http://pida.co.uk/files/releases/
* poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
* proxyknife proxyknife-(.*?).tar.gz ftp://ftp.gnu.org/gnu/proxyknife/
* ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
* pwgen pwgen-(.*?).tar.gz http://prdownloads.sourceforge.net/pwgen
* pyicq-t pyicq-t-(.*?).tar.gz http://code.google.com/p/pyicqt/downloads/list
* pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
* pyroom pyroom-(.*?)\.tar https://edge.launchpad.net/pyroom/+download
* python-dns <a href="kits/(.*)/">Stable</a> http://www.dnspython.org/
* python-elixir Elixir-(.*?).tar.gz http://cheeseshop.python.org/pypi/Elixir/
* python-lxml latest version is <a class="reference" href="lxml-([0-9.]+)\.tgz http://codespeak.net/lxml/
* python-mutagen mutagen-(.*?).tar.gz http://www.sacredchao.net/~piman/software/
* 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
* qfits Latest version: (.*?) rel http://www.eso.org/projects/aot/qfits/index.html
* qof qof-(.*?).tar.gz http://prdownloads.sourceforge.net/qof
* qt-qsa qsa-x11-free-(.*?\..*?).tar.gz ftp://ftp.trolltech.com/qsa/source/
* 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/
* rpl rpl-(.*?).tar.gz http://prdownloads.sourceforge.net/rpl
* s3cmd s3cmd-(.*?).tar.gz http://prdownloads.sourceforge.net/s3tools/
* sage sage-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* 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://prdownloads.sourceforge.net/worldforge
* sonata sonata-(.*?).tar.gz http://sonata.berlios.de/download.html
* sparse sparse-(.*?).tar.bz2 http://www.kernel.org/pub/software/devel/sparse/dist/
* sshfp sshfp-(.*?).tar.gz ftp://ftp.xelerance.com/sshfp/
* starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
* steghide steghide-(.*?)\.tar\.gz http://downloads.sourceforge.net/steghide
* stellarium stellarium-(.*?)\.tar\.gz http://downloads.sourceforge.net/stellarium
* stgit stgit-(.*?).tar.gz http://homepage.ntlworld.com/cmarinas/stgit/
* sublib sublib-(.*?).zip http://prdownloads.sourceforge.net/sublib
* 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
* swing-layout Version.([^.]*) https://swing-layout.dev.java.net/servlets/ProjectNewsList
* sysconftool sysconftool-(.*?).tar.bz2 http://prdownloads.sourceforge.net/courier
* tango-icon-theme-extras tango-icon-theme-extras-([0-9].*?).tar.gz http://tango.freedesktop.org/Tango_Icon_Library
* tango-icon-theme tango-icon-theme-([0-9].*?).tar.gz http://tango.freedesktop.org/Tango_Icon_Library
* terminus-font terminus-font-([0-9.]+)\.tar\.gz http://www.is-vn.bg/hamster/jimmy-en.html
* tesseract tesseract.([0-9\.]*).tar.gz http://code.google.com/p/tesseract-ocr/downloads/list
* tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/
* tinyca2 tinyca2-([^<>"]*).tar.bz2 http://tinyca.sm-zone.net/
* tla tla-(.*?).tar.gz http://ftp.gnu.org/gnu/gnu-arch/
* tor tor-(0\.1\.1\..*).tar.gz" http://tor.eff.org/dist/
* tree tree-([0-9a-z.]+).tgz http://mama.indstate.edu/users/ice/tree/
* tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
* uncrustify uncrustify-(.*?).tgz http://prdownloads.sourceforge.net/uncrustify
* up-imapproxy up-imapproxy-(.*?).tar.gz http://www.imapproxy.org/downloads/
* varconf varconf-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* vdr-wapd vdr-wapd-(.+?)\.t http://www.heiligenmann.de/vdr/download/
* warzone2100 warzone2100-(.*?).tar.bz2 http://wz2100.net/download
* wfmath wfmath-([0-9\.]*?).tar.gz http://prdownloads.sourceforge.net/worldforge
* wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
* xalan-c Xalan-C\+\+.version.(.*?)< http://xml.apache.org/xalan-c/
* xchat Source: (.*?)</a> http://www.xchat.org/
* xdrawchem xdrawchem-(.*?).tar.gz http://prdownloads.sourceforge.net/xdrawchem
* xfsdump xfsdump_(.*?)-1.tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
* xfsprogs xfsprogs_(.*?)-1.tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
* xl2tpd xl2tpd-1.(.*?).tar.gz ftp://ftp.xelerance.com/xl2tpd/
* xmlrpc-c xmlrpc-c-(1\.06\.[^?&]*).tgz http://prdownloads.sourceforge.net/xmlrpc-c
* xmltoman xmltoman-(.*?).tar.gz http://prdownloads.sourceforge.net/xmltoman/
* 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/
* z88dk z88dk-src-(.*?).tgz http://prdownloads.sourceforge.net/z88dk
* zidrav zidrav4unix-(.*?).tar.gz http://prdownloads.sourceforge.net/zidrav
* zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf
</pre>

Latest revision as of 05:58, 15 September 2021

Warning.png
This page has been moved out of the wiki. The current version of this document is located at https://docs.fedoraproject.org/en-US/package-maintainers/Upstream_Release_Monitoring/ Please update your bookmarks.