From Fedora Project Wiki

(fix libnfc)
m (python-nikola)
Line 1: Line 1:
{{autolang|base=yes}}
= Fedora Upstream Release Monitoring =
= Fedora Upstream Release Monitoring =


Line 16: Line 15:
=== What Is The Format Of The List? ===
=== What Is The Format Of The List? ===
It contains three fields: <code><package name></code>, <code><version regex></code> and <code><url></code>.
It contains three fields: <code><package name></code>, <code><version regex></code> and <code><url></code>.
* <code><package name></code> - the name of your package
* <code><package name></code> - the name of your package in Fedora. You can use globbing/wildcards supported by the [http://docs.python.org/2/library/fnmatch.html python fnmatch] module. It matches againsg source RPMS in Fedora Rawhide.
* <code><version regex></code> - The regular expression used to find the upstream versions of a package. An example is <code>\b<package name>[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?\.(?:tar|t[bglx]z|tbz2|zip)\b</code>, which usually works for packages distributed by sourceforge. An alias for this regular expression is <code>DEFAULT</code>. An alternative value for the package name can be set using a colon: <code>DEFAULT:foo</code>, e.g. if the tarball is called <code>pam-mount-1.33.tar.bz2</code>, but the Fedora package is <code>pam_mount</code>.  
* <code><version regex></code> - The regular expression used to find the upstream versions of a package. Examples can be found in the list. A default regex aliased DEFAULT usually works for packages distributed by sourceforge. An alternative value for the package name can be set using a colon: <code>DEFAULT:foo</code>, e.g. if the tarball is called <code>pam-mount-1.33.tar.bz2</code>, but the Fedora package is <code>pam_mount</code>.  
* <code><url></code> - contains an URL, where the upstream publishes release tarballs or mentions the latest version. For packages from sourceforge, <code>https://sourceforge.net/projects/<package name>/files/</code> with the above example regular expression often works. An alias for this URL is <code>SF-DEFAULT</code>. This alias will be updated in case future changes to sourceforge require a change. The name override works here, too. An attempt to replace all occurrences of <code>/*/</code> in the URL with the newest subdirectory at that level is made as well, which is useful for versioned subdirectories.
* <code><url></code> - contains an URL, where the upstream publishes release tarballs or mentions the latest version. For packages from sourceforge, <code>https://sourceforge.net/projects/<package name>/files/</code> with the above example regular expression often works. An alias for this URL is <code>SF-DEFAULT</code>. This alias will be updated in case future changes to sourceforge require a change. The name override works here, too. An attempt to replace all occurrences of <code>/*/</code> in the URL with the newest subdirectory at that level is made as well, which is useful for versioned subdirectories.


=== URL Aliases ===
=== URL/regex Aliases ===
There are some URL aliases supported, that you can use instead of the normal URL. The "%s" formatstring is replaced by the package name or by the value specified after a colon, e.g. for the package pam_mount SF-DEFAULT:pam-mount is used. This is called "name-override".
There are some aliases supported for URLs or regexes. A full list can be found in the [http://fedorapeople.org/cgit/till/public_git/cnucnu.git/tree/cnucnu/__init__.py#n25 source code]. If no implicit regex is defined, the DEFAULT regex is assumed. For some aliases a prefix is removed from the name before evaluating it, for these one or more prefixes are defined. If the automatic name processing is inappropriate, the name can be overridden using a colon, for example as follows: <code>gnuchess DEFAULT GNU-DEFAULT:chess</code>.
 
* SF-DEFAULT: http://sourceforge.net/api/file/index/project-name/%s/mtime/desc/limit/20/rss
* FM-DEFAULT: http://freshmeat.net/projects/%s
* GNU-DEFAULT: http://ftp.gnu.org/gnu/%s/
* CPAN-DEFAULT: http://search.cpan.org/dist/%s/ (if name-override is not used, a "perl-" prefix is removed from the name)
* HACKAGE-DEFAULT: http://hackage.haskell.org/packages/archive/%s/ (if name-override is not used, a "ghc-" prefix is removed from the name)
* DEBIAN-DEFAULT: http://ftp.debian.org/debian/pool/main/first-char-of-%s/%s/
* GOOGLE-DEFAULT: http://code.google.com/p/%s/downloads/list
* PYPI-DEFAULT: http://pypi.python.org/packages/source/first-char-of-%s/%s
* PEAR-DEFAULT: http://pear.php.net/package/%s/download (if name-override is not used, a "php-pear-" prefix is removed from the name)
* PECL-DEFAULT: http://pecl.php.net/package/%s/download (if name-override is not used, a "php-pecl-" prefix is removed from the name)
* LP-DEFAULT: https://launchpad.net/%s/+download
* GNOME-DEFAULT: http://download.gnome.org/sources/%s/*/
* RUBYGEMS-DEFAULT: http://rubygems.org/api/v1/gems/%s.json (if name-override is not used, a "rubygems-" prefix is removed from the name)
 


{{Anchor|HowToMakeRegex}}
{{Anchor|HowToMakeRegex}}


=== How can I develop a regex? ===
=== How can I develop a regex? ===
{{Admon/warning | Command-line changes in Fedora 18 | Starting with Fedora 18 you need to use <code>cnucnu shell</code> to run the cnucnu shell.}}
<code>cnucnu shell</code> can be used to interactively develop a regular expression. If your package is hosted at sourceforge, run it and try <code>name <package-name></code>, 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.
<code>cnucnu --shell</code> can be used to interactively develop a regular expression. If your package is hosted at sourceforge, run it and try <code>name <package-name></code>, 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:
Here is an example session for bugzilla:


<pre>
<pre>
$ cnucnu --shell
$ cnucnu shell
  None None  URL:> http://ftp.mozilla.org/pub/mozilla.org/webtools/
  None None  URL:> http://ftp.mozilla.org/pub/mozilla.org/webtools/
  None http://ftp.mozilla.org/pub/mozilla.org/webtools/  Regex:> bugzilla-(.*?).tar.gz
  None http://ftp.mozilla.org/pub/mozilla.org/webtools/  Regex:> bugzilla-(.*?).tar.gz
Line 64: Line 47:
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:
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>
<pre>
$ cnucnu --shell
$ cnucnu shell
  None None  URL:> http://www.bugzilla.org/download/
  None None  URL:> http://www.bugzilla.org/download/
  None http://www.bugzilla.org/download/  Regex:> Stable Release \((.*?)\)
  None http://www.bugzilla.org/download/  Regex:> Stable Release \((.*?)\)
Line 74: Line 57:


{{Anchor|fever-check}}
{{Anchor|fever-check}}
=== Regex Aliases ===
Like there are aliases for URLs, there are also some for regexes:
* DEFAULT - a complex regex to match usual tarballs, supports name-override
* CPAN-DEFAULT - if name-override is not used, a "perl-" prefix is removed from the name and the DEFAULT regexp is used for matching
* PEAR-DEFAULT - if name-override is not used, a "php-pear-" prefix is removed from the name and the DEFAULT regexp is used for matching
* PECL-DEFAULT - if name-override is not used, a "php-pecl-" prefix is removed from the name and the DEFAULT regexp is used for matching
* FM-DEFAULT - a regex to work with the respective URL alias
* HACKAGE-DEFAULT - a regex to work with the respective URL alias
* RUBYGEMS-DEFAULT - a regexp to match the version of gem in JSON, provided by respective URL alias
{{Anchor|feedback}}
{{Anchor|feedback}}


== Bugzilla bugs by upstream-release-monitoring ==
== Bugzilla bugs by upstream-release-monitoring ==


[https://bugzilla.redhat.com/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=MODIFIED&bug_status=ON_DEV&bug_status=ON_QA&bug_status=VERIFIED&bug_status=RELEASE_PENDING&bug_status=POST&classification=Fedora&email1=upstream-release-monitoring%40fedoraproject.org&emailreporter1=1&emailtype1=substring&query_format=advanced&order=bug_id%20DESC&query_based_on= OPEN bugs]
[https://bugzilla.redhat.com/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=MODIFIED&bug_status=ON_DEV&bug_status=ON_QA&bug_status=VERIFIED&bug_status=RELEASE_PENDING&bug_status=POST&classification=Fedora&columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Copendate&email1=upstream-release-monitoring%40fedoraproject.org&emailreporter1=1&emailtype1=substring&list_id=1733771&order=changeddate%20DESC%2Cbug_id%20DESC&query_based_on=&query_format=advanced OPEN bugs]


[https://bugzilla.redhat.com/buglist.cgi?bug_status=CLOSED&classification=Fedora&email1=upstream-release-monitoring%40fedoraproject.org&emailreporter1=1&emailtype1=substring&query_format=advanced&order=bug_id%20DESC&query_based_on= CLOSED bugs]
[https://bugzilla.redhat.com/buglist.cgi?bug_status=CLOSED&classification=Fedora&email1=upstream-release-monitoring%40fedoraproject.org&emailreporter1=1&emailtype1=substring&order=changeddate%20DESC%2Cbug_id%20DESC&query_based_on=&query_format=advanced CLOSED bugs]


== Last output log ==
== Last output log ==
Line 101: Line 71:
== Feedback ==
== Feedback ==
If you have any questions or suggestions, you can contact [[User:till|Till Maas]].
If you have any questions or suggestions, you can contact [[User:till|Till Maas]].
== NOTICES ==
Google Code does not allow to create new downloads starting on January 15, 2014: http://google-opensource.blogspot.com/2013/05/a-change-to-google-code-download-service.html


{{Anchor|CheckMyPackage}}
{{Anchor|CheckMyPackage}}
== Check My Package, please! ==
== 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.
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>
<pre>
* PKGNAME URL
* PKGNAME URL
* qt-qsa ftp://ftp.trolltech.com/qsa/source/
* gimp-paint-studio http://code.google.com/p/gps-gimp-paint-studio/
* campivisivi-titillium-fonts http://www.campivisivi.net/titillium/
* azureus(vuze) https://www.vuze.com/
* drupal6-features_extra http://drupal.org/project/features_extra
* arptables http://ebtables.sf.net
* ebtables http://ebtables.sf.net
* firebird http://www.firebirdsql.org/en/server-packages/
* lockdev http://alioth.debian.org/projects/lockdev/
 
* UPSTREAM SERVER DOWN
* ghasher http://asgaard.homelinux.org/code/ghasher/
* ghasher http://asgaard.homelinux.org/code/ghasher/
* libmx http://source.clutter-project.org/sources/mx/
* libmx http://source.clutter-project.org/sources/mx/
* six http://six.retes.hu/download/
* six http://six.retes.hu/download/
* swing-layout https://swing-layout.dev.java.net/servlets/ProjectNewsList
* swing-layout https://swing-layout.dev.java.net/servlets/ProjectNewsList
* torque http://www.clusterresources.com/downloads/torque/
* lockdev http://alioth.debian.org/projects/lockdev/
* nawk http://www.cs.princeton.edu/~bwk/btl.mirror/index.html
* lynx http://lynx.isc.org/
* libcap http://sites.google.com/site/fullycapable/
* guilt http://www.josefsipek.net/ http://repo.or.cz/w/guilt.git
* wvdial http://alumnit.ca/wiki/index.php?page=DownloadReleases
* wvdial http://alumnit.ca/wiki/index.php?page=DownloadReleases
* latencytop http://latencytop.org
* bltk http://www.lesswatts.org/patches/bltk/
</pre>
</pre>


Line 124: Line 103:
<pre>
<pre>
* aajohan-comfortaa-fonts http://aajohan.deviantart.com/art/Comfortaa-font-105395949
* aajohan-comfortaa-fonts http://aajohan.deviantart.com/art/Comfortaa-font-105395949
* aspell-af aspell-af-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/af/
* aspell-ar aspell6-ar-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ar/
* aspell-bg aspell6-bg-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bg/
* aspell-bn aspell6-bn-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bn/
* aspell-br aspell-br-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/br/
* aspell-ca aspell6-ca-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ca/
* aspell-cs aspell6-cs-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cs/
* aspell-cy aspell-cy-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cy/
* aspell-da aspell5-da-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/da/
* aspell-de aspell6-de-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/de/
* aspell-el aspell-el-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/el/
* aspell-en aspell6-en-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/en/
* aspell-es aspell6-es-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/es/
* aspell-fi aspell6-fi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fi/
* aspell-fo aspell5-fo-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fo/
* aspell-fr aspell-fr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fr/
* aspell-ga aspell5-ga-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ga/
* aspell-gd aspell5-gd-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gd/
* aspell-gl aspell6-gl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gl/
* aspell-gu aspell6-gu-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gu/
* aspell-he aspell6-he-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/he/
* aspell-hi aspell6-hi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hi/
* aspell-hr aspell-hr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hr/
* aspell-id aspell5-id-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/id/
* aspell-is aspell-is-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/is/
* aspell-it aspell6-it-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/it/
* aspell-ml aspell6-ml-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ml/
* aspell-mr aspell6-mr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/mr/
* aspell-nl aspell-nl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nl/
* aspell-no aspell-nb-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nb/
* aspell-or aspell6-or-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/or/
* aspell-pa aspell6-pa-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pa/
* aspell-pl aspell6-pl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pl/
* aspell-pt_BR aspell6-pt_BR-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_BR/
* aspell-pt_PT aspell6-pt_PT-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_PT/
* aspell-ru aspell6-ru-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ru/
* aspell-sk aspell6-sk-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sk/
* aspell-sr aspell6-sr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sr/
* aspell-sv aspell-sv-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sv/
* aspell-ta aspell6-ta-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ta/
* aspell-te aspell6-te-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/te/
* ecolier-court-fonts
* ecolier-court-fonts
* gfs-ambrosia-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-ambrosia-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
Line 148: Line 168:
* google-droid-fonts http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts
* google-droid-fonts http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts
* jabberpy http://downloads.sf.net/sourceforge/%{name}/%{name}-%{version}-0.tar.gz
* jabberpy http://downloads.sf.net/sourceforge/%{name}/%{name}-%{version}-0.tar.gz
* nawk http://www.cs.princeton.edu/~bwk/btl.mirror/index.html
* perl-Frontier-RPC http://search.cpan.org/CPAN/authors/id/R/RT/RTFIREFLY/Frontier-RPC-%{version}.tar.gz
* perl-Frontier-RPC http://search.cpan.org/CPAN/authors/id/R/RT/RTFIREFLY/Frontier-RPC-%{version}.tar.gz
* python-debian http://ftp.debian.org/debian/pool/main/p/python-debian/python-debian_%{version}.tar.gz
* python-debian http://ftp.debian.org/debian/pool/main/p/python-debian/python-debian_%{version}.tar.gz
Line 154: Line 175:
</pre>
</pre>


{{Anchor|PackagesList}}
=== Packages need feedback from maintainers ===
Here I'll list some packages from my system that still need feedback from the maintainers if it's useful to monitor upstream. I am not the maintainer of any listed package!
==== A ====
* aalib http://aa-project.sourceforge.net/aalib/
* abattis-cantarell-fonts http://abattis.org/cantarell/
* abrt https://fedorahosted.org/abrt/
* advancecomp http://advancemame.sourceforge.net/
* gnome-themes-standard http://git.gnome.org/browse/gnome-themes-standard [adwaita subpackages]
* atkmm http://www.gtkmm.org/
* atlas http://math-atlas.sourceforge.net/
* at-spi2-atk http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
* at-spi2-core http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
* audit http://people.redhat.com/sgrubb/audit/
* authconfig https://fedorahosted.org/authconfig
 
==== B ====
* beesu http://www.honeybeenet.altervista.org
* bluez http://www.bluez.org/
* btparser http://fedorahosted.org/btparser
 
==== C ====
* ca-certificates http://www.mozilla.org/
* cairomm http://www.cairographics.org
* cdparanoia http://www.xiph.org/paranoia/index.html
* celt http://www.celt-codec.org/
* chrony http://chrony.tuxfamily.org
* cinepaint http://www.cinepaint.org/
* compat-readline5 http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
* comps-extras http://git.fedorahosted.org/git/?p=comps-extras.git;a=summary
* control-center http://www.gnome.org
* crash http://people.redhat.com/anderson
* createrepo http://createrepo.baseurl.org/
* cronie https://fedorahosted.org/cronie
* crontabs https://fedorahosted.org/crontabs
* cryptopp http://www.cryptopp.com/
* cryptsetup http://cryptsetup.googlecode.com/
* cups-pdf http://www.cups-pdf.de/
* cyrus-sasl http://asg.web.cmu.edu/sasl/sasl-library.html
 
=== Get a list of unmonitored installed packages ===
==== bash ====
Script:
<pre>
#!/bin/bash


== List Of Packages ==
packages=`rpm -qa --qf "%{PACKAGER} %{SOURCERPM}\n" |awk '{ if ( $1 == "Fedora" ) { print $3 } }' |rev |cut -d- -f3- |rev |sort -u`
=== A ===
wget https://fedoraproject.org/wiki/Upstream_release_monitoring -O /tmp/urm.html -q
for p in $packages ; do if [ `grep -c $p /tmp/urm.html` == "0" ]; then echo -n $p ; repoquery -q $p --qf " %{URL}" |uniq ; fi ; done |grep -v "None"
</pre>
==== python ====
<pre>
<pre>
  * a2ps DEFAULT GNU-DEFAULT
#!/usr/bin/python -tt
  * abcde DEFAULT GOOGLE-DEFAULT
# vim: fileencoding=utf8
  * abiword >([.0-9]+?)/< http://www.abisource.com/downloads/abiword/
# {{{ License header: GPLv2+
  * abi-compliance-checker DEFAULT http://ispras.linuxbase.org/index.php/ABI_compliance_checker_Downloads
#    This file is part of cnucnu.
  * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
#
  * ack DEFAULT CPAN-DEFAULT
#    Cnucnu is free software: you can redistribute it and/or modify
  * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
#    it under the terms of the GNU General Public License as published by
  * acpid DEFAULT http://sourceforge.net/projects/acpid2/
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    Cnucnu is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with cnucnu.  If not, see <http://www.gnu.org/licenses/>.
# }}}
 
from collections import OrderedDict
import sys
 
import yum
from cnucnu.package_list import PackageList
 
if __name__ == "__main__":
    sys.stderr.write("Getting package list...")
    pl = PackageList()
    sys.stderr.write("done\n")
 
    yb = yum.YumBase()
    installed_pkgs = yb.rpmdb.returnPackages()
    srpms = OrderedDict()
    missing = OrderedDict()
    for package in sorted(installed_pkgs):
        if package.vendor == "Fedora Project":
            srpm = package.sourcerpm
            srpm_name = srpm.split(".src.rpm")[0].rsplit("-", 2)[0]
            if pl.get(srpm_name, None) is None:
                missing[srpm_name] = package.url
 
    print("Installed packages, that are not monitored")
    for package, url in missing.iteritems():
        print("{0} {1}".format(package, url))
</pre>
 
 
=== Get a list of unmonitored packages you maintain ===
==== bash ====
 
You can put this in <code>~/.bash_profile</code> and run <code>unmonpkgs</code> to get a list of your unmonitored packages.
 
<!-- Please run this through ShellCheck (www.shellcheck.net/) if you change it! -->
<pre>
function unmonpkgs {
  username='YOUR_FAS_USERNAME'
  f="$(mktemp)"
  curl -so "$f" "https://fedoraproject.org/wiki/Upstream_release_monitoring"
  for i in $(pkgdb-cli list --user "$username" | head -n -1 | awk "{print \$1}"); do
    grep "\* $i " "$f" >/dev/null || echo "Not found: $i"
  done
  rm "$f"
}
</pre>
 
==== More accurate (but way slower) bash ====
 
Again, you can put this in <code>~/.bash_profile</code>. This takes much longer than the above, but is more accurate because it (roughly) tries to match globbed package names such as "ghc-*". It could probably be made faster especially if some other language were used.
 
<!-- Please run this through ShellCheck (www.shellcheck.net/) if you change it! -->
<pre>
function unmonpkgs {
  username='YOUR_FAS_USERNAME'
  f="$(mktemp)"
  curl -s "https://fedoraproject.org/wiki/Upstream_release_monitoring" | grep '^ * ' | awk '{print $2}' > "$f"
  for i in $(pkgdb-cli list --user "$username" | head -n -1 | awk "{print \$1}"); do
    grep "^$i\$" "$f" > /dev/null
    if [ "$?" != "0" ]; then
        echo -e "\033[1;31m$i\033[0m"
        while read line; do
          [ "$line" == "" ] && continue
          [ "$line" == " " ] && continue
          (echo "$line" | grep '\*' > /dev/null) || continue
          (echo "$i" | grep "^$line" > /dev/null) &&
            echo -e " ...\033[1;33m  Possible match (\033[1;31m$i\033[0m): $line\033[0m"
        done < "$f"
    fi
  done
  rm "$f"
}
</pre>
 
{{Anchor|PackagesList}}
 
== List Of Packages ==
=== 0-9 ===
<pre>
* 0install DEFAULT:0install SF-DEFAULT:zero-install
* 2ping DEFAULT http://www.finnie.org/software/2ping/
* 3proxy DEFAULT http://www.3proxy.ru/download/
* 64tass DEFAULT SF-DEFAULT:tass64
</pre>
 
=== A ===
<!--  * ardour3 >Ardour\ ([1-9][0-9]*(?:\.[1-9][0-9]*)?)\ source\ code https://community.ardour.org/s/buy_anon -->
<pre>
  * a2ps DEFAULT GNU-DEFAULT
  * abcde DEFAULT GOOGLE-DEFAULT
* abcm2ps abcm2ps-(.*)\.tar\.gz http://moinejf.free.fr/
  * abiword >([.0-9]+?)/< http://www.abisource.com/downloads/abiword/
  * abi-compliance-checker DEFAULT http://ispras.linuxbase.org/index.php/ABI_compliance_checker_Downloads
* abi-dumper GITHUB-TAGS GITHUB-TAGS:lvc/abi-dumper
  * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
* access-modifier-annotation GITHUB-TAGS GITHUB-TAGS:kohsuke/access-modifier
  * ack DEFAULT CPAN-DEFAULT
  * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
* acpi DEFAULT SF-DEFAULT:acpiclient
* acpica-tools DEFAULT:acpica-unix http://www.acpica.org/downloads
  * acpid DEFAULT http://sourceforge.net/projects/acpid2/
* acpitool DEFAULT http://freeunix.dyndns.org:8000/site2/acpitool.shtml
* adcli DEFAULT http://www.freedesktop.org/software/realmd/releases/
  * adf-accanthis-fonts (?s)>\s*Accanthis-Std.*?>(\d+\.\d+) http://arkandis.tuxfamily.org/adffonts.html
  * adf-accanthis-fonts (?s)>\s*Accanthis-Std.*?>(\d+\.\d+) http://arkandis.tuxfamily.org/adffonts.html
  * adjtimex DEFAULT DEBIAN-DEFAULT
  * adjtimex DEFAULT DEBIAN-DEFAULT
Line 172: Line 352:
  * adns DEFAULT GNU-DEFAULT
  * adns DEFAULT GNU-DEFAULT
  * adonthell >adonthell(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
  * adonthell >adonthell(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
  * aether DEFAULT https://github.com/sonatype/sonatype-aether/tags
  * advancecomp DEFAULT http://advancemame.sourceforge.net/comp-download.html
* afpfs-ng DEFAULT SF-DEFAULT
* Agda HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ahcpd ahcpd-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
  * ahcpd ahcpd-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
  * aircrack-ng DEFAULT http://download.aircrack-ng.org/
  * aircrack-ng aircrack-ng-(.*?)\.tar.\gz http://download.aircrack-ng.org/
  * alltray DEFAULT https://edge.launchpad.net/alltray/old-maintenance
  * alltray DEFAULT https://edge.launchpad.net/alltray/old-maintenance
* alpine DEFAULT http://patches.freeiz.com/alpine/release/index.html
  * alsa-utils DEFAULT ftp://ftp.alsa-project.org/pub/utils/
  * alsa-utils DEFAULT ftp://ftp.alsa-project.org/pub/utils/
  * alsa-lib DEFAULT ftp://ftp.alsa-project.org/pub/lib/
  * alsa-lib DEFAULT ftp://ftp.alsa-project.org/pub/lib/
Line 181: Line 364:
  * alsa-firmware DEFAULT ftp://ftp.alsa-project.org/pub/firmware/
  * alsa-firmware DEFAULT ftp://ftp.alsa-project.org/pub/firmware/
  * alsa-plugins DEFAULT ftp://ftp.alsa-project.org/pub/plugins/
  * alsa-plugins DEFAULT ftp://ftp.alsa-project.org/pub/plugins/
* alsa-oss DEFAULT ftp://ftp.alsa-project.org/pub/oss-lib/
  * altermime DEFAULT http://www.pldaniels.com/altermime/
  * altermime DEFAULT http://www.pldaniels.com/altermime/
* akuma GITHUB-TAGS GITHUB-TAGS:kohsuke/akuma
* amavisd-new amavisd-new-([0-9.]*?).tar.xz http://www.ijs.si/software/amavisd/
* amiri-fonts DEFAULT:amiri SF-DEFAULT:amiri
* anet DEFAULT:libanet http://www.codelabs.ch/download/
  * animal-sniffer animal-sniffer-([0-9\.]+)\.jar http://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer/*/
  * animal-sniffer animal-sniffer-([0-9\.]+)\.jar http://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer/*/
  * anki DEFAULT GOOGLE-DEFAULT
  * anki DEFAULT http://ankisrs.net/download/mirror/
  * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
  * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
  * ant-contrib DEFAULT SF-DEFAULT
  * ant-contrib DEFAULT SF-DEFAULT
  * ant-antunit DEFAULT:apache-ant-antunit http://www.apache.org/dist/ant/antlibs/antunit/source/
  * ant-antunit DEFAULT:apache-ant-antunit http://www.apache.org/dist/ant/antlibs/antunit/source/
  * antlr-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/antlr-maven-plugin/
  * antlr-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/antlr-maven-plugin/
  * antlr3 DEFAULT:antlr http://www.antlr3.org/download/
  * antlr3 GITHUB-TAGS GITHUB-TAGS:antlr/antlr3
  * antlrworks DEFAULT http://www.antlr3.org/download/
  * antlrworks GITHUB-TAGS GITHUB-TAGS:antlr/antlrworks
* annotation-indexer GITHUB-TAGS GITHUB-TAGS:jenkinsci/lib-annotation-indexer
  * apache-commons-beanutils DEFAULT:commons-beanutils http://www.apache.org/dist/commons/beanutils/source/
  * apache-commons-beanutils DEFAULT:commons-beanutils http://www.apache.org/dist/commons/beanutils/source/
  * apache-commons-cli DEFAULT:commons-cli http://www.apache.org/dist/commons/cli/source/
  * apache-commons-cli DEFAULT:commons-cli http://www.apache.org/dist/commons/cli/source/
Line 197: Line 384:
  * apache-commons-compress DEFAULT:commons-compress http://www.apache.org/dist/commons/compress/source/
  * apache-commons-compress DEFAULT:commons-compress http://www.apache.org/dist/commons/compress/source/
  * apache-commons-configuration DEFAULT:commons-configuration http://www.apache.org/dist/commons/configuration/source/
  * apache-commons-configuration DEFAULT:commons-configuration http://www.apache.org/dist/commons/configuration/source/
* apache-commons-csv DEFAULT:commons-csv http://www.apache.org/dist/commons/csv/source/
  * apache-commons-daemon DEFAULT:commons-daemon http://www.apache.org/dist/commons/daemon/source/
  * apache-commons-daemon DEFAULT:commons-daemon http://www.apache.org/dist/commons/daemon/source/
  * apache-commons-dbcp DEFAULT:commons-dbcp http://www.apache.org/dist/commons/dbcp/source/
  * apache-commons-dbcp DEFAULT:commons-dbcp http://www.apache.org/dist/commons/dbcp/source/
Line 222: Line 408:
  * apache-james-project james-parent-([0-9\.]+)-source-release\.zip http://repo1.maven.org/maven2/org/apache/james/james-parent/*/
  * apache-james-project james-parent-([0-9\.]+)-source-release\.zip http://repo1.maven.org/maven2/org/apache/james/james-parent/*/
  * apache-juddi juddi-([^/]+)/ http://svn.apache.org/repos/asf/juddi/tags/
  * apache-juddi juddi-([^/]+)/ http://svn.apache.org/repos/asf/juddi/tags/
  * apache-mime4j >apache-mime4j-project-([^<"]+)-source-release.zip< http://apache.online.bg/james/mime4j/
  * apache-mime4j DEFAULT http://james.apache.org/download.cgi
  * apache-rat DEFAULT:apache-rat-incubating http://apache.org/dist/incubator/rat/sources/
  * apache-rat DEFAULT http://www.apache.org/dist/creadur/*/
  * apache-resource-bundles <version>([^<]+)</version> http://repo1.maven.org/maven2/org/apache/apache-resource-bundles/maven-metadata.xml
  * apache-resource-bundles <version>([^<]+)</version> http://repo1.maven.org/maven2/org/apache/apache-resource-bundles/maven-metadata.xml
  * apanov-edrip-fonts DEFAULT:edrip ftp://ftp.dvo.ru/pub/Font/edrip/
  * apanov-edrip-fonts DEFAULT:edrip ftp://ftp.dvo.ru/pub/Font/edrip/
  * apanov-heuristica-fonts DEFAULT:heuristica GOOGLE-DEFAULT:evristika
  * apanov-heuristica-fonts DEFAULT:heuristica GOOGLE-DEFAULT:evristika
* apcupsd DEFAULT SF-DEFAULT
* api-sanity-checker GITHUB-TAGS GITHUB-TAGS:lvc/api-sanity-checker
  * apr DEFAULT http://www.apache.org/dist/apr/
  * apr DEFAULT http://www.apache.org/dist/apr/
  * apr-util DEFAULT http://www.apache.org/dist/apr/
  * apr-util DEFAULT http://www.apache.org/dist/apr/
Line 232: Line 420:
  * aqute-bnd \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bnd/
  * aqute-bnd \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bnd/
  * aqute-bndlib \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bndlib/
  * aqute-bndlib \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bndlib/
* arch-install-scripts GITHUB-TAGS GITHUB-TAGS:falconindy/arch-install-scripts
  * archimedes DEFAULT GNU-DEFAULT
  * archimedes DEFAULT GNU-DEFAULT
  * archivemount DEFAULT http://www.cybernoia.de/software/archivemount/
  * archivemount DEFAULT http://www.cybernoia.de/software/archivemount/
* archlinux-keyring archlinux-keyring-([0-9]+)\.tar\..* https://projects.archlinux.org/archlinux-keyring.git/refs/
* ardour3 [Aa]rdour\ (3\.(?:[0-9]+\.)[0-9]+)\ source\ code http://community.ardour.org/s/buy_anon
  * arduino DEFAULT GOOGLE-DEFAULT
  * arduino DEFAULT GOOGLE-DEFAULT
  * args4j args4j-site-([0-9.]*?)\" https://github.com/kohsuke/args4j/tags
  * args4j args4j-site-([0-9.]*?)\" https://github.com/kohsuke/args4j/tags
  * argus DEFAULT http://www.qosient.com/argus/
  * argus DEFAULT http://www.qosient.com/argus/
* argyllcms DEFAULT:hargyllcms http://people.freedesktop.org/~hughsient/releases/
  * aria2 DEFAULT SF-DEFAULT
  * aria2 DEFAULT SF-DEFAULT
* arp-scan DEFAULT http://www.nta-monitor.com/tools-resources/security-tools/arp-scan-archive
* arpack DEFAULT:arpack-ng http://forge.scilab.org/index.php/p/arpack-ng/
* arprec DEFAULT http://crd-legacy.lbl.gov/~dhbailey/mpdist/
  * asc DEFAULT SF-DEFAULT:asc-hq
  * asc DEFAULT SF-DEFAULT:asc-hq
* ascii-design DEFAULT SF-DEFAULT
* asciinema GITHUB-TAGS GITHUB-TAGS:sickill/asciinema
  * askbot DEFAULT PYPI-DEFAULT
  * askbot DEFAULT PYPI-DEFAULT
  * aspell DEFAULT GNU-DEFAULT
  * aspell DEFAULT GNU-DEFAULT
  * aspell-af aspell-af-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/af/
  * ast DEFAULT http://www.starlink.ac.uk/download/ast/
* aspell-ar aspell6-ar-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ar/
  * astronomy-menus DEFAULT https://git.fedorahosted.org/git/astronomy.git
* aspell-bg aspell6-bg-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bg/
* aspell-bn aspell6-bn-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bn/
* aspell-br aspell-br-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/br/
* aspell-ca aspell6-ca-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ca/
* aspell-cs aspell6-cs-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cs/
* aspell-cy aspell-cy-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cy/
* aspell-da aspell5-da-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/da/
* aspell-de aspell6-de-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/de/
* aspell-el aspell-el-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/el/
* aspell-en aspell6-en-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/en/
* aspell-es aspell6-es-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/es/
* aspell-fo aspell5-fo-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fo/
* aspell-fr aspell-fr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fr/
* aspell-ga aspell5-ga-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ga/
* aspell-gd aspell5-gd-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gd/
* aspell-gl aspell6-gl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gl/
* aspell-gu aspell6-gu-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gu/
* aspell-he aspell6-he-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/he/
* aspell-hi aspell6-hi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hi/
* aspell-hr aspell-hr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hr/
* aspell-id aspell5-id-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/id/
* aspell-is aspell-is-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/is/
* aspell-it aspell6-it-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/it/
* aspell-ml aspell6-ml-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ml/
  * aspell-mr aspell6-mr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/mr/
* aspell-nl aspell-nl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nl/
* aspell-no aspell-nb-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nb/
* aspell-or aspell6-or-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/or/
* aspell-pa aspell6-pa-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pa/
* aspell-pl aspell6-pl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pl/
* aspell-pt_BR aspell6-pt_BR-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_BR/
* aspell-pt_PT aspell6-pt_PT-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_PT/
* aspell-ru aspell6-ru-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ru/
* aspell-sk aspell6-sk-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sk/
* aspell-sr aspell6-sr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sr/
* aspell-sv aspell-sv-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sv/
* aspell-ta aspell6-ta-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ta/
* aspell-te aspell6-te-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/te/
  * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
  * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
  * asunder asunder-([0-9.]*?).tar.bz2 http://littlesvr.ca/asunder/releases/
  * asunder asunder-([0-9.]*?).tar.bz2 http://littlesvr.ca/asunder/releases/
  * async-http-client DEFAULT https://github.com/AsyncHttpClient/async-http-client/tags
  * async-http-client GITHUB-TAGS GITHUB-TAGS:AsyncHttpClient/async-http-client
  * at DEFAULT DEBIAN-DEFAULT
  * at DEFAULT DEBIAN-DEFAULT
* atari++ DEFAULT http://www.xl-project.com/downloads.html
  * atinject >(\d[^/]*)/< http://atinject.googlecode.com/svn/tags/
  * atinject >(\d[^/]*)/< http://atinject.googlecode.com/svn/tags/
  * atk DEFAULT GNOME-DEFAULT
  * atk DEFAULT GNOME-DEFAULT
* atlas atlas([0-9].\d*[0248].[0-9].*?).tar.bz2 SF-DEFAULT:math-atlas
  * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
  * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
  * atomix href=\"([0-9.]*?)\/\" http://ftp.gnome.org/pub/GNOME/sources/atomix/
  * atomix DEFAULT GNOME-DEFAULT
* atool DEFAULT http://download.savannah.gnu.org/releases/atool/
  * atop DEFAULT http://www.atoptool.nl/downloadatop.php
  * atop DEFAULT http://www.atoptool.nl/downloadatop.php
  * ATpy DEFAULT https://github.com/atpy/atpy/downloads
  * ATpy DEFAULT PYPI-DEFAULT
  * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
  * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
  * audacious DEFAULT http://audacious-media-player.org/downloads
  * audacious DEFAULT http://audacious-media-player.org/downloads
  * auto-nng auto-nng.v(.*?).tar.gz http://www.public-software-group.org/pub/projects/auto-nng/*/
  * audacity audacity-minsrc-(.*?)\.tar\.xz GOOGLE-DEFAULT
  * autofs DEFAULT http://kernel.org/pub/linux/daemons/autofs/v5/
  * autofs DEFAULT http://kernel.org/pub/linux/daemons/autofs/v*/
* autogen DEFAULT GNU-DEFAULT
  * autoconf DEFAULT GNU-DEFAULT
  * autoconf DEFAULT GNU-DEFAULT
  * autoconf-archive DEFAULT GNU-DEFAULT
  * autoconf-archive DEFAULT GNU-DEFAULT
* autogen "rel([^/]+)/" GNU-DEFAULT
  * automake DEFAULT GNU-DEFAULT
  * automake DEFAULT GNU-DEFAULT
  * autossh autossh-(.+?)\.t.*z http://www.harding.motd.ca/autossh/
  * autossh autossh-(.+?)\.t.*z http://www.harding.motd.ca/autossh/
  * autokey DEFAULT GOOGLE-DEFAULT
  * autokey DEFAULT GOOGLE-DEFAULT
  * avogadro avogadro-([0-9]\.[0-9]*[02468]\.[0-9.]*)\.tar SF-DEFAULT
* avahi DEFAULT http://avahi.org/download/
  * avogadro avogadro-([0-9]\.[0-9]*[02468]\.[0-9.]*)\.tar.bz2 SF-DEFAULT
  * avra DEFAULT SF-DEFAULT
  * avra DEFAULT SF-DEFAULT
  * awesome DEFAULT http://awesome.naquadah.org/download/
  * awesome DEFAULT http://awesome.naquadah.org/download/
Line 312: Line 475:
  * babel DEFAULT:Babel http://ftp.edgewall.com/pub/babel/
  * babel DEFAULT:Babel http://ftp.edgewall.com/pub/babel/
  * babeld babeld-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
  * babeld babeld-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
  * backintime backintime-([0-9.]+)_src.tar.gz http://backintime.le-web.org/download_page/
  * backintime DEFAULT http://backintime.le-web.org/download_page/
* BackupPC DEFAULT SF-DEFAULT:backuppc
* bam DEFAULT http://matricks.github.io/bam/
* bamf DEFAULT LP-DEFAULT
* banner DEFAULT http://software.cedar-solutions.com/ftp/software/
* banshee DEFAULT http://banshee.fm/download/
  * barcode DEFAULT GNU-DEFAULT
  * barcode DEFAULT GNU-DEFAULT
* barman DEFAULT PYPI-DEFAULT
  * base64coder ([0-9]{4}-[0-9]{2}-[0-9]{2}) http://repo2.maven.org/maven2/biz/source_code/base64coder/
  * base64coder ([0-9]{4}-[0-9]{2}-[0-9]{2}) http://repo2.maven.org/maven2/biz/source_code/base64coder/
  * bash DEFAULT GNU-DEFAULT
  * bash DEFAULT GNU-DEFAULT
  * batik "batik-src-([^"]+).zip" http://archive.apache.org/dist/xmlgraphics/batik/
  * batik "batik-src-([^"]+).zip" http://archive.apache.org/dist/xmlgraphics/batik/
  * batti DEFAULT http://code.google.com/p/batti-gtk/downloads/list
  * batti DEFAULT GOOGLE-DEFAULT:batti-gtk
  * bc DEFAULT GNU-DEFAULT
  * bc DEFAULT GNU-DEFAULT
  * bcel DEFAULT http://www.apache.org/dist/commons/bcel/source/
  * bcel DEFAULT http://www.apache.org/dist/commons/bcel/source/
  * bcrypt DEFAULT SF-DEFAULT
  * bcrypt DEFAULT SF-DEFAULT
  * be DEFAULT http://download.bugseverywhere.org/releases/
  * be DEFAULT http://download.bugseverywhere.org/releases/
* beecrypt DEFAULT SF-DEFAULT
  * bea-stax stax-src-([0-9.]*?)\.zip http://dist.codehaus.org/stax/distributions/
  * bea-stax stax-src-([0-9.]*?)\.zip http://dist.codehaus.org/stax/distributions/
  * BEDTools \bBEDTools\.v(.*?)\.t GOOGLE-DEFAULT:bedtools
  * BEDTools \bBEDTools\.v(.*?)\.t GOOGLE-DEFAULT:bedtools
Line 330: Line 500:
  * bibutils DEFAULT SF-DEFAULT
  * bibutils DEFAULT SF-DEFAULT
  * bigloo Current version is <font color="red">(.*?)</font> http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html
  * bigloo Current version is <font color="red">(.*?)</font> http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html
  * bindfs DEFAULT GOOGLE-DEFAULT
  * bijiben DEFAULT GNOME-DEFAULT  
  * binutils binutils-(.*?\.0\.[0-9.]*?)\.tar\. http://kernel.org/pub/linux/devel/binutils/
  * billiards DEFAULT http://download.savannah.gnu.org/releases/billiards/
* bindfs DEFAULT http://bindfs.org/downloads/
* biosdevname DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/biosdevname.git/
* bip DEFAULT https://projects.duckcorp.org/projects/bip/files
* bird DEFAULT http://bird.network.cz/?download
  * bison DEFAULT GNU-DEFAULT
  * bison DEFAULT GNU-DEFAULT
  * bitbake DEFAULT SF-DEFAULT:bitbake.berlios
  * bitbake DEFAULT SF-DEFAULT:bitbake.berlios
Line 338: Line 512:
  * bitstream-vera-fonts DEFAULT:ttf-bitstream-vera GNOME-DEFAULT:ttf-bitstream-vera
  * bitstream-vera-fonts DEFAULT:ttf-bitstream-vera GNOME-DEFAULT:ttf-bitstream-vera
  * blackbox DEFAULT SF-DEFAULT:blackboxwm
  * blackbox DEFAULT SF-DEFAULT:blackboxwm
* blazeblogger DEFAULT http://blaze.blackened.cz/downloads/
  * bleachbit DEFAULT SF-DEFAULT
  * bleachbit DEFAULT http://bleachbit-project.appspot.com/download/source/
  * blender blender-(.[^-]*?)\.tar\.gz http://download.blender.org/source/
  * blender blender-(.[^-]*?)\.tar\.gz http://download.blender.org/source/
  * blktrace blktrace-([0-9\.].*?).tar.bz2 http://brick.kernel.dk/snaps/
  * blktrace blktrace-([0-9\.].*?).tar.bz2 http://brick.kernel.dk/snaps/
  * blobby DEFAULT:blobby2-linux SF-DEFAULT
  * blobby DEFAULT:blobby2-linux SF-DEFAULT
  * blobwars \bblobwars-([\d.]+)(?:-dfsg)?\.t SF-DEFAULT
  * blobwars \bblobwars-([\d.]+)(?:-dfsg)?\.t SF-DEFAULT
  * bltk DEFAULT http://www.lesswatts.org/patches/bltk/
  * blosc archive/v(.*?)\.zip https://github.com/FrancescAlted/blosc/releases
* bluefish DEFAULT SF-DEFAULT
  * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
  * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
* bmake DEFAULT http://www.crufty.net/ftp/pub/sjg/
* bmon DEFAULT http://www.carisma.slowglass.com/~tgr/bmon/files/
  * bodr DEFAULT SF-DEFAULT
  * bodr DEFAULT SF-DEFAULT
* boinc-client boinc_([0-9.]*?)\_i686\-pc\-linux\-gnu.sh http://boinc.berkeley.edu/dl/
  * boswars DEFAULT http://www.boswars.org/dist/releases/
  * boswars DEFAULT http://www.boswars.org/dist/releases/
  * botan DEFAULT:Botan http://botan.randombit.net/download.html
  * botan Botan-([0-9]*\.[0-9]*[02468]\.[0-9.]*)\.tbz http://botan.randombit.net/download.html
* bouml bouml_(.*?).tar.gz http://bouml.free.fr/download.html
* bouml-doc doc(.*?).tar.gz http://bouml.free.fr/documentation.html
  * bouncycastle (?i)Java\s+Release\s+([\d.]+) http://www.bouncycastle.org/
  * bouncycastle (?i)Java\s+Release\s+([\d.]+) http://www.bouncycastle.org/
  * brainfuck HACKAGE-DEFAULT HACKAGE-DEFAULT
  * brainfuck HACKAGE-DEFAULT HACKAGE-DEFAULT
  * bridge-utils DEFAULT SF-DEFAULT:bridge
  * bridge-utils DEFAULT SF-DEFAULT:bridge
* bridge-method-injector bridge-method-injector.*-([\d+.]*) https://github.com/infradna/bridge-method-injector/releases
* brise DEFAULT GOOGLE-DEFAULT:rimeime
* brltty DEFAULT http://mielke.cc/brltty/download.html
  * bsd-games DEFAULT ftp://metalab.unc.edu/pub/Linux/games/
  * bsd-games DEFAULT ftp://metalab.unc.edu/pub/Linux/games/
  * bsh DEFAULT http://www.beanshell.org/developer.html
  * bsh DEFAULT http://www.beanshell.org/developer.html
  * bsf DEFAULT http://archive.apache.org/dist/jakarta/bsf/source/
  * bsf DEFAULT http://archive.apache.org/dist/jakarta/bsf/source/
  * bti (\d\d\d)\.zip https://github.com/gregkh/bti/tags
  * bti (\d\d\d)\.zip https://github.com/gregkh/bti/tags
  * btrfs-progs btrfs-progs-v(.*?)\.tar\.bz2 http://kernel.org/pub/linux/kernel/people/mason/btrfs-progs/
* btkbdd \bv([\d+\.]+)\b https://github.com/lkundrak/virtkbd/tags
  * btrfs-progs btrfs-progs-v(.*?)\.tar http://kernel.org/pub/linux/kernel/people/mason/btrfs-progs/
* buildbot archive/v(.*?)\.zip https://github.com/buildbot/buildbot/releases
  * buildnumber-maven-plugin buildnumber-maven-plugin-([0-9.]*?.*)\/\" http://svn.codehaus.org/mojo/tags/
  * buildnumber-maven-plugin buildnumber-maven-plugin-([0-9.]*?.*)\/\" http://svn.codehaus.org/mojo/tags/
  * busybox DEFAULT http://www.busybox.net/downloads/
  * busybox DEFAULT http://www.busybox.net/downloads/
* bvi DEFAULT SF-DEFAULT
  * byacc DEFAULT ftp://invisible-island.net/byacc/
  * byacc DEFAULT ftp://invisible-island.net/byacc/
  * byaccj \bbyaccj([\d.]*?)_src\.t SF-DEFAULT
  * byaccj \bbyaccj([\d.]*?)_src\.t SF-DEFAULT
  * bygfoot DEFAULT SF-DEFAULT
  * bygfoot DEFAULT SF-DEFAULT
  * byobu DEFAULT LP-DEFAULT
  * byobu DEFAULT LP-DEFAULT
* bzip2 DEFAULT http://www.bzip.org/downloads.html
  * bzr DEFAULT LP-DEFAULT
  * bzr DEFAULT LP-DEFAULT
  * bzr-fastimport DEFAULT LP-DEFAULT
  * bzr-fastimport DEFAULT LP-DEFAULT
  * bzrtools bzrtools-(.*?).tar.gz http://bazaar-vcs.org/BzrTools
  * bzrtools DEFAULT http://wiki.bazaar.canonical.com/BzrTools
</pre>
</pre>


=== C ===
=== C ===
<pre>
<pre>
* c2050 c2050-(.*?).tar.gz http://www.prato.linux.it/~mnencia/lexmark2050/files/
  * cab HACKAGE-DEFAULT HACKAGE-DEFAULT
  * cab HACKAGE-DEFAULT HACKAGE-DEFAULT
  * cabal-dev HACKAGE-DEFAULT HACKAGE-DEFAULT
  * cabal-dev HACKAGE-DEFAULT HACKAGE-DEFAULT
Line 380: Line 561:
  * cairo DEFAULT http://cairographics.org/releases/
  * cairo DEFAULT http://cairographics.org/releases/
  * cal10n DEFAULT http://cal10n.qos.ch/dist/
  * cal10n DEFAULT http://cal10n.qos.ch/dist/
  * calc DEFAULT http://www.isthe.com/chongo/src/calc/
  * calc DEFAULT SF-DEFAULT
  * cardpeek DEFAULT GOOGLE-DEFAULT
* calligra DEFAULT http://download.kde.org/stable/calligra-latest/
* cantata DEFAULT https://code.google.com/p/cantata/wiki/Downloads
  * cardpeek DEFAULT http://pannetrat.com/Cardpeek/Install/
  * caribou DEFAULT GNOME-DEFAULT
  * caribou DEFAULT GNOME-DEFAULT
  * carto NPM-DEFAULT NPM-DEFAULT
  * carto NPM-DEFAULT NPM-DEFAULT
* catfish DEFAULT LP-DEFAULT:catfish-search
  * ccache DEFAULT http://samba.org/ftp/ccache/
  * ccache DEFAULT http://samba.org/ftp/ccache/
  * CCfits DEFAULT http://heasarc.gsfc.nasa.gov/fitsio/CCfits/
  * CCfits DEFAULT http://heasarc.gsfc.nasa.gov/fitsio/CCfits/
Line 392: Line 576:
  * cdrdao DEFAULT SF-DEFAULT
  * cdrdao DEFAULT SF-DEFAULT
  * cdrkit DEFAULT http://cdrkit.org/releases/
  * cdrkit DEFAULT http://cdrkit.org/releases/
* celt DEFAULT http://downloads.us.xiph.org/releases/celt/
  * centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
  * centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
  * ceph DEFAULT http://ceph.com/download/
  * ceph DEFAULT http://ceph.com/resources/downloads/
  * cfengine DEFAULT GNU-DEFAULT
  * cfengine DEFAULT GNU-DEFAULT
  * cfitsio cfitsio([0-9.]*?).tar.gz http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/
  * cfitsio cfitsio([0-9.]*?).tar.gz http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/
Line 399: Line 584:
  * cgnslib cgnslib_(.*?).tar.gz http://sourceforge.net/projects/cgns/
  * cgnslib cgnslib_(.*?).tar.gz http://sourceforge.net/projects/cgns/
  * CGAL CGAL-([0-9.]*)\.tar.xz https://gforge.inria.fr/frs/?group_id=52
  * CGAL CGAL-([0-9.]*)\.tar.xz https://gforge.inria.fr/frs/?group_id=52
  * checkgmail DEFAULT SF-DEFAULT
  * cgit DEFAULT http://git.zx2c4.com/cgit/refs/tags
  * checkstyle DEFAULT SF-DEFAULT
  * checkstyle DEFAULT SF-DEFAULT
* checkpolicy DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
  * chemical-mime-data DEFAULT SF-DEFAULT:chemical-mime
  * chemical-mime-data DEFAULT SF-DEFAULT:chemical-mime
  * chemtool chemtool-([.0-9]*?).tar.gz http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
  * chemtool DEFAULT http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
  * cherrytree DEFAULT http://www.giuspen.com/cherrytree/
  * cherrytree DEFAULT http://www.giuspen.com/cherrytree/
  * childsplay DEFAULT SF-DEFAULT:schoolsplay
* chicken DEFAULT http://code.call-cc.org/
  * childsplay DEFAULT SF-DEFAULT
* chinese-calendar DEFAULT LP-DEFAULT
* chirp chirp-([0-9]+\.[0-9]+\.*[0-9]?).tar.gz http://chirp.danplanet.com/projects/chirp/wiki/Download
  * chmsee DEFAULT GOOGLE-DEFAULT
  * chmsee DEFAULT GOOGLE-DEFAULT
  * choqok DEFAULT SF-DEFAULT
  * choqok DEFAULT SF-DEFAULT
  * chromaprint DEFAULT https://github.com/lalinsky/chromaprint/downloads
  * chromaprint DEFAULT https://github.com/lalinsky/chromaprint/downloads
  * cifs-utils DEFAULT ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/
  * cifs-utils DEFAULT http://www.samba.org/ftp/linux-cifs/cifs-utils/
  * cjkuni-ukai-fonts DEFAULT:ttf-arphic-ukai DEBIAN-DEFAULT:ttf-arphic-ukai
  * cjkuni-ukai-fonts DEFAULT:ttf-arphic-ukai DEBIAN-DEFAULT:ttf-arphic-ukai
  * cjkuni-uming-fonts DEFAULT:ttf-arphic-uming DEBIAN-DEFAULT:ttf-arphic-uming
  * cjkuni-uming-fonts DEFAULT:ttf-arphic-uming DEBIAN-DEFAULT:ttf-arphic-uming
* ckeditor CKEditor\s([0-9.]*) http://download.cksource.com/CKEditor/CKEditor/
  * clamav DEFAULT SF-DEFAULT
  * clamav DEFAULT SF-DEFAULT
  * ClanLib DEFAULT http://clanlib.org/download/releases-2.0/
  * ClanLib DEFAULT http://clanlib.org/download/releases-*/
  * claws-mail DEFAULT SF-DEFAULT:sylpheed-claws
  * claws-mail DEFAULT SF-DEFAULT:sylpheed-claws
  * clean clean([0-9.]*?)_boot.tar.gz http://wiki.clean.cs.ru.nl/Download_Clean
  * clean clean([0-9.]*?)_boot.tar.gz http://wiki.clean.cs.ru.nl/Download_Clean
  * clementine DEFAULT GOOGLE-DEFAULT:clementine-player
  * clementine DEFAULT GOOGLE-DEFAULT:clementine-player
  * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
  * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
* cloc DEFAULT SF-DEFAULT
  * clojure >(\d+\.\d+\.\d+)\/ http://repo1.maven.org/maven2/org/clojure/clojure/
  * clojure >(\d+\.\d+\.\d+)\/ http://repo1.maven.org/maven2/org/clojure/clojure/
  * clojure-maven-plugin DEFAULT https://github.com/talios/clojure-maven-plugin/tags
  * clojure-maven-plugin DEFAULT https://github.com/talios/clojure-maven-plugin/tags
* cluster-glue DEFAULT:glue http://linux-ha.org/wiki/Downloads
  * clusterPy DEFAULT GOOGLE-DEFAULT:clusterpy
  * clusterPy DEFAULT GOOGLE-DEFAULT:clusterpy
  * clutter DEFAULT GNOME-DEFAULT
  * clutter DEFAULT GNOME-DEFAULT
Line 425: Line 615:
  * clutter-gst DEFAULT GNOME-DEFAULT
  * clutter-gst DEFAULT GNOME-DEFAULT
  * cmake DEFAULT http://www.cmake.org/cmake/resources/software.html
  * cmake DEFAULT http://www.cmake.org/cmake/resources/software.html
  * cmdtest DEFAULT  http://code.liw.fi/debian/pool/main/c/cmdtest/
  * cmdtest DEFAULT DEBIAN-DEFAULT
  * cmockery2 GITHUB-TAGS GITHUB-TAGS:lpabon/cmockery2
  * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd
  * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd
  * coan DEFAULT SF-DEFAULT:coan2
  * coan DEFAULT SF-DEFAULT:coan2
Line 431: Line 622:
  * cobertura-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/cobertura-maven-plugin
  * cobertura-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/cobertura-maven-plugin
  * coda DEFAULT http://www.coda.cs.cmu.edu/pub/coda/src/
  * coda DEFAULT http://www.coda.cs.cmu.edu/pub/coda/src/
  * coccinelle DEFAULT http://coccinelle.lip6.fr/download.php
* codeblocks DEFAULT SF-DEFAULT
  * coccinelle Current\sversion:\s([^,]*), http://coccinelle.lip6.fr/download.php
  * cogl DEFAULT GNOME-DEFAULT
  * cogl DEFAULT GNOME-DEFAULT
* collada-dom GITHUB-TAGS GITHUB-TAGS:rdiankov/collada-dom
  * collectl DEFAULT SF-DEFAULT
  * collectl DEFAULT SF-DEFAULT
* colord-gtk DEFAULT http://www.freedesktop.org/software/colord/releases/
  * colordiff DEFAULT http://www.colordiff.org/
  * colordiff DEFAULT http://www.colordiff.org/
  * compiz DEFAULT http://releases.compiz.org/*/
  * ColPack DEFAULT http://cscapes.cs.purdue.edu/download/ColPack/
* compiz DEFAULT LP-DEFAULT
  * conduit DEFAULT GNOME-DEFAULT
  * conduit DEFAULT GNOME-DEFAULT
* connman DEFAULT https://www.kernel.org/pub/linux/network/connman/
  * conntrack-tools DEFAULT http://ftp.netfilter.org/pub/conntrack-tools/
  * conntrack-tools DEFAULT http://ftp.netfilter.org/pub/conntrack-tools/
* console-setup DEFAULT DEBIAN-DEFAULT
  * ConsoleKit DEFAULT http://www.freedesktop.org/software/ConsoleKit/dist/
  * ConsoleKit DEFAULT http://www.freedesktop.org/software/ConsoleKit/dist/
  * converseen DEFAULT SF-DEFAULT
  * converseen DEFAULT SF-DEFAULT
* convmv DEFAULT https://www.j3e.de/linux/convmv/
  * coreutils DEFAULT GNU-DEFAULT
  * coreutils DEFAULT GNU-DEFAULT
  * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
  * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
  * corosync DEFAULT https://github.com/corosync/corosync/downloads
  * corosync DEFAULT https://github.com/corosync/corosync/downloads
  * couchdb-glib DEFAULT GNOME-DEFAULT
  * corrida DEFAULT http://corrida.pkim.org/releases
* couchdb ([\d\.]+)(?=/") http://www.apache.org/dist/couchdb/source/
  * covered DEFAULT SF-DEFAULT
  * covered DEFAULT SF-DEFAULT
* cowpatty DEFAULT http://www.willhackforsushi.com/?page_id=50
  * cowsay DEFAULT http://www.nog.net/~tony/warez/
  * cowsay DEFAULT http://www.nog.net/~tony/warez/
* cpan-upload DEFAULT CPAN-DEFAULT
  * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
  * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
  * cpl DEFAULT ftp://ftp.eso.org/pub/cpl/
  * cpl DEFAULT ftp://ftp.eso.org/pub/cpl/
Line 455: Line 654:
  * cproto DEFAULT ftp://invisible-island.net/cproto/
  * cproto DEFAULT ftp://invisible-island.net/cproto/
  * cptutils DEFAULT http://soliton.vm.bytemark.co.uk/pub/jjg/code/
  * cptutils DEFAULT http://soliton.vm.bytemark.co.uk/pub/jjg/code/
* cpuid cpuid-(.*?)\.src\.tar\.gz http://www.etallen.com/cpuid.html
  * cracklib DEFAULT SF-DEFAULT
  * cracklib DEFAULT SF-DEFAULT
  * crda DEFAULT http://kernel.org/pub/software/network/crda/
  * crda DEFAULT http://kernel.org/pub/software/network/crda/
  * CriticalMass DEFAULT SF-DEFAULT:criticalmass
  * CriticalMass DEFAULT SF-DEFAULT:criticalmass
  * crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
  * crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
* criu criu-(.*?)\.tar\.bz2 http://download.openvz.org/criu/
  * cscope DEFAULT SF-DEFAULT
  * cscope DEFAULT SF-DEFAULT
  * csmith csmith-([0-9.]*)\.tar\.gz https://github.com/csmith-project/csmith/tags
  * csmith csmith-([0-9.]*)\.tar\.gz https://github.com/csmith-project/csmith/tags
  * cssparser DEFAULT SF-DEFAULT
  * cssparser DEFAULT SF-DEFAULT
  * cssed DEFAULT SF-DEFAULT
  * cssed DEFAULT SF-DEFAULT
* csslint archive/v(.*?)\.zip https://github.com/stubbornella/csslint/releases
  * cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
  * cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
* ctags DEFAULT SF-DEFAULT
* ctdb DEFAULT http://www.samba.org/ftp/ctdb/
  * ctstream ctstream-([^-/_\s]+)(?:\.asc)\b http://xpisar.wz.cz/ctstream/
  * ctstream ctstream-([^-/_\s]+)(?:\.asc)\b http://xpisar.wz.cz/ctstream/
  * ctorrent ctorrent-dnh(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
  * ctorrent ctorrent-dnh(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
Line 480: Line 684:
<pre>
<pre>
  * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
  * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
* darkhttpd DEFAULT http://unix4lyfe.org/darkhttpd/
  * darktable DEFAULT SF-DEFAULT
  * darktable DEFAULT SF-DEFAULT
  * dash DEFAULT http://gondor.apana.org.au/~herbert/dash/files/
  * dash DEFAULT http://gondor.apana.org.au/~herbert/dash/files/
  * datanommer-commands DEFAULT:datanommer.commands PYPI-DEFAULT:datanommer.commands
  * datanommer-commands DEFAULT:datanommer.commands PYPI-DEFAULT:datanommer.commands
  * dataquay DEFAULT http://breakfastquay.com/dataquay/
  * dataquay DEFAULT http://breakfastquay.com/dataquay/
* datefudge datefudge\_(.*?)\.(?:tar|t[bglx]z)\b http://packages.debian.org/testing/datefudge
  * datovka DEFAULT http://www.nic.cz/public_media/datove_schranky/releases/src/
  * datovka DEFAULT http://www.nic.cz/public_media/datove_schranky/releases/src/
* libdb4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technetwork/database/berkeleydb/downloads/index-082944.html
  * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
  * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
* dbh DEFAULT:libdbh2 SF-DEFAULT
  * dblatex DEFAULT SF-DEFAULT
  * dblatex DEFAULT SF-DEFAULT
* dbus-python DEFAULT http://dbus.freedesktop.org/releases/dbus-python/
* dbus-sharp e/v(.*?)\.zip http://github.com/mono/dbus-sharp/releases
  * dclib DEFAULT SF-DEFAULT:wxdcgui
  * dclib DEFAULT SF-DEFAULT:wxdcgui
  * dcraw DEFAULT http://www.cybercom.net/~dcoffin/dcraw/archive/
  * dcraw DEFAULT http://www.cybercom.net/~dcoffin/dcraw/archive/
Line 506: Line 714:
  * desktop-file-utils DEFAULT http://www.freedesktop.org/software/desktop-file-utils/releases/
  * desktop-file-utils DEFAULT http://www.freedesktop.org/software/desktop-file-utils/releases/
  * detox DEFAULT SF-DEFAULT
  * detox DEFAULT SF-DEFAULT
* dev86 DEFAULT:Dev86src http://v3.sk/~lkundrak/dev86/
  * device-mapper-multipath multipath-tools-(.*?)\.tar\.bz2 http://christophe.varoqui.free.fr/multipath-tools/
  * device-mapper-multipath multipath-tools-(.*?)\.tar\.bz2 http://christophe.varoqui.free.fr/multipath-tools/
  * demorse DEFAULT http://5b4az.chronos.org.uk/pages/morse.html
  * demorse DEFAULT http://www.qsl.net/5b4az/pages/morse.html
  * devtodo devtodo-([0-9.]*).tar.gz http://swapoff.org/devtodo1.html
  * devtodo devtodo-([0-9.]*).tar.gz http://swapoff.org/devtodo1.html
  * dexter DEFAULT LP-DEFAULT:dexter-rolodex
  * dexter DEFAULT LP-DEFAULT:dexter-rolodex
Line 515: Line 724:
  * diction DEFAULT GNU-DEFAULT
  * diction DEFAULT GNU-DEFAULT
  * diffmark DEFAULT http://www.mangrove.cz/diffmark/
  * diffmark DEFAULT http://www.mangrove.cz/diffmark/
* diffpdf DEFAULT http://www.qtrac.eu/diffpdf.html
  * diffstat DEFAULT ftp://invisible-island.net/diffstat/
  * diffstat DEFAULT ftp://invisible-island.net/diffstat/
* diffuse DEFAULT SF-DEFAULT
  * diffutils DEFAULT GNU-DEFAULT
  * diffutils DEFAULT GNU-DEFAULT
  * digikam DEFAULT SF-DEFAULT
  * digikam DEFAULT SF-DEFAULT
  * directfb DEFAULT:DirectFB http://www.directfb.org/index.php?path=Main/Downloads
  * dillo DEFAULT http://www.dillo.org/download/
  * dirmngr DEFAULT ftp://ftp.gnupg.org/gcrypt/dirmngr/
  * dirmngr DEFAULT ftp://ftp.gnupg.org/gcrypt/dirmngr/
  * dkms DEFAULT http://linux.dell.com/dkms/
  * dkms DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/dkms.git/
* dmapd DEFAULT https://www.flyn.org/projects/dmapd/download.html
  * dmenu DEFAULT http://tools.suckless.org/dmenu/
  * dmenu DEFAULT http://tools.suckless.org/dmenu/
  * dmidecode DEFAULT http://download.savannah.gnu.org/releases/dmidecode/
  * dmidecode DEFAULT http://download.savannah.gnu.org/releases/dmidecode/
* dnsmasq dnsmasq-([0-9]+.[0-9]+).tar.xz http://www.thekelleys.org.uk/dnsmasq/
* dnsyo DEFAULT PYPI-DEFAULT
* docco NPM-DEFAULT NPM-DEFAULT
* docker-io v([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/dotcloud/docker/releases
* docker-registry ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/dotcloud/docker-registry/releases
  * docky DEFAULT LP-DEFAULT
  * docky DEFAULT LP-DEFAULT
  * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
  * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
Line 534: Line 749:
  * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
  * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
  * dot2tex DEFAULT GOOGLE-DEFAULT
  * dot2tex DEFAULT GOOGLE-DEFAULT
  * dpsearch dpsearch-([0-9\.]+\-[0-9]+\-.*?).tar.bz2 http://code.google.com/p/dataparksearch/downloads/list
  * dpsearch dpsearch-([0-9\.]+\-[0-9]+\-.*?).tar.bz2 GOOGLE-DEFAULT:dataparksearch
  * drawtiming DEFAULT SF-DEFAULT
  * drawtiming DEFAULT SF-DEFAULT
  * drbd DEFAULT http://oss.linbit.com/drbd/
  * drbd DEFAULT http://oss.linbit.com/drbd/
  * dreampie DEFAULT LP-DEFAULT
  * dreampie DEFAULT PYPI-DEFAULT
  * drobo-utils DEFAULT http://sourceforge.net/projects/drobo-utils/files/drobo-utils/r0_6_2/
  * drobo-utils DEFAULT SF-DEFAULT
* dropbear DEFAULT https://matt.ucc.asn.au/dropbear/dropbear.html
  * drraw DEFAULT http://web.taranis.org/drraw/dist
  * drraw DEFAULT http://web.taranis.org/drraw/dist
  * drumstick DEFAULT SF-DEFAULT
  * drumstick DEFAULT SF-DEFAULT
  * drupal6 (?s)Recommended releases.*?>(6.[^<]*) http://drupal.org/project/drupal
  * drupal?-* DRUPAL-DEFAULT DRUPAL-DEFAULT
* drupal6-addthis (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/addthis
  * drupal6 (?s)Recommended releases.*?>(6.[^<]*) DRUPAL-DEFAULT:drupal
* drupal6-admin_menu (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/admin_menu
  * drupal7 (?s)Recommended releases.*?>(7.[^<]*) DRUPAL-DEFAULT:drupal
* drupal6-advanced-help (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/advanced_help
* drupal6-auto_nodetitle (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/auto_nodetitle
* drupal6-backup_migrate (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/backup_migrate
* drupal6-better_formats (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/better_formats
* drupal6-block_class (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/block_class
* drupal6-calendar (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/calendar
* drupal6-cck (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/cck
* drupal6-comment_bonus_api (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/comment_bonus_api
* drupal6-context (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/context
  * drupal6-custom_breadcrumbs (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/custom_breadcrumbs
* drupal6-date (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/date
* drupal6-diff (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/diff
* drupal6-eazylaunch (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/eazylaunch
* drupal6-emfield (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/emfield
* drupal6-features (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/features
* drupal6-feeds (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/feeds
* drupal6-filefield DEFAULT:filefield-6.x http://drupal.org/project/filefield
* drupal6-fivestar (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/fivestar
* drupal6-flexifilter (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/flexifilter
* drupal6-footnotes (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/footnotes
* drupal6-geshifilter (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/geshifilter
* drupal6-image (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/image
* drupal6-login_destination (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/login_destination
* drupal6-menu_block (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/menu_block
* drupal6-mobile_tools (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/mobile_tools
* drupal6-og (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/og
* drupal6-service_links (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/service_links
* drupal6-token (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/token
* drupal6-views (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/views
* drupal6-views_bonus (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/views_bonus
* drupal6-workspace (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/workspace
* drupal6-yubikey (?s)Recommended releases.*?>6.x-([^<]*) http://drupal.org/project/yubikey
  * drupal7 (?s)Recommended releases.*?>(7.[^<]*) http://drupal.org/project/drupal
* drupal7-active_tags (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/active_tags
* drupal7-advanced_help (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/advanced_help
* drupal7-auto_nodetitle (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/auto_nodetitle
* drupal7-backup_migrate (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/backup_migrate
* drupal7-calendar (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/calendar
* drupal7-cck (?s)Development releases.*?>7.x-([^<]*) http://drupal.org/project/cck
* drupal7-chosen (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/chosen
* drupal7-context (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/context
* drupal7-ctools (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/ctools
* drupal7-date (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/date
* drupal7-date_ical (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/date_ical
* drupal7-eva (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/eva
* drupal7-entity (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/entity
* drupal7-features (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/features
* drupal7-features_plumber (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/features_plumber
* drupal7-feeds (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/feeds
* drupal7-field_permissions (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/field_permissions
* drupal7-fivestar (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/fivestar
* drupal7-flexifilter (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/flexifilter
* drupal7-footnotes (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/footnotes
* drupal7-i18n (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/i18n
* drupal7-job_scheduler (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/job_scheduler
* drupal7-jquery_update (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/jquery_update
* drupal7-locale_cookie (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/locale_cookie
* drupal7-libraries (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/libraries
* drupal7-markdown (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/markdown
* drupal7-mediawiki_api (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/mediawiki_api
* drupal7-menu_token (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/menu_token
* drupal7-migrate (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/migrate
* drupal7-pathauto (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/pathauto
* drupal7-rules (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/rules
* drupal7-strongarm (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/strongarm
* drupal7-token (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/token
* drupal7-variable (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/variable
* drupal7-views (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/views
* drupal7-views_bulk_operations (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/views_bulk_operations
* drupal7-votingapi (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/votingapi
* drupal7-workbench DEFAULT:workbench-7.x http://drupal.org/project/workbench
* drupal7-workbench_moderation (?s)Recommended releases.*?>7.x-([^<]*) http://drupal.org/project/workbench_moderation
  * dsniff DEFAULT http://www.monkey.org/~dugsong/dsniff/
  * dsniff DEFAULT http://www.monkey.org/~dugsong/dsniff/
  * dstat latest <b>(.*?)<\/b> tarball http://dag.wieers.com/home-made/dstat/
  * dstat latest <b>(.*?)<\/b> tarball http://dag.wieers.com/home-made/dstat/
  * dtach DEFAULT SF-DEFAULT
  * dtach DEFAULT SF-DEFAULT
  * dtrx DEFAULT http://brettcsmith.org/2007/dtrx/
  * dtrx DEFAULT http://brettcsmith.org/2007/dtrx/
* dtv-scan-tables DEFAULT http://linuxtv.org/downloads/dtv-scan-tables/
  * dumpasn1 version\s+(2\d{7})\b http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c
  * dumpasn1 version\s+(2\d{7})\b http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c
  * duplicity DEFAULT http://launchpad.net/duplicity/+download
  * duplicity DEFAULT http://launchpad.net/duplicity/+download
Line 626: Line 771:
  * dvd+rw-tools DEFAULT http://fy.chalmers.se/~appro/linux/DVD+RW/tools/
  * dvd+rw-tools DEFAULT http://fy.chalmers.se/~appro/linux/DVD+RW/tools/
  * dvdauthor DEFAULT SF-DEFAULT
  * dvdauthor DEFAULT SF-DEFAULT
* dvdbackup DEFAULT http://dvdbackup.sourceforge.net/
  * dvtm DEFAULT http://www.brain-dump.org/projects/dvtm/
  * dvtm DEFAULT http://www.brain-dump.org/projects/dvtm/
  * dwb DEFAULT https://bitbucket.org/portix/dwb/downloads
  * dwb DEFAULT https://bitbucket.org/portix/dwb/downloads
* dwdiff DEFAULT http://os.ghalkes.nl/dist/
  * dwm DEFAULT http://dwm.suckless.org/
  * dwm DEFAULT http://dwm.suckless.org/
  * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html
  * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html
Line 636: Line 783:
  * e2fsprogs DEFAULT SF-DEFAULT
  * e2fsprogs DEFAULT SF-DEFAULT
  * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
  * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
  * easymock /EasyMock/(1.[^]/%\40]+)/ http://sourceforge.net/api/file/index/project-name/easymock/mtime/desc/limit/65536/rss
* earcandy DEFAULT LP-DEFAULT
  * easymock2 /EasyMock/(2.[^]/%\40]+)/ http://sourceforge.net/api/file/index/project-name/easymock/mtime/desc/limit/65536/rss
  * easymock DEFAULT SF-DEFAULT
* easystroke DEFAULT SF-DEFAULT
* easytag DEFAULT GNOME-DEFAULT
  * ecl DEFAULT SF-DEFAULT:ecls
  * eclipse >([0-9]\.[0-9])</a http://download.eclipse.org/eclipse/downloads/
  * eclipse >([0-9]\.[0-9])</a http://download.eclipse.org/eclipse/downloads/
* eclipse-m2e-core releases/(.*?)/.*\.zip http://git.eclipse.org/c/m2e/m2e-core.git/refs/tags
  * eclipse-fedorapackager eclipse-fedorapackager-(\d.\d.\d).* https://fedorahosted.org/released/eclipse-fedorapackager/
  * eclipse-fedorapackager eclipse-fedorapackager-(\d.\d.\d).* https://fedorahosted.org/released/eclipse-fedorapackager/
  * eclipse-veditor DEFAULT:veditor SF-DEFAULT
  * eclipse-jbosstools DEFAULT:jbosstools https://github.com/jbosstools/jbosstools-build-sites/releases
* eclipse-veditor VEditor (\d+\.\d+\.\d+) SF-DEFAULT:veditor
* eclipse-wtp-jeetools R(\d_\d_\d)\.zip http://git.eclipse.org/c/jeetools/webtools.javaee.git/refs/tags
* eclipse-wtp-jpa R(\d_\d_\d)\.zip http://git.eclipse.org/c/dali/webtools.dali.git/refs/tags
* eclipse-wtp-jsf R(\d_\d_\d)\.zip http://git.eclipse.org/c/jsf/webtools.jsf.git/refs/tags
* eclipse-wtp-webservices R(\d_\d_\d)\.zip http://git.eclipse.org/c/webservices/webtools.webservices.git/refs/tags
* ecryptfs-utils ecryptfs-utils_(.*?).orig.tar.gz https://launchpad.net/ecryptfs/+download
  * ed DEFAULT GNU-DEFAULT
  * ed DEFAULT GNU-DEFAULT
  * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
  * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
  * edac-utils DEFAULT SF-DEFAULT
  * edac-utils DEFAULT SF-DEFAULT
  * efibootmgr DEFAULT http://linux.dell.com/efibootmgr/permalink/
* egd DEFAULT ftp://ftp.gnupg.org/gcrypt/egd/
  * efibootmgr e\/(.*?)\.tar\.gz http://github.com/vathpela/efibootmgr/releases
* efivar e\/(.*?)\.tar\.gz http://github.com/vathpela/efivar/releases
  * efte DEFAULT SF-DEFAULT
  * efte DEFAULT SF-DEFAULT
* eigen3 ([0-9]?\.[0-9.]+).tar.gz https://bitbucket.org/eigen/eigen/downloads
  * ejabberd v([\d+\.]+)\.zip https://github.com/processone/ejabberd/tags
  * ejabberd v([\d+\.]+)\.zip https://github.com/processone/ejabberd/tags
  * ekg2 DEFAULT https://github.com/leafnode/ekg2/tags
  * ekg2 DEFAULT https://github.com/leafnode/ekg2/tags
  * ekg ekg-(.{3,5}?).tar.gz http://ekg.chmurka.net/download.php
  * ekg ekg-(.{3,5}?).tar.gz http://ekg.chmurka.net/download.php
  * electric DEFAULT GNU-DEFAULT
  * electric DEFAULT GNU-DEFAULT
* elektra DEFAULT http://www.libelektra.org/ftp/elektra/releases/
  * elinks DEFAULT http://elinks.or.cz/download/
  * elinks DEFAULT http://elinks.or.cz/download/
  * elixir v(.*?).zip https://github.com/elixir-lang/elixir/downloads
  * elixir \"v([0-9.]*?)\" https://api.github.com/repos/elixir-lang/elixir/tags
  * em8300 DEFAULT SF-DEFAULT:dxr3
  * elk DEFAULT SF-DEFAULT
  * emacs DEFAULT GNU-DEFAULT
  * emacs DEFAULT GNU-DEFAULT
  * emacs-auctex DEFAULT:auctex GNU-DEFAULT:auctex
  * emacs-auctex DEFAULT:auctex GNU-DEFAULT:auctex
  * emacs-auto-complete DEFAULT:auto-complete http://cx4a.org/pub/auto-complete/
  * emacs-auto-complete DEFAULT:auto-complete http://cx4a.org/pub/auto-complete/
* emacs-bbdb DEFAULT:bbdb http://download.savannah.gnu.org/releases/bbdb/
  * emacs-common-ddskk ddskk-([0-9]+\.[0-9.]+)\.tar\.gz http://openlab.ring.gr.jp/skk/maintrunk/
  * emacs-common-ddskk ddskk-([0-9]+\.[0-9.]+)\.tar\.gz http://openlab.ring.gr.jp/skk/maintrunk/
  * emacs-common-ess ess-(.*?).tgz http://stat.ethz.ch/ESS/downloads/ess/
  * emacs-common-ess ess-(.*?).tgz http://stat.ethz.ch/ESS/downloads/ess/
Line 662: Line 824:
  * emacs-ibus DEFAULT:ibus-el LP-DEFAULT:ibus.el
  * emacs-ibus DEFAULT:ibus-el LP-DEFAULT:ibus.el
  * emacs-identica-mode identica-mode.tar.gz http://download.savannah.gnu.org/releases/identica-mode/
  * emacs-identica-mode identica-mode.tar.gz http://download.savannah.gnu.org/releases/identica-mode/
  * emacs-irsim-mode DEFAULT GOOGLE-DEFAULT
  * emacs-irsim-mode irsim-mode-version\s+"([^"]+)" http://irsim-mode.googlecode.com/files/irsim-mode.el
  * emacs-mew DEFAULT:mew http://www.mew.org/Release/
  * emacs-mew DEFAULT:mew http://www.mew.org/Release/
  * emacs-pymacs archive/v(.*?)\.zip https://github.com/pinard/Pymacs/tags
  * emacs-pymacs archive/v(.*?)\.zip https://github.com/pinard/Pymacs/tags
  * emacs-vm vm-([^v]*?).tgz http://download.savannah.nongnu.org/releases/viewmail/
  * emacs-rpm-spec-mode \bVersion:\s+([\w.]+) http://tihlde.org/~stigb/rpm-spec-mode.el
* emacs-vm vm-(\d+\.\d+\.\d+)\.tgz LP-DEFAULT:vm
  * emacspeak DEFAULT GOOGLE-DEFAULT
  * emacspeak DEFAULT GOOGLE-DEFAULT
  * email2trac DEFAULT ftp://ftp.sara.nl/pub/outgoing/
  * email2trac DEFAULT ftp://ftp.sara.nl/pub/outgoing/
  * ember DEFAULT SF-DEFAULT:worldforge
  * ember DEFAULT SF-DEFAULT:worldforge
  * ember-media DEFAULT SF-DEFAULT:worldforge
  * ember-media DEFAULT SF-DEFAULT:worldforge
* emelfm2 DEFAULT http://emelfm2.net/rel/
  * emesene v([.0-9]+)\.(?:tar|zip) https://github.com/emesene/emesene/tags
  * emesene v([.0-9]+)\.(?:tar|zip) https://github.com/emesene/emesene/tags
  * emma DEFAULT SF-DEFAULT
  * emma DEFAULT SF-DEFAULT
* encuentro DEFAULT LP-DEFAULT
* enet DEFAULT http://enet.bespin.org/download/
  * engine_pkcs11 DEFAULT https://github.com/OpenSC/engine_pkcs11/tags
  * engine_pkcs11 DEFAULT https://github.com/OpenSC/engine_pkcs11/tags
  * enscript DEFAULT GNU-DEFAULT
  * enscript DEFAULT GNU-DEFAULT
* environment-modules DEFAULT:modules SF-DEFAULT:modules
  * eot-utils >eot-utilities-(.*?)\.(?:tar) http://www.w3.org/Tools/eot-utils/
  * eot-utils >eot-utilities-(.*?)\.(?:tar) http://www.w3.org/Tools/eot-utils/
  * epiphany-extensions DEFAULT GNOME-DEFAULT
  * epic DEFAULT:epic4 http://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/
* epic5 DEFAULT http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/
  * epydoc DEFAULT SF-DEFAULT
  * epydoc DEFAULT SF-DEFAULT
  * eqntott DEFAULT GOOGLE-DEFAULT
  * eqntott DEFAULT GOOGLE-DEFAULT
* erfa DEFAULT http://liberfa.github.io/erfa/
  * eris DEFAULT SF-DEFAULT:worldforge
  * eris DEFAULT SF-DEFAULT:worldforge
  * erlang otp_src_(.*?).tar\.gz http://erlang.org/download.html
  * erlang otp_src_(.*?).tar\.gz http://www.erlang.org/download.html
  * erlang-basho_metrics (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_metrics/tags
  * erlang-basho_metrics (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_metrics/tags
  * erlang-basho_stats (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_stats/tags
  * erlang-basho_stats (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_stats/tags
Line 714: Line 883:
  * erlang-rebar (\d+\.\d+\.\d+)\.zip https://github.com/basho/rebar/tags
  * erlang-rebar (\d+\.\d+\.\d+)\.zip https://github.com/basho/rebar/tags
  * erlang-riak_api ([\d+\.]+)\.zip https://github.com/basho/riak_api/tags
  * erlang-riak_api ([\d+\.]+)\.zip https://github.com/basho/riak_api/tags
  * erlang-riak_client (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak-erlang-client/tags
  * erlang-riak_client (?:riakc-|\/)([\d\.]+)\.tar.gz https://github.com/basho/riak-erlang-client/tags
  * erlang-riak_control (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_control/tags
  * erlang-riak_control (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_control/tags
  * erlang-riak_core (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_core/tags
  * erlang-riak_core (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_core/tags
  * erlang-riak_err riak_err-(\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_err/tags
  * erlang-riak_err riak_err-(\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_err/tags
  * erlang-riak_kv (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_kv/tags
  * erlang-riak_kv (?:riak_kv-|\/)([\d\.]+)\.tar.gz https://github.com/basho/riak_kv/tags
  * erlang-riak_pb (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_pb/tags
  * erlang-riak_pb ([\d\.]+)\.tar.gz https://github.com/basho/riak_pb/tags
  * erlang-riak_pipe (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_pipe/tags
  * erlang-riak_pipe (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_pipe/tags
  * erlang-riak_search (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_search/tags
  * erlang-riak_search (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_search/tags
  * erlang-riak_sysmon (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_sysmon/tags
  * erlang-riak_sysmon (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_sysmon/tags
* erlang-riaknostic "name":\s*"*v([\d\.]+)" https://api.github.com/repos/basho/riaknostic/tags
  * erlang-rpm-macros ([\d+\.]+)\.zip https://github.com/lemenkov/erlang-rpm-macros/tags
  * erlang-rpm-macros ([\d+\.]+)\.zip https://github.com/lemenkov/erlang-rpm-macros/tags
  * erlang-sext ([\d+\.]+)\.zip https://github.com/uwiger/sext/tags
  * erlang-sext ([\d+\.]+)\.zip https://github.com/uwiger/sext/tags
Line 732: Line 902:
  * espeak DEFAULT http://espeak.sourceforge.net/download.html
  * espeak DEFAULT http://espeak.sourceforge.net/download.html
  * espresso-ab DEFAULT GOOGLE-DEFAULT:eqntott
  * espresso-ab DEFAULT GOOGLE-DEFAULT:eqntott
* etcd GITHUB-TAGS GITHUB-TAGS:coreos/etcd
  * etckeeper DEFAULT DEBIAN-DEFAULT
  * etckeeper DEFAULT DEBIAN-DEFAULT
  * etherape DEFAULT http://sf.net/projects/etherape/
  * etherape DEFAULT http://sf.net/projects/etherape/
Line 743: Line 914:
  * expat DEFAULT SF-DEFAULT
  * expat DEFAULT SF-DEFAULT
  * expect \bexpect([\d.]+)\.t SF-DEFAULT
  * expect \bexpect([\d.]+)\.t SF-DEFAULT
* exec-maven-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/codehaus/mojo/exec-maven-plugin/
* expresso NPM-DEFAULT NPM-DEFAULT
* extremetuxracer DEFAULT:etr SF-DEFAULT
* eyesight /v([\d+\.]+)\.tar\.gz https://github.com/hawaii-desktop/eyesight/tags
</pre>
</pre>


Line 749: Line 924:
  * Falcon Falcon-([0-9\.]*)\.t.*gz http://falconpl.org/project_dl/_official_rel/
  * Falcon Falcon-([0-9\.]*)\.t.*gz http://falconpl.org/project_dl/_official_rel/
  * fabric DEFAULT:Fabric PYPI-DEFAULT:Fabric
  * fabric DEFAULT:Fabric PYPI-DEFAULT:Fabric
* fatrace DEFAULT http://launchpad.net/fatrace/+download
  * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
  * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
  * fatsort DEFAULT SF-DEFAULT
  * fatsort DEFAULT SF-DEFAULT
  * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
  * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
  * fbset DEFAULT http://users.telenet.be/geertu/Linux/fbdev/
  * fbset DEFAULT http://users.telenet.be/geertu/Linux/fbdev/
* fdm DEFAULT SF-DEFAULT
  * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
  * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
  * fedfs-utils fedfs-utils-([0-9.]*?).tar.gz http://oss.oracle.com/projects/fedfs-utils/files/
  * fedfs-utils fedfs-utils-([0-9.]*?).tar.gz http://oss.oracle.com/projects/fedfs-utils/files/
  * fedmsg DEFAULT PYPI-DEFAULT
  * fedmsg DEFAULT PYPI-DEFAULT
  * fedora-review /FedoraReview/([^"]+).tar.gz http://githubredir.debian.net/github/timlau/FedoraReview
  * fedora-review GITHUB-TAGS GITHUB-TAGS:timlau/FedoraReview
  * felix-bundlerepository org.apache.felix.bundlerepository-([0-9.]*).jar http://www.fightrice.com/mirrors/apache/felix/
* feh DEFAULT http://feh.finalrewind.org/
  * felix-bundlerepository org.apache.felix.bundlerepository-([0-9.]*).jar http://felix.apache.org/downloads.cgi
  * felix-gogo-command >org.apache.felix.gogo.command-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
  * felix-gogo-command >org.apache.felix.gogo.command-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
  * felix-osgi-core >org.osgi.core-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
  * felix-osgi-core >org.osgi.core-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
  * felix-osgi-obr >org.osgi.service.obr-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
  * felix-osgi-obr >org.osgi.service.obr-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
* felix-utils (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/org.apache.felix.utils/
  * felix-framework org.apache.felix.main.distribution-([0-9.]*?).tar.gz http://felix.apache.org/site/downloads.cgi
  * felix-framework org.apache.felix.main.distribution-([0-9.]*?).tar.gz http://felix.apache.org/site/downloads.cgi
  * felix-osgi-compendium org.osgi.compendium-([0-9.]*?)-project.tar.gz http://www.apache.org/dist/felix/
  * felix-osgi-compendium org.osgi.compendium-([0-9.]*?)-project.tar.gz http://www.apache.org/dist/felix/
Line 770: Line 947:
  * fetchmail DEFAULT SF-DEFAULT
  * fetchmail DEFAULT SF-DEFAULT
  * ffsb DEFAULT SF-DEFAULT
  * ffsb DEFAULT SF-DEFAULT
  * fftw fftw-([0-9\.]*?).tar.gz http://www.fftw.org/download.html
  * fftw DEFAULT http://www.fftw.org/download.html
* fido fido-([0-9\.]+).tar.gz http://www.joedog.org/pub/fido/
  * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
  * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
  * file DEFAULT ftp://ftp.astron.com/pub/file/
  * file DEFAULT ftp://ftp.astron.com/pub/file/
  * filebench DEFAULT SF-DEFAULT
  * filebench DEFAULT SF-DEFAULT
* filezilla FileZilla\_([0-9\.]+)\_src.tar.bz2 http://download.filezilla-project.org/
  * findbugs findbugs-([0-9\.]*?)-source\.zip SF-DEFAULT
  * findbugs findbugs-([0-9\.]*?)-source\.zip SF-DEFAULT
  * findutils DEFAULT GNU-DEFAULT
  * findutils DEFAULT GNU-DEFAULT
  * firebird Firebird-(.*?)-[0-9]\.tar\.bz2 SF-DEFAULT
  * firehol DEFAULT http://firehol.org/download/latest/
  * firehol DEFAULT SF-DEFAULT
  * fish DEFAULT http://fishshell.com/
  * flac DEFAULT SF-DEFAULT
  * flac DEFAULT SF-DEFAULT
* fldigi fldigi-(.*?).tar.gz http://www.w1hkj.com/downloads/fldigi/
  * flex DEFAULT SF-DEFAULT
  * flex DEFAULT SF-DEFAULT
  * flexdock DEFAULT http://forge.scilab.org/index.php/p/flexdock/downloads/
  * flexdock DEFAULT http://forge.scilab.org/index.php/p/flexdock/downloads/
* flickcurl DEFAULT http://download.dajobe.org/flickcurl/
  * flterm DEFAULT:Release https://github.com/milkymist/milkymist/tags
  * flterm DEFAULT:Release https://github.com/milkymist/milkymist/tags
* fltk DEFAULT http://www.fltk.org/software.php
  * fluxbox DEFAULT http://fluxbox.org/download/
  * fluxbox DEFAULT http://fluxbox.org/download/
* focuswriter GITHUB-TAGS GITHUB-TAGS:gottcode/focuswriter
  * fontconfig DEFAULT http://www.fontconfig.org/release/
  * fontconfig DEFAULT http://www.fontconfig.org/release/
  * foomatic foomatic-db-engine-(.*?\.[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
  * foomatic foomatic-db-engine-(.*?\.[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
  * fop DEFAULT http://archive.apache.org/dist/xmlgraphics/fop/source/
  * fop DEFAULT http://archive.apache.org/dist/xmlgraphics/fop/source/
* fotoxx fotoxx-(.*?).tar.gz http://www.kornelix.com/tarballs.html
  * foxtrotgps foxtrotgps-(.*?).tar.xz http://www.foxtrotgps.org/releases/
  * foxtrotgps foxtrotgps-(.*?).tar.xz http://www.foxtrotgps.org/releases/
* fparser fparser((?:[0-9]+\.){1,2}[0-9]+)\.zip http://warp.povusers.org/FunctionParser/
  * fpc The latest release is <b>([\d.]+)</b> http://www.freepascal.org/download.var
  * fpc The latest release is <b>([\d.]+)</b> http://www.freepascal.org/download.var
  * fping DEFAULT http://www.fping.org/dist/
  * fping DEFAULT http://www.fping.org/dist/
* fprintd DEFAULT http://people.freedesktop.org/~hadess/
* freecode-submit DEFAULT http://www.catb.org/~esr/freecode-submit/
  * freecol DEFAULT SF-DEFAULT
  * freecol DEFAULT SF-DEFAULT
* freecolor DEFAULT http://www.rkeene.org/files/oss/freecolor/
  * freeDiameter http://www.freediameter.net/hg/freeDiameter/archive/(\d+\.\d+\.\d+).tar.gz http://www.freediameter.net/trac/blog?format=rss
  * freeDiameter http://www.freediameter.net/hg/freeDiameter/archive/(\d+\.\d+\.\d+).tar.gz http://www.freediameter.net/trac/blog?format=rss
  * freedink DEFAULT GNU-DEFAULT
  * freedink DEFAULT GNU-DEFAULT
Line 805: Line 993:
  * freeradius DEFAULT:freeradius-server ftp://ftp.freeradius.org/pub/freeradius/
  * freeradius DEFAULT:freeradius-server ftp://ftp.freeradius.org/pub/freeradius/
  * freetype DEFAULT http://download.savannah.gnu.org/releases/freetype/
  * freetype DEFAULT http://download.savannah.gnu.org/releases/freetype/
  * fritzing /download/([0-9].*?)/source-tarball/fritzing.*tar\.bz2 http://fritzing.org/download/
  * freexl DEFAULT http://www.gaia-gis.it/gaia-sins/freexl-sources/
* fribidi DEFAULT http://fribidi.org/download/
* fritzing /source-tarball/fritzing-([0-9a-z\.]+)?.source.tar\.bz2 http://fritzing.org/download/
  * fs_mark DEFAULT SF-DEFAULT:fsmark
  * fs_mark DEFAULT SF-DEFAULT:fsmark
  * f-spot DEFAULT GNOME-DEFAULT
  * f-spot DEFAULT GNOME-DEFAULT
Line 825: Line 1,015:
  * gauche DEFAULT:Gauche SF-DEFAULT
  * gauche DEFAULT:Gauche SF-DEFAULT
  * gausssum DEFAULT:GaussSum SF-DEFAULT
  * gausssum DEFAULT:GaussSum SF-DEFAULT
  * gc >gc-?([^<]+).tar.gz< http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
  * gc DEFAULT http://www.hpl.hp.com/personal/Hans_Boehm/gc/
  * gcin DEFAULT http://www.csie.nctu.edu.tw/~cp76/gcin/download/
  * gcin DEFAULT http://www.csie.nctu.edu.tw/~cp76/gcin/download/
  * gcl DEFAULT GNU-DEFAULT
  * gcl DEFAULT GNU-DEFAULT
  * gcompris DEFAULT SF-DEFAULT
  * gcompris DEFAULT http://gcompris.net/download/
  * gdata-java DEFAULT:gdata-src.java http://code.google.com/p/gdata-java-client/downloads/list
  * gd DEFAULT https://bitbucket.org/libgd/gd-libgd/downloads
  * gdbm DEFAULT GNU-DEFAULT
  * gdbm DEFAULT GNU-DEFAULT
* gdcm gdcm-([0-9.]*?)\.tar SF-DEFAULT
  * gdesklets DEFAULT http://www.gdesklets.de/
  * gdesklets DEFAULT http://www.gdesklets.de/
* gdisk gptfdisk-(.*?)\.tar\.gz SF-DEFAULT:gptfdisk
  * gdome2 DEFAULT http://gdome2.cs.unibo.it/
  * gdome2 DEFAULT http://gdome2.cs.unibo.it/
  * geary DEFAULT http://yorba.org/download/geary/*/
  * geary DEFAULT GNOME-DEFAULT
* gedit-valencia DEFAULT:valencia GNOME-DEFAULT:valencia
  * geeqie DEFAULT SF-DEFAULT
  * geeqie DEFAULT SF-DEFAULT
  * genbackupdata DEFAULT http://code.liw.fi/debian/pool/main/g/genbackupdata/
  * genbackupdata DEFAULT http://code.liw.fi/debian/pool/main/g/genbackupdata/
Line 840: Line 1,033:
  * gentoo DEFAULT SF-DEFAULT
  * gentoo DEFAULT SF-DEFAULT
  * getdata DEFAULT SF-DEFAULT
  * getdata DEFAULT SF-DEFAULT
* getmail DEFAULT http://pyropus.ca/software/getmail/old-versions/
  * gettext DEFAULT GNU-DEFAULT
  * gettext DEFAULT GNU-DEFAULT
  * geronimo-jaspic-spec >([^/]+)/< http://repo1.maven.org/maven2/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/
  * geronimo-jaspic-spec >([^/]+)/< http://repo1.maven.org/maven2/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/
Line 847: Line 1,041:
  * geronimo-parent-poms >specs-parent-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
  * geronimo-parent-poms >specs-parent-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
  * gforth DEFAULT GNU-DEFAULT
  * gforth DEFAULT GNU-DEFAULT
* gftp DEFAULT http://gftp.seul.org/
  * ghc GHC (.*) Released! http://haskell.org/ghc/
  * ghc GHC (.*) Released! http://haskell.org/ghc/
  * ghc-aeson HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghc-* HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-Agda HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ansi-terminal HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-arrows HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-attempt HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-attoparsec HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-attoparsec-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-base-unicode-symbols HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-base16-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-base64-bytestring HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-binary-shared HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-blaze-builder HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-blaze-builder-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-blaze-builder-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-blaze-html HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-blaze-markup HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-blaze-textual HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-bloomfilter HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-Boolean HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-byteorder HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-bytestring-nums HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-bytestring-trie HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-cabal-file-th HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-cairo HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-case-insensitive HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-cautious-file HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-cereal HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-chalmers-lava2000 HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-citeproc-hs HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-cmdargs HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-colour HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-concrete-typerep HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ConfigFile HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-cryptohash HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-csv HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-css-text HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-data-accessor HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-data-default HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-data-inttrie HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-data-reify HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-data-memocombinators HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-dataenc HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-date-cache HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-derive HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-Diff HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-digest HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-dlist HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-dotgen HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-editline HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-edit-distance HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-enumerator HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-executable-path HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-failure HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-fast-logger HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ForSyDe HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ghc-mtl HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ghc-paths HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-gio HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-glade HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-glib HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-gtk HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-gtksourceview2 HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hakyll HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hamlet HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-happstack-server HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hashable HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hashed-storage HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hashtables HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-haskeline HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-haskell-src-exts HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hinotify HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hledger-lib HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hs-bibutils HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-HSH HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-hslogger HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-http-types HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-IOSpec HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-json HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-lambdabot-utils HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-language-c HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-lazysmallcheck HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-libmpd HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-lifted-base HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-logict HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ltk HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-MemoTrie HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-MissingH HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-mmap HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-MonadCatchIO-mtl HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-MonadCatchIO-transformers HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-monad-control HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-MonadRandom HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-mtlparse HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-mwc-random HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-netlist HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-netlist-to-vhdl HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-network-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-numbers HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-NumInstances HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-oeis HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-pandoc-types HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-pango HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-parameterized-data HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-pcre-light HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-process-leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-ranges HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-readline HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-regex-pcre HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-regex-tdfa HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-regexpr HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-resourcet HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-rosezipper HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-safe HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-semigroups HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-sendfile HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-SHA HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-Stream HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-shakespeare HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-show HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-simple-sendfile HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-sized-types HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-smallcheck HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-snap-core HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-strict HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-stringsearch HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-tagged HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-tagsoup HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-tar HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-temporary HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-terminfo HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-texmath HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-transformers-base HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-type-level HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-uniplate HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-unix-compat HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-unordered-containers HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-utf8-string HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-vault HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-vector-space HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-void HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-wai HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-wai-extra HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-wai-logger HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-warp HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-X11 HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-X11-xft HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-xdg-basedir HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-xml HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-xmonad-contrib HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-xss-sanitize HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-zip-archive HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-zlib-bindings HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-zlib-conduit HACKAGE-DEFAULT HACKAGE-DEFAULT
* ghc-zlib-enum HACKAGE-DEFAULT HACKAGE-DEFAULT
  * ghostscript DEFAULT http://downloads.ghostscript.com/public/
  * ghostscript DEFAULT http://downloads.ghostscript.com/public/
  * giflib DEFAULT SF-DEFAULT
  * giflib DEFAULT SF-DEFAULT
  * gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
  * gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
  * giggle giggle-(.*?).tar.bz2 http://ftp.gnome.org/pub/GNOME/sources/giggle/0.6/
  * giggle DEFAULT GNOME-DEFAULT
  * gimp DEFAULT ftp://ftp.gimp.org/pub/gimp/stable/
  * gimp DEFAULT ftp://ftp.gimp.org/pub/gimp/stable/
  * gimp-help DEFAULT ftp://ftp.gimp.org/pub/gimp/help/
  * gimp-help DEFAULT ftp://ftp.gimp.org/pub/gimp/help/
* gimp-separate+ DEFAULT:separate+ http://sourceforge.jp/projects/separate-plus/releases/?package_id=8879
  * git-annex HACKAGE-DEFAULT HACKAGE-DEFAULT
  * git-annex HACKAGE-DEFAULT HACKAGE-DEFAULT
  * git-cola cola-([0-9.]*)\.tar\.gz https://github.com/git-cola/git-cola/downloads
  * git-cola >v([0-9.]*)< https://github.com/git-cola/git-cola/releases
* git-extras ([0-9.]*?)\.tar.* https://github.com/visionmedia/git-extras/tags
* gitifyhg DEFAULT PYPI-DEFAULT
  * gkrellm DEFAULT http://www.gkrellm.net/
  * gkrellm DEFAULT http://www.gkrellm.net/
  * gkrellm-freq DEFAULT:gkrellm-gkfreq SF-DEFAULT:gkrellm-gkfreq
  * gkrellm-freq DEFAULT:gkrellm-gkfreq SF-DEFAULT:gkrellm-gkfreq
  * gkrellm-top DEFAULT:gkrelltop SF-DEFAULT:gkrelltop
  * gkrellm-top DEFAULT:gkrelltop SF-DEFAULT:gkrelltop
  * gkrellm-weather DEFAULT:gkrellweather http://sites.google.com/site/makovick/gkrellm-plugins
  * glade DEFAULT GNOME-DEFAULT
  * glade3 DEFAULT GNOME-DEFAULT
  * glade3 DEFAULT GNOME-DEFAULT
* glances /v(.+?)\.zip https://github.com/nicolargo/glances/tags
  * glassfish-jsp >javax.servlet.jsp-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
  * glassfish-jsp >javax.servlet.jsp-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
  * glassfish-jsp-api >javax.servlet.jsp-api-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
  * glassfish-jsp-api >javax.servlet.jsp-api-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
  * gle \bgle-graphics-(.*?)f-src\.tar SF-DEFAULT:glx
  * gle \bgle-graphics-(.*?)f-src\.tar SF-DEFAULT:glx
* glfw DEFAULT SF-DEFAULT
* glm DEFAULT SF-DEFAULT:ogl-math
* glogg DEFAULT http://glogg.bonnefon.org/files/
  * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
  * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
  * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
  * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
Line 1,024: Line 1,072:
  * gmpy DEFAULT GOOGLE-DEFAULT
  * gmpy DEFAULT GOOGLE-DEFAULT
  * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
  * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
* gnome-applet-sensors DEFAULT:sensors-applet SF-DEFAULT:sensors-applet
  * gnome-gmail DEFAULT SF-DEFAULT
  * gnome-gmail DEFAULT SF-DEFAULT
  * gnome-icon-theme DEFAULT GNOME-DEFAULT
  * gnome-icon-theme DEFAULT GNOME-DEFAULT
* gnome-logs DEFAULT GNOME-DEFAULT
  * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
  * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
  * gnome-shell-extensions DEFAULT GNOME-DEFAULT
  * gnome-shell-extensions DEFAULT GNOME-DEFAULT
* gnome-sound-recorder DEFAULT GNOME-DEFAULT
  * gnome-subtitles DEFAULT SF-DEFAULT
  * gnome-subtitles DEFAULT SF-DEFAULT
  * gnome-tweak-tool DEFAULT GNOME-DEFAULT
  * gnome-tweak-tool DEFAULT GNOME-DEFAULT
  * gnomeradio DEFAULT LP-DEFAULT
  * gnomeradio DEFAULT LP-DEFAULT
  * gnote DEFAULT GNOME-DEFAULT
  * gnote DEFAULT GNOME-DEFAULT
* gnotime DEFAULT SF-DEFAULT:gttr
  * gnu-efi DEFAULT SF-DEFAULT
  * gnu-efi DEFAULT SF-DEFAULT
  * gnu-getopt java-getopt-([0-9.]*?).tar.gz http://www.urbanophile.com/arenn/hacking/download.html
  * gnu-getopt java-getopt-([0-9.]*?).tar.gz http://www.urbanophile.com/arenn/hacking/download.html
* gnubik DEFAULT GNU-DEFAULT
  * gnucap DEFAULT GNU-DEFAULT
  * gnucap DEFAULT GNU-DEFAULT
  * gnucash DEFAULT SF-DEFAULT
  * gnucash DEFAULT SF-DEFAULT
  * gnuchess DEFAULT GNU-DEFAULT:chess
  * gnuchess DEFAULT GNU-DEFAULT:chess
* gnugo gnugo-(.*?)\.tar\.gz GNU-DEFAULT
  * gnu-smalltalk DEFAULT:smalltalk GNU-DEFAULT:smalltalk
  * gnu-smalltalk DEFAULT:smalltalk GNU-DEFAULT:smalltalk
  * gnubik DEFAULT GNU-DEFAULT
  * gnubik DEFAULT GNU-DEFAULT
  * gnugo DEFAULT GNU-DEFAULT
  * gnugo DEFAULT GNU-DEFAULT
  * gnujump DEFAULT GNU-DEFAULT
  * gnujump DEFAULT GNU-DEFAULT
  * gnumed gnumed-client\.(.*?)\.tgz http://wiki.gnumed.de/bin/view/Gnumed/InstallerGuideHomeShort
  * gnumed gnumed-client\.(.*?)\.tgz http://www.gnumed.de/downloads/client/*/
  * gnumed-server gnumed-server\.(.*?)\.tgz http://wiki.gnumed.de/bin/view/Gnumed/InstallerGuideHomeShort
  * gnumed-server gnumed-server\.(.*?)\.tgz http://www.gnumed.de/downloads/server/*/
  * gnumeric DEFAULT GNOME-DEFAULT
  * gnumeric DEFAULT GNOME-DEFAULT
  * gnupg gnupg-(1.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
  * gnupg gnupg-(1.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
Line 1,054: Line 1,102:
  * gnusim8085 gnusim8085-([0-9.]*).tar.gz http://gnusim8085.org/downloads.php
  * gnusim8085 gnusim8085-([0-9.]*).tar.gz http://gnusim8085.org/downloads.php
  * gnustep-make DEFAULT ftp://ftp.gnustep.org/pub/gnustep/core/
  * gnustep-make DEFAULT ftp://ftp.gnustep.org/pub/gnustep/core/
  * gnutls DEFAULT ftp://ftp.gnutls.org/gcrypt/gnutls/*/
  * gnutls DEFAULT ftp://ftp.gnutls.org/gcrypt/gnutls/v*/
* goaccess goaccess-([0-9.]*?).tar.gz SF-DEFAULT
  * gobject-introspection DEFAULT GNOME-DEFAULT
  * gobject-introspection DEFAULT GNOME-DEFAULT
* gocl ([0-9.]*?)\.tar.* https://github.com/elima/gocl/tags
* gocr DEFAULT http://www-e.uni-magdeburg.de/jschulen/ocr/download.html
  * goffice DEFAULT GNOME-DEFAULT
  * goffice DEFAULT GNOME-DEFAULT
* golang go(\d+\.\d+.\d+)\.src\.tar\.gz https://code.google.com/p/go/downloads/list
  * gold DEFAULT http://www.clusterresources.com/downloads/gold/
  * gold DEFAULT http://www.clusterresources.com/downloads/gold/
* gooddata-cl /([\d+\.]+)\.tar\.gz https://github.com/gooddata/gooddata-cl/tags
  * googlecl DEFAULT GOOGLE-DEFAULT
  * googlecl DEFAULT GOOGLE-DEFAULT
  * google-guice (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/sonatype/sisu/sisu-guice/
  * google-guice (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/sonatype/sisu/sisu-guice/
  * google-gson google-gson-([0-9.]*?)-release\.zip GOOGLE-DEFAULT
  * google-gson google-gson-([0-9.]*?)-release\.zip GOOGLE-DEFAULT
  * gourmet DEFAULT SF-DEFAULT:grecipe-manager
* gource [^-]gource-([0-9.]+)\.tar GOOGLE-DEFAULT
  * gourmet GITHUB-TAGS GITHUB-TAGS:thinkle/gourmet
  * gparted DEFAULT SF-DEFAULT
  * gparted DEFAULT SF-DEFAULT
  * gpaste gpaste-([0-9.]*?).tar.xz https://github.com/Keruspe/GPaste/downloads
  * gpaste gpaste-([0-9.]*?).tar.xz https://github.com/Keruspe/GPaste/downloads
  * gperf DEFAULT GNU-DEFAULT
  * gperf DEFAULT GNU-DEFAULT
  * gperftools DEFAULT GOOGLE-DEFAULT
  * gperftools DEFAULT GOOGLE-DEFAULT
* gpgme DEFAULT ftp://ftp.gnupg.org/gcrypt/gpgme/
* gpick DEFAULT GOOGLE-DEFAULT
  * gplcver gplcver-(.*?).tar.bz2 http://sourceforge.net/projects/gplcver/
  * gplcver gplcver-(.*?).tar.bz2 http://sourceforge.net/projects/gplcver/
  * gpm DEFAULT http://www.nico.schottelius.org/software/gpm/archives/
  * gpm DEFAULT http://www.nico.schottelius.org/software/gpm/archives/
* gpm gpm-(1\.20\..*?)\.tar\.gz http://www.nico.schottelius.org/software/gpm/archives/
* gpodder DEFAULT http://gpodder.org/src/
  * gpredict DEFAULT SF-DEFAULT
  * gpredict DEFAULT SF-DEFAULT
  * gprolog DEFAULT GNU-DEFAULT
  * gprolog DEFAULT GNU-DEFAULT
  * gpsbabel gpsbabel-([0-9.]+)\.tar\.gz http://www.gpsbabel.org/download.html
  * gpsbabel gpsbabel-([0-9.]+)\.tar\.gz http://www.gpsbabel.org/download.html
  * gpscorrelate DEFAULT http://www.freefoote.com/linux_gpscorr.html
  * gpscorrelate /tag/([0-9.]*) https://github.com/freefoote/gpscorrelate/releases
* gputils DEFAULT SF-DEFAULT
  * GraphicsMagick DEFAULT SF-DEFAULT:graphicsmagick
  * GraphicsMagick DEFAULT SF-DEFAULT:graphicsmagick
  * graphviz DEFAULT http://www.graphviz.org/pub/graphviz/stable/SOURCES/
  * graphviz DEFAULT http://www.graphviz.org/pub/graphviz/stable/SOURCES/
* greybird GITHUB-TAGS GITHUB-TAGS:shimmerproject/Greybird
  * grep DEFAULT GNU-DEFAULT
  * grep DEFAULT GNU-DEFAULT
  * grib_api DEFAULT http://software.ecmwf.int/wiki/display/GRIB/Releases
  * grib_api DEFAULT http://software.ecmwf.int/wiki/display/GRIB/Releases
Line 1,089: Line 1,147:
  * gstreamer1 DEFAULT:gstreamer http://gstreamer.freedesktop.org/src/gstreamer/
  * gstreamer1 DEFAULT:gstreamer http://gstreamer.freedesktop.org/src/gstreamer/
  * gstreamer-rtsp DEFAULT:gst-rtsp http://gstreamer.freedesktop.org/src/gst-rtsp/
  * gstreamer-rtsp DEFAULT:gst-rtsp http://gstreamer.freedesktop.org/src/gst-rtsp/
* gstreamer1-vaapi DEFAULT:gstreamer-vaapi http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/
  * gsl DEFAULT GNU-DEFAULT
  * gsl DEFAULT GNU-DEFAULT
* gtatool DEFAULT http://download.savannah.gnu.org/releases/gta/
* gtkhash DEFAULT SF-DEFAULT
  * gthumb DEFAULT GNOME-DEFAULT
  * gthumb DEFAULT GNOME-DEFAULT
  * gtk-murrine-engine DEFAULT:murrine GNOME-DEFAULT:murrine
  * gtk-murrine-engine DEFAULT:murrine GNOME-DEFAULT:murrine
Line 1,098: Line 1,159:
  * gucharmap DEFAULT GNOME-DEFAULT
  * gucharmap DEFAULT GNOME-DEFAULT
  * guile DEFAULT GNU-DEFAULT
  * guile DEFAULT GNU-DEFAULT
* guilt DEFAULT http://guilt.31bits.net/src/
  * guitone DEFAULT https://guitone.thomaskeller.biz/g/download
  * guitone DEFAULT https://guitone.thomaskeller.biz/g/download
  * gupnp DEFAULT GNOME-DEFAULT
  * gupnp DEFAULT GNOME-DEFAULT
Line 1,103: Line 1,165:
  * gupnp-dlna DEFAULT GNOME-DEFAULT
  * gupnp-dlna DEFAULT GNOME-DEFAULT
  * gupnp-tools DEFAULT GNOME-DEFAULT
  * gupnp-tools DEFAULT GNOME-DEFAULT
* gupnp-vala DEFAULT GNOME-DEFAULT
  * gutenprint Gutenprint (.*?) is released http://gimp-print.sourceforge.net/
  * gutenprint Gutenprint (.*?) is released http://gimp-print.sourceforge.net/
  * gv DEFAULT GNU-DEFAULT
  * gv DEFAULT GNU-DEFAULT
  * gwsmhg DEFAULT SF-DEFAULT
  * gwsmhg DEFAULT SF-DEFAULT
* gxine DEFAULT SF-DEFAULT:xine
  * gxmessage DEFAULT GNU-DEFAULT
  * gxmessage DEFAULT GNU-DEFAULT
  * gyachi DEFAULT SF-DEFAULT
  * gyachi DEFAULT SF-DEFAULT
Line 1,113: Line 1,173:
</pre>
</pre>


=== H - M ===
=== H ===
<pre>
<pre>
  * haddock HACKAGE-DEFAULT HACKAGE-DEFAULT
  * haddock HACKAGE-DEFAULT HACKAGE-DEFAULT
  * hamlib DEFAULT SF-DEFAULT
  * hamlib DEFAULT SF-DEFAULT
  * hamcrest DEFAULT GOOGLE-DEFAULT
  * hamcrest DEFAULT GOOGLE-DEFAULT
* hardening-check DEFAULT:hardening-wrapper DEBIAN-DEFAULT:hardening-wrapper
  * hawtjni DEFAULT https://github.com/fusesource/hawtjni/tags
  * hawtjni DEFAULT https://github.com/fusesource/hawtjni/tags
  * hanazono-fonts DEFAULT:hanazono http://sourceforge.jp/projects/hanazono-font/releases/
  * hanazono-fonts DEFAULT:hanazono http://sourceforge.jp/projects/hanazono-font/releases/
  * haproxy DEFAULT http://haproxy.1wt.eu/download/1.4/src/
  * haproxy DEFAULT http://haproxy.1wt.eu/download/1.4/src/
  * haskell-platform DEFAULT http://hackage.haskell.org/platform/linux.html
* harfbuzz DEFAULT http://www.freedesktop.org/software/harfbuzz/release/
  * hct hct-(.*?).tar.gz http://sourceforge.net/projects/hct/files/  
  * haskell-platform DEFAULT http://www.haskell.org/platform/linux.html
* hawaii-widget-styles /v([\d+\.]+)\.tar\.gz https://github.com/hawaii-desktop/widget-styles/tags
  * hct hct-(.*?).tar.gz http://sourceforge.net/projects/hct/files
* hdf5 DEFAULT http://www.hdfgroup.org/ftp/HDF5/current/src/
  * hdparm DEFAULT SF-DEFAULT
  * hdparm DEFAULT SF-DEFAULT
  * hdapsd DEFAULT SF-DEFAULT
  * hdapsd DEFAULT SF-DEFAULT:hdaps
* heartbeat DEFAULT http://linux-ha.org/wiki/Downloads
  * hedgewars hedgewars-src-(.*?).tar.bz2 http://download.gna.org/hedgewars/
  * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
* hedgewars DEFAULT http://download.gna.org/hedgewars/
  * help2man DEFAULT GNU-DEFAULT
  * help2man DEFAULT GNU-DEFAULT
* herbstluftwm DEFAULT http://herbstluftwm.org/tarballs/
  * hercules DEFAULT http://www.hercules-390.eu/
  * hercules DEFAULT http://www.hercules-390.eu/
  * hercstudio herculesstudio-(.*?)-src\.tar\.gz http://www.jacobdekel.com/hercstudio/
  * hercstudio herculesstudio-(.*?)-src\.tar\.gz http://www.jacobdekel.com/hercstudio/
* hexchat DEFAULT http://dl.hexchat.net/hexchat/
* hg-git DEFAULT PYPI-DEFAULT
* hgview DEFAULT http://download.logilab.org/pub/hgview/
  * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
  * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
  * highlighting-kate HACKAGE-DEFAULT HACKAGE-DEFAULT
  * hiredis GITHUB-TAGS GITHUB-TAGS:redis/hiredis
* hiredis archive/v(.*?)\.zip https://github.com/redis/hiredis/tags
  * hledger HACKAGE-DEFAULT HACKAGE-DEFAULT
  * hledger HACKAGE-DEFAULT HACKAGE-DEFAULT
* hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
* hoard Hoard-(.*?)-source\.tar\.gz http://www.hoard.org/download-hoard/
* homebank DEFAULT http://homebank.free.fr/public/
  * hop DEFAULT ftp://ftp-sop.inria.fr/indes/fp/Hop
  * hop DEFAULT ftp://ftp-sop.inria.fr/indes/fp/Hop
  * horde DEFAULT ftp://ftp.horde.org/pub/horde/
  * horde DEFAULT ftp://ftp.horde.org/pub/horde/
Line 1,143: Line 1,211:
  * hsqldb hsqldb-([0-9.]*?).zip SF-DEFAULT
  * hsqldb hsqldb-([0-9.]*?).zip SF-DEFAULT
  * html-xml-utils DEFAULT http://www.w3.org/Tools/HTML-XML-utils/
  * html-xml-utils DEFAULT http://www.w3.org/Tools/HTML-XML-utils/
* htmlcleaner DEFAULT SF-DEFAULT
  * htop DEFAULT SF-DEFAULT
  * htop DEFAULT SF-DEFAULT
  * httpcomponents-core DEFAULT http://www.apache.org/dist/httpcomponents/httpcore/source/
  * httpcomponents-core DEFAULT http://www.apache.org/dist/httpcomponents/httpcore/source/
  * httpcomponents-client DEFAULT http://www.apache.org/dist/httpcomponents/httpclient/source/
  * httpcomponents-client DEFAULT http://www.apache.org/dist/httpcomponents/httpclient/source/
  * httpd httpd-(2\.4\..*?)\.tar\.bz2 http://archive.apache.org/dist/httpd/
  * httpd DEFAULT http://archive.apache.org/dist/httpd/
  * httperf DEFAULT GOOGLE-DEFAULT
  * httperf DEFAULT GOOGLE-DEFAULT
* httpie DEFAULT PYPI-DEFAULT
  * httptunnel DEFAULT GNU-DEFAULT
  * httptunnel DEFAULT GNU-DEFAULT
  * httrack httrack-(.*?).tar.gz http://www.httrack.com/page/2/en/index.html
  * httrack httrack-(.*?).tar.gz http://www.httrack.com/page/2/en/index.html
Line 1,157: Line 1,227:
  * hyena DEFAULT GNOME-DEFAULT
  * hyena DEFAULT GNOME-DEFAULT
  * hyperestraier DEFAULT http://fallabs.com/hyperestraier/
  * hyperestraier DEFAULT http://fallabs.com/hyperestraier/
  * iasl DEFAULT:acpica-unix https://www.acpica.org/downloads/unix_source_code.php
</pre>
 
=== I ===
<pre>
  * i3 DEFAULT http://i3wm.org/downloads/
* i3lock DEFAULT http://i3wm.org/i3lock/
* i3status DEFAULT http://i3wm.org/i3status/
  * ibus-handwrite DEFAULT GOOGLE-DEFAULT
  * ibus-handwrite DEFAULT GOOGLE-DEFAULT
  * ibus-hangul DEFAULT GOOGLE-DEFAULT:ibus
  * ibus-hangul DEFAULT GOOGLE-DEFAULT:ibus
Line 1,163: Line 1,239:
  * ibus-m17n DEFAULT GOOGLE-DEFAULT:ibus
  * ibus-m17n DEFAULT GOOGLE-DEFAULT:ibus
  * ibus-pinyin DEFAULT GOOGLE-DEFAULT:ibus
  * ibus-pinyin DEFAULT GOOGLE-DEFAULT:ibus
* ibus-rime DEFAULT GOOGLE-DEFAULT:rimeime
  * ibus-unikey DEFAULT GOOGLE-DEFAULT
  * ibus-unikey DEFAULT GOOGLE-DEFAULT
  * ibus-xkbc DEFAULT https://github.com/sun-im/ibus-xkbc/downloads
  * ibus-xkbc DEFAULT https://github.com/sun-im/ibus-xkbc/downloads
  * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
  * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
* icewm DEFAULT SF-DEFAULT
  * icon-naming-utils DEFAULT http://tango.freedesktop.org/releases/
  * icon-naming-utils DEFAULT http://tango.freedesktop.org/releases/
* icoutils DEFAULT http://download.savannah.gnu.org/releases/icoutils/
  * id3v2 DEFAULT SF-DEFAULT
  * id3v2 DEFAULT SF-DEFAULT
* idjc DEFAULT SF-DEFAULT
* idris HACKAGE-DEFAULT HACKAGE-DEFAULT
* idzebra DEFAULT http://ftp.indexdata.dk/pub/zebra/
  * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
  * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
  * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
  * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
* ignuit DEFAULT http://homepages.ihug.co.nz/~trmusson/stuff/
  * ikarus DEFAULT http://ikarus-scheme.org/
  * ikarus DEFAULT http://ikarus-scheme.org/
* ike \bike-(.*?)-release\.t https://www.shrew.net/download/ike
  * ikiwiki DEFAULT DEBIAN-DEFAULT
  * ikiwiki DEFAULT DEBIAN-DEFAULT
  * ImageMagick ImageMagick-([0-9]\.[0-9]\.[0-9]-.*?[0-9]).tar.bz2 ftp://ftp.imagemagick.org/pub/ImageMagick/
  * ImageMagick ImageMagick-([0-9]\.[0-9]\.[0-9]-.*?[0-9]).tar.bz2 ftp://ftp.imagemagick.org/pub/ImageMagick/
Line 1,178: Line 1,262:
  * imvirt DEFAULT SF-DEFAULT
  * imvirt DEFAULT SF-DEFAULT
  * indent DEFAULT GNU-DEFAULT
  * indent DEFAULT GNU-DEFAULT
* infiniband-diags DEFAULT http://www.openfabrics.org/downloads/management/
  * iniparser iniparser-([0-9.]*)\.tar\.gz http://ndevilla.free.fr/iniparser/
  * iniparser iniparser-([0-9.]*)\.tar\.gz http://ndevilla.free.fr/iniparser/
  * inkscape Latest.stable.version:.(.*)< http://www.inkscape.org/
  * inkscape DEFAULT http://www.inkscape.org/en/download/source/
  * innotop DEFAULT GOOGLE-DEFAULT
  * innotop DEFAULT GOOGLE-DEFAULT
* InsightToolkit DEFAULT http://sourceforge.net/api/file/index/project-name/itk/mtime/desc/limit/20/rss
  * intltool DEFAULT LP-DEFAULT
  * intltool DEFAULT LP-DEFAULT
  * iotop DEFAULT http://guichaz.free.fr/iotop/
  * iotop DEFAULT http://guichaz.free.fr/iotop/
  * iperf DEFAULT SF-DEFAULT
  * iperf DEFAULT SF-DEFAULT
* iperf3 DEFAULT:iperf http://stats.es.net/software/
  * ipmitool DEFAULT SF-DEFAULT
  * ipmitool DEFAULT SF-DEFAULT
  * ipmiutil DEFAULT SF-DEFAULT
  * ipmiutil DEFAULT SF-DEFAULT
Line 1,190: Line 1,277:
  * iptables DEFAULT http://ftp.netfilter.org/pub/iptables/
  * iptables DEFAULT http://ftp.netfilter.org/pub/iptables/
  * iputils iputils-s(.*?)\.tar\.bz2 SF-DEFAULT
  * iputils iputils-s(.*?)\.tar\.bz2 SF-DEFAULT
  * ipvsadm DEFAULT http://www.linuxvirtualserver.org/software/kernel-2.6/
* ipv6calc DEFAULT ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc
  * ipvsadm DEFAULT http://www.kernel.org/pub/linux/utils/kernel/ipvsadm/
  * ipython DEFAULT https://github.com/ipython/ipython/downloads
  * ipython DEFAULT https://github.com/ipython/ipython/downloads
  * irqbalance DEFAULT GOOGLE-DEFAULT
  * ircd-ratbox DEFAULT http://www.ratbox.org/download/
  * irssi irssi-([0-9.]+).tar.gz http://irssi.org/download
* ircp-tray DEFAULT LP-DEFAULT
  * irqbalance ve/v(.*).tar.gz http://github.com/Irqbalance/irqbalance/releases
* irrlicht DEFAULT SF-DEFAULT
* irssi DEFAULT http://irssi.org/files
  * isic DEFAULT SF-DEFAULT
  * isic DEFAULT SF-DEFAULT
  * iso-codes DEFAULT http://pkg-isocodes.alioth.debian.org/downloads/
  * iso-codes DEFAULT http://pkg-isocodes.alioth.debian.org/downloads/
Line 1,200: Line 1,291:
  * iverilog v(\d_\d_\d)\.tar.gz https://github.com/steveicarus/iverilog/tags
  * iverilog v(\d_\d_\d)\.tar.gz https://github.com/steveicarus/iverilog/tags
  * iw DEFAULT http://kernel.org/pub/software/network/iw/
  * iw DEFAULT http://kernel.org/pub/software/network/iw/
  * jacoco jacoco-[0-9.]*.zip SF-DEFAULT:eclemma
</pre>
 
=== J ===
<pre>
  * jacoco DEFAULT http://www.eclemma.org/jacoco/
* jakarta-oro DEFAULT http://archive.apache.org/dist/jakarta/oro/source/
* jakarta-taglibs-standard DEFAULT http://archive.apache.org/dist/jakarta/taglibs/standard/source/
* jansi jansi-([0-9.]*?).jar http://jansi.fusesource.org/download.html
* jansson DEFAULT http://www.digip.org/jansson/releases/
* jarjar DEFAULT:jarjar-src GOOGLE-DEFAULT
* jasmine NPM-DEFAULT NPM-DEFAULT
* jasmine-node NPM-DEFAULT NPM-DEFAULT
  * jasper DEFAULT http://www.ece.uvic.ca/~frodo/jasper/
  * jasper DEFAULT http://www.ece.uvic.ca/~frodo/jasper/
  * javacc javacc-([0-9.]*?).tar.gz http://java.net/projects/javacc/downloads/download/
  * javacc javacc-([0-9.]*?).tar.gz http://java.net/projects/javacc/downloads/download/
Line 1,207: Line 1,309:
  * java-gnome DEFAULT GNOME-DEFAULT
  * java-gnome DEFAULT GNOME-DEFAULT
  * java-service-wrapper yaja-wrapper-(.*?)-dist https://bitbucket.org/ivertex/yaja-wrapper/downloads
  * java-service-wrapper yaja-wrapper-(.*?)-dist https://bitbucket.org/ivertex/yaja-wrapper/downloads
* javaewah DEFAULT https://github.com/lemire/javaewah/releases
* javamail JavaMail.API.([^<]+).Release http://www.oracle.com/technetwork/java/javamail/index.html
  * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
  * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
* jaxen jaxen-(\d+\.\d+[\.\d+]*)-src.tar.gz http://dist.codehaus.org/jaxen/distributions/
  * jbig2dec DEFAULT SF-DEFAULT
  * jbig2dec DEFAULT SF-DEFAULT
* jbigkit DEFAULT http://www.cl.cam.ac.uk/~mgk25/jbigkit/
* jblas jblas-(.*?)\.tar\.gz https://github.com/mikiobraun/jblas/releases
* jcifs DEFAULT http://jcifs.samba.org/src/
* jdependency DEFAULT https://github.com/tcurdt/jdependency/tags
* jdns DEFAULT http://delta.affinix.com/jdns/
* jdom jdom-([0-9.]*?)\.tar.gz https://github.com/hunterhacker/jdom/tags
  * jdepend ([0-9.]*?)\.zip https://github.com/clarkware/jdepend/tags
  * jdepend ([0-9.]*?)\.zip https://github.com/clarkware/jdepend/tags
* jdf-stacks-client (\d\.\d\.\d).*.tar.gz https://github.com/jboss-jdf/jdf-stacks-client/releases
  * jed jed-(.*?)\.tar\.gz ftp://space.mit.edu/pub/davis/jed/*/
  * jed jed-(.*?)\.tar\.gz ftp://space.mit.edu/pub/davis/jed/*/
  * jemalloc DEFAULT http://www.canonware.com/download/jemalloc/
  * jemalloc DEFAULT http://www.canonware.com/download/jemalloc/
  * jetty (8\.\d+\.\d+\.v\d+) http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-project/
* jenkins-crypto-util crypto-util-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-crypto-util/tags
* jenkins-extras-memory-monitor memory-monitor-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/extras-memory-monitor/tags
* jenkins-remoting remoting-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/remoting/tags
* jenkins-task-reactor task-reactor-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-task-reactor/tags
* jenkins-version-number version-number-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-version-number/tags
  * jetty (9\.\d+\.\d+\.v\d+) http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-project/
* jettison jettison-([0-9.]*?)-sources.jar http://jettison.codehaus.org/Download
  * jflex jflex-([0-9.]*?)\.zip http://jflex.de/download.html
  * jflex jflex-([0-9.]*?)\.zip http://jflex.de/download.html
* jfsutils DEFAULT http://jfs.sf.net/source.html
  * jgoodies-animation jgoodies-animation-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
  * jgoodies-animation jgoodies-animation-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
  * jgoodies-common jgoodies-common-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
  * jgoodies-common jgoodies-common-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
Line 1,220: Line 1,339:
  * jgraphx jgraphx-(.*?).zip http://downloads.jgraph.com/downloads/jgraphx/archive/
  * jgraphx jgraphx-(.*?).zip http://downloads.jgraph.com/downloads/jgraphx/archive/
  * jhdf5 DEFAULT:hdf-java http://www.hdfgroup.org/ftp/HDF5/hdf-java/src/
  * jhdf5 DEFAULT:hdf-java http://www.hdfgroup.org/ftp/HDF5/hdf-java/src/
  * jpathwatch jpathwatch-([0-9\-]*?).zip SF-DEFAULT
  * jhighlight >release-(.*)/< http://svn.rifers.org/jhighlight/tags/
  * jibx jibx-([0-9].[0-9].[0-9]) http://sourceforge.net/projects/jibx/files/jibx/
  * jibx jibx-([0-9].[0-9].[0-9]) http://sourceforge.net/projects/jibx/files/jibx/
* jimtcl e/(.*?)\.tar\.gz http://github.com/msteveb/jimtcl/releases
  * jing-trang DEFAULT:jing GOOGLE-DEFAULT
  * jing-trang DEFAULT:jing GOOGLE-DEFAULT
  * jlatexmath jlatexmath-src-all-(.*).zip http://forge.scilab.org/index.php/p/jlatexmath/downloads/
  * jlatexmath jlatexmath-src-all-(.*).zip http://forge.scilab.org/index.php/p/jlatexmath/downloads/
  * jline DEFAULT SF-DEFAULT
  * jline DEFAULT SF-DEFAULT
  * jmol jmol-(.*?)-full\.t SF-DEFAULT
  * jmol Jmol-([^-]+?\.[02468]+\.[^-]+?)-full.tar.gz SF-DEFAULT
* jna ([0-9.]*?).tar.gz https://github.com/twall/jna/tags
* joda-convert v([0-9.]*?).tar.gz https://github.com/JodaOrg/joda-convert/tags
  * joda-time DEFAULT SF-DEFAULT
  * joda-time DEFAULT SF-DEFAULT
  * joe DEFAULT SF-DEFAULT:joe-editor
  * joe DEFAULT SF-DEFAULT:joe-editor
  * john DEFAULT http://www.openwall.com/john/
  * john DEFAULT http://www.openwall.com/john/
  * joni ([0-9]+\.[0-9\.]+)/ http://svn.codehaus.org/jruby/joni/tags/
  * joni ([0-9]+\.[0-9\.]+)/ http://svn.codehaus.org/jruby/joni/tags/
* jpathwatch jpathwatch-([0-9\-]*?).zip SF-DEFAULT
* jpegoptim DEFAULT http://www.kokkonen.net/tjko/src/
* jpilot DEFAULT http://www.jpilot.org/download.html
* jsch DEFAULT http://www.jcraft.com/jsch/
* jsl jsl-([\d+\.]+)-src\.tar\.gz http://javascriptlint.com/download.htm
  * json-c DEFAULT https://github.com/json-c/json-c/downloads
  * json-c DEFAULT https://github.com/json-c/json-c/downloads
* json-parser archive/v(.*?)\.tar.gz https://github.com/udp/json-parser/releases
  * jsoup jsoup-([0-9.]*)\.jar http://jsoup.org/download
  * jsoup jsoup-([0-9.]*)\.jar http://jsoup.org/download
* junit4 r([0-9.]+).zip https://github.com/KentBeck/junit/tags
  * junit r([0-9.]+).tar.gz https://github.com/junit-team/junit/tags
  * junit r([0-9.]+).tar.gz https://github.com/junit-team/junit/tags
  * jvyamlb DEFAULT GOOGLE-DEFAULT
  * jvyamlb DEFAULT GOOGLE-DEFAULT
  * jwhois DEFAULT GNU-DEFAULT
  * jwhois DEFAULT GNU-DEFAULT
* jwm DEFAULT http://joewing.net/projects/jwm/releases/
  * jython jython(?:_installer)-([0-9.]+)\.jar SF-DEFAULT
  * jython jython(?:_installer)-([0-9.]+)\.jar SF-DEFAULT
* jakarta-oro DEFAULT http://archive.apache.org/dist/jakarta/oro/source/
* jakarta-taglibs-standard DEFAULT http://archive.apache.org/dist/jakarta/taglibs/standard/source/
* jarjar DEFAULT:jarjar-src GOOGLE-DEFAULT
* jcifs DEFAULT http://jcifs.samba.org/src/
* jdependency DEFAULT https://github.com/tcurdt/jdependency/tags
* jdom jdom-([0-9.]*?)\.tar.gz https://github.com/hunterhacker/jdom/tags
* jettison jettison-([0-9.]*?)-sources.jar http://jettison.codehaus.org/Download
* jna ([0-9.]*?).tar.gz https://github.com/twall/jna/tags
* joda-convert v([0-9.]*?).tar.gz https://github.com/JodaOrg/joda-convert/tags
* jsch DEFAULT http://www.jcraft.com/jsch/
  * jzlib DEFAULT http://www.jcraft.com/jzlib/
  * jzlib DEFAULT http://www.jcraft.com/jzlib/
* jansi jansi-([0-9.]*?).jar http://jansi.fusesource.org/download.html
</pre>
 
=== K ===
<pre>
  * k3b DEFAULT SF-DEFAULT
  * k3b DEFAULT SF-DEFAULT
  * kaffeine DEFAULT SF-DEFAULT
  * kakasi DEFAULT http://kakasi.namazu.org/stable/
  * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
  * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
  * kasumi DEFAULT http://sourceforge.jp/projects/kasumi/releases/
  * kasumi DEFAULT http://sourceforge.jp/projects/kasumi/releases/
  * kawa DEFAULT GNU-DEFAULT
  * kawa DEFAULT GNU-DEFAULT
  * kbd DEFAULT http://ftp.altlinux.org/pub/people/legion/kbd/
  * kbd DEFAULT http://ftp.altlinux.org/pub/people/legion/kbd/
* kBuild DEFAULT ftp://ftp.netlabs.org/pub/kbuild
  * kbibtex DEFAULT http://home.gna.org/kbibtex/download.html
  * kbibtex DEFAULT http://home.gna.org/kbibtex/download.html
  * kchmviewer DEFAULT SF-DEFAULT
  * kchmviewer DEFAULT SF-DEFAULT
Line 1,273: Line 1,395:
  * kmetronome DEFAULT SF-DEFAULT
  * kmetronome DEFAULT SF-DEFAULT
  * kmid2 DEFAULT:kmid SF-DEFAULT
  * kmid2 DEFAULT:kmid SF-DEFAULT
* kmymoney DEFAULT SF-DEFAULT:kmymoney2
* kohsuke-pom pom-(\d+).tar.gz https://github.com/kohsuke/pom/tags
  * kmod DEFAULT http://kernel.org/pub/linux/utils/kernel/kmod/
  * kmod DEFAULT http://kernel.org/pub/linux/utils/kernel/kmod/
  * komparator DEFAULT SF-DEFAULT
  * komparator DEFAULT SF-DEFAULT
  * koules koules(.*?)-src.tar.gz http://www.ucw.cz/~hubicka/koules/English/distribution.html
  * 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/
  * krename the last stable release is: <.*?> (.*?) </a> http://www.krename.net/
* ksh ast-ksh\.([0-9]*\-[0-9]*-[0-9]*)\.tgz http://www2.research.att.com/~astopen/cgi-bin/download.cgi?action=list&name=ast-ksh
* kshutdown kshutdown-source-(.*?).zip SF-DEFAULT
  * ksshaskpass (?i)\(\s*ksshaskpass\s+([^)]+)\s*\) http://www.kde-apps.org/content/show.php?content=50971
  * ksshaskpass (?i)\(\s*ksshaskpass\s+([^)]+)\s*\) http://www.kde-apps.org/content/show.php?content=50971
  * ktechlab DEFAULT SF-DEFAULT
  * ktechlab DEFAULT SF-DEFAULT
  * ktikz ktikz[_-](.*?)\.tar\.gz http://www.hackenberger.at/ktikz/
  * ktikz ktikz[_-](.*?)\.tar\.gz http://www.hackenberger.at/ktikz/
* ktorrent DEFAULT http://ktorrent.pwsp.net/?q=downloads
  * kwooty DEFAULT SF-DEFAULT
  * kwooty DEFAULT SF-DEFAULT
  * kyotocabinet DEFAULT http://fallabs.com/kyotocabinet/pkg/
  * kyotocabinet DEFAULT http://fallabs.com/kyotocabinet/pkg/
  * kxml DEFAULT:kxml2 SF-DEFAULT
  * kxml DEFAULT:kxml2 SF-DEFAULT
  * LabPlot DEFAULT SF-DEFAULT
</pre>
 
=== L ===
<pre>
  * LabPlot DEFAULT:labplot SF-DEFAULT:labplot
  * ladvd DEFAULT GOOGLE-DEFAULT
  * ladvd DEFAULT GOOGLE-DEFAULT
  * latencytop DEFAULT https://latencytop.org/download.html
  * lapack DEFAULT http://www.netlib.org/lapack/
  * latex2rtf DEFAULT SF-DEFAULT
  * latex2rtf DEFAULT SF-DEFAULT
  * latex-mk DEFAULT SF-DEFAULT
  * latex-mk DEFAULT SF-DEFAULT
* lazarus /Lazarus ([0-9.-]*)/ http://sourceforge.net/projects/lazarus/files/Lazarus%20Zip%20_%20GZip/
  * lbrickbuster2 DEFAULT:lbreakout2 http://sourceforge.net/api/file/index/project-name/lgames/mtime/desc/limit/50/rss
  * lbrickbuster2 DEFAULT:lbreakout2 http://sourceforge.net/api/file/index/project-name/lgames/mtime/desc/limit/50/rss
  * lbzip2 DEFAULT https://github.com/kjn/lbzip2/downloads
  * lbzip2 DEFAULT http://lbzip2.org/download
  * lcms2 DEFAULT SF-DEFAULT:lcms
  * lcms2 DEFAULT SF-DEFAULT:lcms
  * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
  * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
  * leafpad DEFAULT http://savannah.nongnu.org/download/leafpad/
  * leafpad DEFAULT http://download.savannah.gnu.org/releases/leafpad/
  * ledger archive/v(.*?)\.zip https://github.com/jwiegley/ledger/tags
  * ledger GITHUB-TAGS GITHUB-TAGS:ledger/ledger
  * leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
  * leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
  * leksah-server HACKAGE-DEFAULT HACKAGE-DEFAULT
  * leksah-server HACKAGE-DEFAULT HACKAGE-DEFAULT
* lensfun DEFAULT http://developer.berlios.de/project/showfiles.php?group_id=9034
  * less DEFAULT http://www.greenwoodsoftware.com/less/download.html
  * less DEFAULT http://www.greenwoodsoftware.com/less/download.html
  * lftp DEFAULT http://lftp.yar.ru/get.html
* libpam4j DEFAULT https://github.com/kohsuke/libpam4j/tags
* localizer localizer-parent-([\d\.]+).tar.gz https://github.com/kohsuke/localizer/tags
  * lftp lftp-([0-9.]*?).tar.xz http://lftp.yar.ru/get.html
* libabw libabw-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libaio DEFAULT http://git.fedorahosted.org/cgit/libaio.git/
  * libaio DEFAULT http://git.fedorahosted.org/cgit/libaio.git/
* libarchive DEFAULT http://www.libarchive.org/downloads/
* libassuan DEFAULT ftp://ftp.gnupg.org/gcrypt/libassuan/
  * libass DEFAULT GOOGLE-DEFAULT
  * libass DEFAULT GOOGLE-DEFAULT
  * libavc1394 DEFAULT SF-DEFAULT
  * libavc1394 DEFAULT SF-DEFAULT
* libgsasl DEFAULT GNU-DEFAULT:gsasl
* libgta DEFAULT http://download.savannah.gnu.org/releases/gta/
  * libbluray DEFAULT http://www.videolan.org/developers/libbluray.html
  * libbluray DEFAULT http://www.videolan.org/developers/libbluray.html
  * libbs2b DEFAULT SF-DEFAULT:bs2b
  * libbs2b DEFAULT SF-DEFAULT:bs2b
  * libbsd DEFAULT http://libbsd.freedesktop.org/releases/
  * libbsd DEFAULT http://libbsd.freedesktop.org/releases/
  * libburn DEFAULT http://libburnia-project.org/wiki/Releases
  * libburn DEFAULT http://libburnia-project.org/wiki/Releases
* libcap DEFAULT http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/
  * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
  * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
  * libcddb DEFAULT SF-DEFAULT
  * libcddb DEFAULT SF-DEFAULT
  * libcdio DEFAULT GNU-DEFAULT
  * libcdio DEFAULT GNU-DEFAULT
* libcdio-paranoia DEFAULT GNU-DEFAULT:libcdio
  * libcdr libcdr-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libcdr libcdr-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libcgroup DEFAULT SF-DEFAULT:libcg
  * libcgroup DEFAULT SF-DEFAULT:libcg
  * libchamplain DEFAULT GNOME-DEFAULT
  * libchamplain DEFAULT GNOME-DEFAULT
* libchewing GITHUB-TAGS GITHUB-TAGS:chewing/libchewing
* libclaw DEFAULT SF-DEFAULT
  * libcmis DEFAULT SF-DEFAULT
  * libcmis DEFAULT SF-DEFAULT
  * libconfig DEFAULT http://www.hyperrealm.com/libconfig/
  * libconfig DEFAULT http://www.hyperrealm.com/libconfig/
* libconfuse DEFAULT:confuse http://download.savannah.gnu.org/releases/confuse/
* libcss libcss-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libcss/
  * libcue DEFAULT SF-DEFAULT
  * libcue DEFAULT SF-DEFAULT
  * libdb DB (5[0-9.]*).tar.gz http://www.oracle.com/technetwork/products/berkeleydb/downloads/index.html
* libcutl DEFAULT:libcutl http://codesynthesis.com/download/libcutl/*/
  * libdb DEFAULT:db http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html
* libdb4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index-082944.html
* libdbi DEFAULT SF-DEFAULT
* libdbi-drivers DEFAULT SF-DEFAULT
  * libdc1394 DEFAULT SF-DEFAULT
  * libdc1394 DEFAULT SF-DEFAULT
* libdiscid DEFAULT http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/
* libdivecomputer DEFAULT http://www.libdivecomputer.org/releases/
  * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
  * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
  * libdwarf libdwarf-([0-9]+)\.tar\.gz http://reality.sgiweb.org/davea/dwarf.html
  * libdwarf libdwarf-([0-9]+)\.tar\.gz http://www.prevanders.net/dwarf.html
* libe-book DEFAULT SF-DEFAULT:libebook
  * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
  * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
  * libEMF DEFAULT SF-DEFAULT:libemf
  * libEMF DEFAULT SF-DEFAULT:libemf
* libetonyek libetonyek-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libetpan DEFAULT SF-DEFAULT
  * libetpan DEFAULT SF-DEFAULT
* libev DEFAULT http://dist.schmorp.de/libev/
  * libevent libevent-([^-]*?)(?:-stable)?.tar SF-DEFAULT:levent
  * libevent libevent-([^-]*?)(?:-stable)?.tar SF-DEFAULT:levent
* libexif DEFAULT SF-DEFAULT
  * libextractor DEFAULT GNU-DEFAULT
  * libextractor DEFAULT GNU-DEFAULT
  * libexttextcat libexttextcat-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libexttextcat
  * libexttextcat libexttextcat-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libexttextcat
  * libfap DEFAULT http://pakettiradio.net/downloads/libfap/*/
  * libfap DEFAULT http://pakettiradio.net/downloads/libfap/*/
  * libffi DEFAULT ftp://sourceware.org/pub/libffi/
  * libffi DEFAULT ftp://sourceware.org/pub/libffi/
* libflatarray DEFAULT http://www.libgeodecomp.org/archive/
  * libfontenc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libfontenc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/fplll/index.html
  * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/fplll/index.html
* libfprint DEFAULT http://people.freedesktop.org/~hadess/
* libfreehand libfreehand-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libFS DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libFS DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libgadu w wersji ([0-9\.]*) http://toxygen.net/libgadu/
  * libgadu DEFAULT http://libgadu.net/
* libgaiagraphics DEFAULT http://www.gaia-gis.it/gaia-sins/gaiagraphics-sources/
  * libgcal DEFAULT GOOGLE-DEFAULT
  * libgcal DEFAULT GOOGLE-DEFAULT
  * libgcroots DEFAULT GOOGLE-DEFAULT:sigscheme
  * libgcroots DEFAULT GOOGLE-DEFAULT:sigscheme
Line 1,336: Line 1,496:
  * libgdl DEFAULT:gdl GNOME-DEFAULT:gdl
  * libgdl DEFAULT:gdl GNOME-DEFAULT:gdl
  * libgee DEFAULT GNOME-DEFAULT
  * libgee DEFAULT GNOME-DEFAULT
  * libgexiv2 DEFAULT http://redmine.yorba.org/projects/gexiv2/wiki
  * libgexiv2 DEFAULT http://yorba.org/download/gexiv2/*/
* libgpg-error DEFAULT ftp://ftp.gnupg.org/gcrypt/libgpg-error/
  * libgxps DEFAULT GNOME-DEFAULT
  * libgxps DEFAULT GNOME-DEFAULT
  * libhangul DEFAULT GOOGLE-DEFAULT
  * libhangul DEFAULT GOOGLE-DEFAULT
  * libharu DEFAULT http://libharu.org/
  * libharu Latest stable release: <a href="https://github.com/libharu/libharu/archive/[^"]*">([^<]*)</a> http://libharu.org/
* libhubbub libhubbub-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/hubbub/
  * libHX DEFAULT SF-DEFAULT:libhx
  * libHX DEFAULT SF-DEFAULT:libhx
* libibmad DEFAULT http://www.openfabrics.org/downloads/management/
* libibumad DEFAULT http://www.openfabrics.org/downloads/management/
  * libical DEFAULT SF-DEFAULT:freeassociation
  * libical DEFAULT SF-DEFAULT:freeassociation
  * libICE DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libICE DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
Line 1,351: Line 1,515:
  * libisofs DEFAULT http://libburnia-project.org/wiki/Releases
  * libisofs DEFAULT http://libburnia-project.org/wiki/Releases
  * libjpeg-turbo DEFAULT SF-DEFAULT
  * libjpeg-turbo DEFAULT SF-DEFAULT
  * liblangtag DEFAULT https://github.com/tagoh/liblangtag/downloads
* libksba DEFAULT ftp://ftp.gnupg.org/gcrypt/libksba/
  * liblangtag DEFAULT https://bitbucket.org/tagoh/liblangtag/downloads
* libldb DEFAULT:ldb http://www.samba.org/ftp/pub/ldb/
  * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
  * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
* libltc ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/x42/libltc/releases
  * libmatheval DEFAULT GNU-DEFAULT
  * libmatheval DEFAULT GNU-DEFAULT
  * libmatroska libmatroska-([.0-9]*?).tar.bz2 http://dl.matroska.org/downloads/libmatroska/
  * libmatroska libmatroska-([.0-9]*?).tar.bz2 http://dl.matroska.org/downloads/libmatroska/
  * libmicrohttpd DEFAULT GNU-DEFAULT
  * libmicrohttpd DEFAULT GNU-DEFAULT
* libmimedir DEFAULT SF-DEFAULT
* libmirage DEFAULT http://sourceforge.net/projects/cdemu/files/libmirage/
  * libmng DEFAULT SF-DEFAULT
  * libmng DEFAULT SF-DEFAULT
  * libmnl DEFAULT http://ftp.netfilter.org/pub/libmnl/
  * libmnl DEFAULT http://ftp.netfilter.org/pub/libmnl/
Line 1,363: Line 1,532:
  * libmspub libmspub-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libmspub libmspub-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
  * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
* libmwaw DEFAULT SF-DEFAULT
  * libnet DEFAULT SF-DEFAULT:libnet-dev
  * libnet DEFAULT SF-DEFAULT:libnet-dev
  * libnetfilter_acct DEFAULT http://ftp.netfilter.org/pub/libnetfilter_acct/
  * libnetfilter_acct DEFAULT http://ftp.netfilter.org/pub/libnetfilter_acct/
  * libnetfilter_conntrack DEFAULT http://ftp.netfilter.org/pub/libnetfilter_conntrack/
  * libnetfilter_conntrack DEFAULT http://ftp.netfilter.org/pub/libnetfilter_conntrack/
  * libnetfilter_cttimeout DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cttimeout/
  * libnetfilter_cttimeout DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cttimeout/
* libnetfilter_cthelper DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cthelper/
  * libnetfilter_log DEFAULT http://ftp.netfilter.org/pub/libnetfilter_log/
  * libnetfilter_log DEFAULT http://ftp.netfilter.org/pub/libnetfilter_log/
  * libnetfilter_queue DEFAULT http://ftp.netfilter.org/pub/libnetfilter_queue/
  * libnetfilter_queue DEFAULT http://ftp.netfilter.org/pub/libnetfilter_queue/
  * libnfc libnfc-(.*?)\.tar\.gz GOOGLE-DEFAULT
  * libnfc DEFAULT http://bintray.com/nfc-tools/sources/libnfc
* libnftnl DEFAULT http://ftp.netfilter.org/pub/libnftnl/
  * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
  * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
* libnice DEFAULT http://nice.freedesktop.org/releases/
  * libnl3 DEFAULT:libnl http://www.infradead.org/~tgr/libnl/files/
  * libnl3 DEFAULT:libnl http://www.infradead.org/~tgr/libnl/files/
* libntlm DEFAULT http://nongnu.org/libntlm/releases/
  * liboauth DEFAULT SF-DEFAULT
  * liboauth DEFAULT SF-DEFAULT
* libodb DEFAULT:libodb http://codesynthesis.com/download/odb/*/
* libodb-boost DEFAULT:libodb-boost http://codesynthesis.com/download/odb/*/
* libodb-mysql DEFAULT:libodb-mysql http://codesynthesis.com/download/odb/*/
* libodb-pgsql DEFAULT:libodb-pgsql http://codesynthesis.com/download/odb/*/
* libodb-qt DEFAULT:libodb-qt http://codesynthesis.com/download/odb/*/
* libodb-sqlite DEFAULT:libodb-sqlite http://codesynthesis.com/download/odb/*/
* libodfgen libodfgen-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
* liboping DEFAULT http://verplant.org/liboping/files
  * liborcus liborcus_(\d+\.\d+\.\d+)\.tar\.bz2 http://gitorious.org/orcus/pages/Download
  * liborcus liborcus_(\d+\.\d+\.\d+)\.tar\.bz2 http://gitorious.org/orcus/pages/Download
  * liborigin DEFAULT SF-DEFAULT
  * liborigin DEFAULT SF-DEFAULT
* libotf DEFAULT http://download.savannah.gnu.org/releases/m17n/
  * libp11 DEFAULT https://github.com/OpenSC/libp11/tags
  * libp11 DEFAULT https://github.com/OpenSC/libp11/tags
  * libpcap DEFAULT http://www.tcpdump.org
* libparserutils libparserutils-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libparserutils/
  * libpcap DEFAULT http://www.tcpdump.org/release/
  * libpciaccess DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libpciaccess DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libpinyin DEFAULT:libpinyin/libpinyin SF-DEFAULT
  * libpinyin DEFAULT:libpinyin/libpinyin SF-DEFAULT
  * libpipeline DEFAULT http://download.savannah.gnu.org/releases/libpipeline/
  * libpipeline DEFAULT http://download.savannah.gnu.org/releases/libpipeline/
  * libpng DEFAULT ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng16/
  * libpng DEFAULT http://www.libpng.org/pub/png/libpng.html
  * libpng10 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng10/
  * libpng10 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng10/
* libpng15 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng15/
* librasterlite DEFAULT http://www.gaia-gis.it/gaia-sins/librasterlite-sources/
* LibRaw DEFAULT http://www.libraw.org/download
  * libraw1394 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
  * libraw1394 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
  * libreadline-java DEFAULT SF-DEFAULT:java-readline
  * libreadline-java DEFAULT SF-DEFAULT:java-readline
* librecad DEFAULT https://github.com/LibreCAD/LibreCAD/releases
* libreoffice-gallery-vrt-network-equipment VRTnetworkequipment_(\d+\.\d+\.\d+)\.oxt http://www.vrt.com.au/downloads/vrt-network-equipment
* libreswan DEFAULT http://download.libreswan.org/
* librime DEFAULT GOOGLE-DEFAULT:rimeime
  * libsamplerate DEFAULT http://www.mega-nerd.com/SRC/download.html
  * libsamplerate DEFAULT http://www.mega-nerd.com/SRC/download.html
* libselinux DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
* libsemanage DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
* libsepol DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
* libserf DEFAULT:serf http://serf.googlecode.com/svn/src_releases/
* libsidplayfp DEFAULT:libsidplayfp SF-DEFAULT:sidplay-residfp
  * libsigsegv DEFAULT GNU-DEFAULT
  * libsigsegv DEFAULT GNU-DEFAULT
* libspatialite DEFAULT http://www.gaia-gis.it/gaia-sins/libspatialite-sources/
* libspectre DEFAULT http://libspectre.freedesktop.org/releases/
* libspiro v(.*?)\.tar.gz https://github.com/fontforge/libspiro/
  * libSM DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libSM DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libsocialweb DEFAULT GNOME-DEFAULT
  * libsmbios DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/libsmbios.git/
  * libssh DEFAULT https://red.libssh.org/projects/libssh/files
  * libssh DEFAULT https://red.libssh.org/projects/libssh/files
* libssh2 DEFAULT http://www.libssh2.org/download/
* libtaginfo DEFAULT https://bitbucket.org/shuerhaaken/libtaginfo/downloads
  * libtalloc talloc-(.*?)\.tar\.gz http://samba.org/ftp/talloc/
  * libtalloc talloc-(.*?)\.tar\.gz http://samba.org/ftp/talloc/
  * libtasn1 DEFAULT GNU-DEFAULT
  * libtasn1 DEFAULT GNU-DEFAULT
* libtdb DEFAULT:tdb http://www.samba.org/ftp/tdb/
* libtevent DEFAULT:tevent http://www.samba.org/ftp/tevent/
* libthai DEFAULT http://linux.thai.net/pub/thailinux/software/libthai/
  * libtiff DEFAULT:tiff http://download.osgeo.org/libtiff/
  * libtiff DEFAULT:tiff http://download.osgeo.org/libtiff/
  * libtirpc DEFAULT SF-DEFAULT
  * libtirpc DEFAULT SF-DEFAULT
  * libtool DEFAULT GNU-DEFAULT
  * libtool DEFAULT GNU-DEFAULT
  * libtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
  * libtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
* libtsm DEFAULT http://freedesktop.org/software/kmscon/releases/
  * libumberlog DEFAULT https://github.com/deirf/libumberlog/tags
  * libumberlog DEFAULT https://github.com/deirf/libumberlog/tags
  * libunicap DEFAULT http://unicap-imaging.org/download.htm
  * libunicap DEFAULT http://unicap-imaging.org/download.htm
* libuninameslist (0\.*?)\.tar.* https://github.com/fontforge/libuninameslist/releases
  * libunistring DEFAULT GNU-DEFAULT
  * libunistring DEFAULT GNU-DEFAULT
  * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
  * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
Line 1,407: Line 1,613:
  * libvisio libvisio-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libvisio libvisio-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
  * libvorbis DEFAULT http://downloads.xiph.org/releases/vorbis/
  * libvorbis DEFAULT http://downloads.xiph.org/releases/vorbis/
* libwapcaplet libwapcaplet-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libwapcaplet/
  * libwbxml DEFAULT SF-DEFAULT
  * libwbxml DEFAULT SF-DEFAULT
* libwebp DEFAULT GOOGLE-DEFAULT
  * libwfut DEFAULT SF-DEFAULT:worldforge
  * libwfut DEFAULT SF-DEFAULT:worldforge
* libwpd DEFAULT SF-DEFAULT
  * libwpg DEFAULT SF-DEFAULT
  * libwpg DEFAULT SF-DEFAULT
  * libwps DEFAULT SF-DEFAULT
  * libwps DEFAULT SF-DEFAULT
Line 1,415: Line 1,624:
  * libXaw DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXaw DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libxcb DEFAULT http://xcb.freedesktop.org/dist/
  * libxcb DEFAULT http://xcb.freedesktop.org/dist/
* libXcm DEFAULT SF-DEFAULT:oyranos
  * libXcomposite DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXcomposite DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXcursor DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXcursor DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXdamage DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXdamage DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
* libxdg-basedir libxdg-basedir-([0-9\.]+)\.tar\.gz http://n.ethz.ch/~nevillm/download/libxdg-basedir/
  * libXdmcp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXdmcp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXevie DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXevie DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
Line 1,427: Line 1,636:
  * libXi DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXi DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXinerama DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXinerama DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
* libxkbcommon DEFAULT http://xkbcommon.org/download/
  * libxkbfile DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libxkbfile DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
* libxklavier DEFAULT GNOME-DEFAULT
  * libxml2 DEFAULT ftp://xmlsoft.org/libxml2/
  * libxml2 DEFAULT ftp://xmlsoft.org/libxml2/
* libxmp DEFAULT SF-DEFAULT:xmp
  * libXmu DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXmu DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
Line 1,444: Line 1,656:
  * libXxf86vm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libXxf86vm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * libyaml DEFAULT:yaml http://pyyaml.org/download/libyaml/
  * libyaml DEFAULT:yaml http://pyyaml.org/download/libyaml/
* libykneomgr DEFAULT http://opensource.yubico.com/libykneomgr/releases.html
  * libyubikey DEFAULT GOOGLE-DEFAULT:yubico-c
  * libyubikey DEFAULT GOOGLE-DEFAULT:yubico-c
* libyui libyui/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui/tags
* libyui-bindings libyui-bindings/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-bindings/tags
* libyui-gtk libyui-gtk/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-gtk/tags
* libyui-ncurses libyui-ncurses/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-ncurses/tags
* libyui-qt libyui-qt/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-qt/tags
* libyui-qt-graph libyui-qt-graph/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-qt-graph/tags
* libzdb DEFAULT http://www.tildeslash.com/libzdb/dist/
* libzen libzen_([0-9.]*?).tar.bz2 SF-DEFAULT:zenlib
* licq DEFAULT SF-DEFAULT
  * light-themes DEFAULT https://launchpad.net/ubuntu/quantal/+source/light-themes
  * light-themes DEFAULT https://launchpad.net/ubuntu/quantal/+source/light-themes
  * lightdm DEFAULT LP-DEFAULT
  * lightdm DEFAULT LP-DEFAULT
Line 1,450: Line 1,672:
  * lightdm-kde lightdm-kde-([0-9.]+) http://download.kde.org/unstable/lightdm-kde/src/
  * lightdm-kde lightdm-kde-([0-9.]+) http://download.kde.org/unstable/lightdm-kde/src/
  * lightning DEFAULT GNU-DEFAULT
  * lightning DEFAULT GNU-DEFAULT
  * lighttpd DEFAULT http://download.lighttpd.net/lighttpd/releases-1.4.x/
  * lighttpd DEFAULT http://www.lighttpd.net/download/
  * linbox DEFAULT http://www.linalg.org/download.html
  * linbox DEFAULT http://www.linalg.org/download.html
  * lingot DEFAULT http://savannah.nongnu.org/files/?group=lingot
  * lingot DEFAULT http://download.savannah.gnu.org/releases/lingot/
* linkchecker DEFAULT http://wummel.github.io/linkchecker/
  * links DEFAULT http://links.twibright.com/download/
  * links DEFAULT http://links.twibright.com/download/
  * linpsk DEFAULT SF-DEFAULT
  * linpsk DEFAULT SF-DEFAULT
Line 1,458: Line 1,681:
  * linux-libertine-fonts LinLibertineSRC-(.*?).tgz SF-DEFAULT:linuxlibertine
  * linux-libertine-fonts LinLibertineSRC-(.*?).tgz SF-DEFAULT:linuxlibertine
  * linuxconsoletools DEFAULT SF-DEFAULT:linuxconsole
  * linuxconsoletools DEFAULT SF-DEFAULT:linuxconsole
* liquibase liquibase-(.*?)-bin\.tar\.gz http://www.liquibase.org/download/index.html
  * lis DEFAULT http://www.ssisc.org/lis/index.en.html
  * lis DEFAULT http://www.ssisc.org/lis/index.en.html
* llvm llvm-(.*?).src.tar.gz http://www.llvm.org/releases/download.html
  * lm_sensors DEFAULT http://dl.lm-sensors.org/lm-sensors/releases/
  * lm_sensors DEFAULT http://dl.lm-sensors.org/lm-sensors/releases/
  * lmms DEFAULT SF-DEFAULT
  * lmms DEFAULT SF-DEFAULT
* lnav GITHUB-TAGS GITHUB-TAGS:tstack/lnav
  * log4cplus DEFAULT SF-DEFAULT
  * log4cplus DEFAULT SF-DEFAULT
  * log4j (1.[0-9.]+)/ http://www.apache.org/dist/logging/log4j
  * log4j (1.[0-9.]+)/ http://www.apache.org/dist/logging/log4j
  * loggerhead DEFAULT LP-DEFAULT
  * loggerhead DEFAULT LP-DEFAULT
  * logserial DEFAULT http://www.ibiblio.org/pub/Linux/system/serial/
  * logserial DEFAULT http://www.ibiblio.org/pub/Linux/system/serial/
  * lonote lonote-([.0-9]+)\.7z GOOGLE-DEFAULT
* logstalgia DEFAULT https://github.com/acaudwell/Logstalgia/releases
  * lonote DEFAULT https://bitbucket.org/civalin/lonote/downloads
  * lrmi DEFAULT SF-DEFAULT
  * lrmi DEFAULT SF-DEFAULT
  * lrzip DEFAULT http://lrzip.kolivas.org/
  * lrzip DEFAULT http://lrzip.kolivas.org/
Line 1,471: Line 1,698:
  * lsof DEFAULT ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
  * lsof DEFAULT ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
  * lsscsi DEFAULT http://sg.danny.cz/scsi/lsscsi.html
  * lsscsi DEFAULT http://sg.danny.cz/scsi/lsscsi.html
* lsyncd DEFAULT GOOGLE-DEFAULT
  * lua DEFAULT http://www.lua.org/ftp/
  * lua DEFAULT http://www.lua.org/ftp/
  * lua-alt-getopt DEFAULT SF-DEFAULT
  * lua-alt-getopt DEFAULT SF-DEFAULT
  * lua-filesystem DEFAULT:luafilesystem http://luarocks.org/repositories/rocks/
  * lua-filesystem DEFAULT:luafilesystem http://luarocks.org/repositories/rocks/
* lua-ldoc GITHUB-TAGS GITHUB-TAGS:stevedonovan/LDoc
* lua-lgi GITHUB-TAGS GITHUB-TAGS:pavouk/lgi
  * lua-lpeg DEFAULT:lpeg http://www.inf.puc-rio.br/~roberto/lpeg/
  * lua-lpeg DEFAULT:lpeg http://www.inf.puc-rio.br/~roberto/lpeg/
  * lua-moonscript archive/v(.*?)\.zip https://github.com/leafo/moonscript/tags
  * lua-moonscript archive/v(.*?)\.zip https://github.com/leafo/moonscript/tags
* lua-penlight GITHUB-TAGS GITHUB-TAGS:stevedonovan/Penlight
* lua-rex \brel-([\d+\-]+)\b https://github.com/rrthomas/lrexlib/tags
  * luarocks DEFAULT http://luarocks.org/releases/
  * luarocks DEFAULT http://luarocks.org/releases/
  * luckybackup DEFAULT SF-DEFAULT
  * luckybackup DEFAULT SF-DEFAULT
Line 1,481: Line 1,713:
  * lxc DEFAULT SF-DEFAULT
  * lxc DEFAULT SF-DEFAULT
  * lxsplit DEFAULT SF-DEFAULT
  * lxsplit DEFAULT SF-DEFAULT
* lynis lynis-(.*)\.tar\.gz http://cisofy.com/downloads/
* lynx lynx(.*?)/index http://lynx.isc.org/
* lyx DEFAULT http://www.lyx.org/Download
  * lzip DEFAULT http://download.savannah.gnu.org/releases/lzip/
  * lzip DEFAULT http://download.savannah.gnu.org/releases/lzip/
  * lziprecover DEFAULT http://download.savannah.gnu.org/releases/lzip/
  * lziprecover DEFAULT http://download.savannah.gnu.org/releases/lzip/
  * lzo DEFAULT http://www.oberhumer.com/opensource/lzo/download/
  * lzo DEFAULT http://www.oberhumer.com/opensource/lzo/download/
  * m17n-db DEFAULT http://www.m17n.org/m17n-lib-en/download.html
</pre>
* m17n-contrib DEFAULT http://www.m17n.org/m17n-lib-en/download.html
 
  * m17n-lib DEFAULT http://www.m17n.org/m17n-lib-en/download.html
=== M ===
  * m4 DEFAULT GNU-DEFAULT
<pre>
  * m17n-db DEFAULT http://download.savannah.gnu.org/releases/m17n/
  * m17n-lib DEFAULT http://download.savannah.gnu.org/releases/m17n/
  * m4 DEFAULT GNU-DEFAULT
  * maatkit DEFAULT GOOGLE-DEFAULT
  * maatkit DEFAULT GOOGLE-DEFAULT
  * macchanger DEFAULT GNU-DEFAULT
  * macchanger DEFAULT GNU-DEFAULT
Line 1,494: Line 1,732:
  * mailx DEFAULT SF-DEFAULT:heirloom
  * mailx DEFAULT SF-DEFAULT:heirloom
  * make DEFAULT GNU-DEFAULT
  * make DEFAULT GNU-DEFAULT
* makeself release-([0-9.]+) https://github.com/megastep/makeself/releases
  * manchu-fonts DEFAULT:Manchu_Font_2005 SF-DEFAULT:manchufont
  * manchu-fonts DEFAULT:Manchu_Font_2005 SF-DEFAULT:manchufont
  * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
  * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
  * man-pages DEFAULT http://kernel.org/pub/linux/docs/man-pages/
  * man-pages DEFAULT http://kernel.org/pub/linux/docs/man-pages/
* man-pages-fr man-pages-fr[^0-9]*([0-9]+\.[0-9]+-[0-9]+) http://alioth.debian.org/projects/perkamon/
  * man-pages-pl DEFAULT:manpages-pl SF-DEFAULT:manpages-pl
  * man-pages-pl DEFAULT:manpages-pl SF-DEFAULT:manpages-pl
  * mawk mawk-(.*).tgz ftp://invisible-island.net/mawk/
  * maradns DEFAULT http://maradns.samiam.org/download.html
* marked NPM-DEFAULT NPM-DEFAULT
* mate-desktop DEFAULT http://pub.mate-desktop.org/releases/*/
* matio /matio/([0-9.]*?)/matio-[0-9.]*.tar.gz SF-DEFAULT:matio
  * maven DEFAULT:apache-maven http://www.apache.org/dist/maven/maven-3/*/source/
  * maven DEFAULT:apache-maven http://www.apache.org/dist/maven/maven-3/*/source/
* maven-ant-tasks (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-ant-tasks/
  * maven-archiver (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-archiver/
  * maven-archiver (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-archiver/
* maven-artifact-resolver (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/shared/maven-artifact-resolver/
* maven-dependency-analyzer (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/
  * maven-assembly-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/
  * maven-assembly-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/
  * maven-archetype (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/archetype/maven-archetype/
  * maven-archetype (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/archetype/maven-archetype/
Line 1,508: Line 1,752:
  * maven-dependency-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/
  * maven-dependency-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/
  * maven-doxia (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/doxia/doxia
  * maven-doxia (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/doxia/doxia
* maven-downloader maven-downloader-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
  * maven-doxia-sitetools (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/
  * maven-doxia-sitetools (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/
  * maven-doxia-tools maven-doxia-tools-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
  * maven-doxia-tools maven-doxia-tools-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
Line 1,515: Line 1,760:
  * maven-gpg-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-gpg-plugin/
  * maven-gpg-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-gpg-plugin/
  * maven-help-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-help-plugin/
  * maven-help-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-help-plugin/
* maven-file-management file-management-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
  * maven-idea-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-idea-plugin/
  * maven-idea-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-idea-plugin/
* maven-indexer (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/indexer/maven-indexer/
  * maven-install-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-install-plugin/
  * maven-install-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-install-plugin/
  * maven-invoker-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-invoker-plugin/
  * maven-invoker-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-invoker-plugin/
Line 1,524: Line 1,771:
  * maven-pmd-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/
  * maven-pmd-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/
  * maven-plugin-bundle (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/maven-bundle-plugin/
  * maven-plugin-bundle (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/maven-bundle-plugin/
* maven-verifier (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-verifier/
  * maven-plugin-testing maven-plugin-testing-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/plugin-testing/tags/
  * maven-plugin-testing maven-plugin-testing-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/plugin-testing/tags/
  * maven-plugin-tools (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/
  * maven-plugin-tools (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/
* maven-plugin-build-helper build-helper-maven-plugin-([0-9.]*?.*)\/\" https://svn.codehaus.org/mojo/tags/
  * maven-project-info-reports-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-project-info-reports-plugin/
  * maven-project-info-reports-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-project-info-reports-plugin/
  * maven-release maven-release-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/release/tags/
  * maven-release maven-release-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/release/tags/
* maven-antrun-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/
  * maven-reporting-exec (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-exec/
  * maven-reporting-exec (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-exec/
* maven-reporting-api (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-api/
* maven-reporting-impl (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-impl/
  * maven-resources-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/
  * maven-resources-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/
  * maven-scm (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/scm/maven-scm/
  * maven-scm (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/scm/maven-scm/
* maven-script-interpreter (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/shared/maven-script-interpreter/
  * maven-shade-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-shade-plugin/
  * maven-shade-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-shade-plugin/
  * maven-site-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-site-plugin/
  * maven-site-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-site-plugin/
  * maven-shared maven-shared-components-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
  * maven-shared maven-shared-components-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
* maven-shared-jar maven-shared-jar-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
  * maven-shared-utils (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-utils/
  * maven-shared-utils (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-utils/
* maven-shared-incremental (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-incremental/
* maven-shared-io maven-shared-io-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
  * maven-source-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-source-plugin/
  * maven-source-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-source-plugin/
  * maven-surefire (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/surefire/surefire/
  * maven-surefire (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/surefire/surefire/
  * maven-war-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/
  * maven-war-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/
* maven-toolchains-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-toolchains-plugin/
  * maven-wagon (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/wagon/wagon/
  * maven-wagon (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/wagon/wagon/
* maven-wagon-ahc DEFAULT:wagon-ahc https://github.com/sonatype/wagon-ahc/releases
  * maven-clean-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/
  * maven-clean-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/
  * maven-compiler-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/
  * maven-compiler-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/
Line 1,545: Line 1,803:
  * maven-remote-resources-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/
  * maven-remote-resources-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/
  * mawk DEFAULT ftp://invisible-island.net/mawk/
  * mawk DEFAULT ftp://invisible-island.net/mawk/
  * mc DEFAULT http://www.midnight-commander.org/downloads
  * mc DEFAULT http://ftp.midnight-commander.org/
  * mcabber DEFAULT http://mcabber.com/
  * mcabber DEFAULT http://mcabber.com/
* mcollective DEFAULT http://downloads.puppetlabs.com/mcollective/
  * mcu8051ide DEFAULT SF-DEFAULT
  * mcu8051ide DEFAULT SF-DEFAULT
  * mdadm DEFAULT http://kernel.org/pub/linux/utils/raid/mdadm/
  * mdadm DEFAULT http://kernel.org/pub/linux/utils/raid/mdadm/
Line 1,552: Line 1,811:
  * media-player-info DEFAULT http://www.freedesktop.org/software/media-player-info/
  * media-player-info DEFAULT http://www.freedesktop.org/software/media-player-info/
  * methane DEFAULT SF-DEFAULT
  * methane DEFAULT SF-DEFAULT
  * mdds mdds_(\d+\.\d+.\d+)\.tar\.bz2 GOOGLE-DEFAULT:multidimalgorithm
  * mdds mdds_(\d+\.\d+.\d+)\.tar\.bz2 http://code.google.com/p/multidimalgorithm/wiki/Downloads
  * mdk DEFAULT http://ftp.gnu.org/gnu/mdk/*/
  * mdk DEFAULT http://ftp.gnu.org/gnu/mdk/*/
  * medusa DEFAULT http://www.foofus.net/~jmk/medusa/medusa.html
  * medusa DEFAULT http://www.foofus.net/~jmk/medusa/medusa.html
  * memcached DEFAULT GOOGLE-DEFAULT
  * memcached DEFAULT GOOGLE-DEFAULT
  * memtest86+ DEFAULT http://www.memtest.org/
  * memtest86+ memtest86\+-(.*?)\.tar\.gz http://www.memtest.org/download/*/
* memtester DEFAULT http://pyropus.ca/software/memtester/
  * mercator DEFAULT SF-DEFAULT:worldforge
  * mercator DEFAULT SF-DEFAULT:worldforge
  * mercurial DEFAULT http://mercurial.selenic.com/release/
  * mercurial DEFAULT http://mercurial.selenic.com/release/
  * mesa DEFAULT:MesaLib ftp://ftp.freedesktop.org/pub/mesa/current/
  * mesa DEFAULT:MesaLib ftp://ftp.freedesktop.org/pub/mesa/current/
  * mg href="mg-(.*?).tar.gz" http://homepage.boetes.org/software/mg/
  * mg href="mg-(.*?).tar.gz" http://homepage.boetes.org/software/mg/
* mgetty \bmgetty([^-]+) ftp://mgetty.greenie.net/pub/mgetty/source/*.*/
  * mhddfs DEFAULT http://mhddfs.uvw.ru/downloads/
  * mhddfs DEFAULT http://mhddfs.uvw.ru/downloads/
* midori DEFAULT https://launchpad.net/midori
  * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
  * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
* minetest archive/(.*?)\.tar.gz https://github.com/minetest/minetest/tags
* mingw-dbus-glib DEFAULT:dbus-glib http://dbus.freedesktop.org/releases/dbus-glib/
* mingw-libgsf DEFAULT:libgsf GNOME-DEFAULT:libgsf
  * mingw-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
  * mingw-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
  * mingw-nsis DEFAULT:nsis http://nsis.sourceforge.net/Download
  * mingw-nsis DEFAULT:nsis http://nsis.sourceforge.net/Download
  * minicom DEFAULT http://alioth.debian.org/frs/?group_id=30018
  * minicom DEFAULT http://alioth.debian.org/frs/?group_id=30018
* minimodem DEFAULT http://www.whence.com/minimodem/
* minised DEFAULT http://www.exactcode.de/site/open_source/minised/
* miniupnpc miniupnpc-([0-9\.]*?) http://miniupnp.free.fr/files/
* mirall DEFAULT http://owncloud.org/sync-clients/
* mj DEFAULT http://mahjong.julianbradfield.org/Source/
  * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
  * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
  * mldonkey DEFAULT SF-DEFAULT
  * mldonkey DEFAULT SF-DEFAULT
  * mmapper DEFAULT SF-DEFAULT
  * mmapper DEFAULT SF-DEFAULT
  * mod_perl DEFAULT http://perl.apache.org/dist/
* mocha NPM-DEFAULT NPM-DEFAULT
  * mod_perl DEFAULT CPAN-DEFAULT
* mod_qos DEFAULT http://sourceforge.net/projects/mod-qos/files/
  * mod_suphp DEFAULT:suphp http://www.suphp.org/Home.html
  * mod_suphp DEFAULT:suphp http://www.suphp.org/Home.html
  * mod_wsgi DEFAULT GOOGLE-DEFAULT:modwsgi
  * mod_wsgi DEFAULT GOOGLE-DEFAULT:modwsgi
Line 1,578: Line 1,850:
  * mojo-parent (\d+)/ http://repo2.maven.org/maven2/org/codehaus/mojo/mojo-parent/
  * mojo-parent (\d+)/ http://repo2.maven.org/maven2/org/codehaus/mojo/mojo-parent/
  * moksha DEFAULT PYPI-DEFAULT
  * moksha DEFAULT PYPI-DEFAULT
* mon DEFAULT ftp://ftp.kernel.org/pub/software/admin/mon
  * monkeysphere monkeysphere_([0-9.]*).orig.tar.gz http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/
  * monkeysphere monkeysphere_([0-9.]*).orig.tar.gz http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/
* monitorix DEFAULT http://www.monitorix.org/downloads.html
  * monochrome-icon-theme DEFAULT:ubuntu-mono https://launchpad.net/ubuntu/quantal/+source/ubuntu-mono
  * monochrome-icon-theme DEFAULT:ubuntu-mono https://launchpad.net/ubuntu/quantal/+source/ubuntu-mono
  * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
  * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
  * most DEFAULT ftp://space.mit.edu/pub/davis/most/*/
  * most DEFAULT ftp://space.mit.edu/pub/davis/most/*/
  * mot-adms DEFAULT SF-DEFAULT
  * mot-adms DEFAULT:adms SF-DEFAULT
* motif motif-(.*?)\-src.tgz SF-DEFAULT
  * mozc DEFAULT GOOGLE-DEFAULT
  * mozc DEFAULT GOOGLE-DEFAULT
  * mozilla-adblockplus DEFAULT:adblockplus http://hg.adblockplus.org/downloads/raw-file/tip/
  * mozilla-adblockplus DEFAULT:adblockplus http://hg.adblockplus.org/downloads/raw-file/tip/
Line 1,590: Line 1,865:
  * mpir DEFAULT http://www.mpir.org/
  * mpir DEFAULT http://www.mpir.org/
  * mrbs DEFAULT SF-DEFAULT
  * mrbs DEFAULT SF-DEFAULT
* mrtg DEFAULT http://oss.oetiker.ch/mrtg/pub/
  * msmtp DEFAULT SF-DEFAULT
  * msmtp DEFAULT SF-DEFAULT
* msr-tools DEFAULT http://01.org/msr-tools/downloads
  * mtd-utils DEFAULT ftp://ftp.infradead.org/pub/mtd-utils/
  * mtd-utils DEFAULT ftp://ftp.infradead.org/pub/mtd-utils/
  * mtn-browse DEFAULT SF-DEFAULT
  * mtn-browse DEFAULT SF-DEFAULT
Line 1,597: Line 1,874:
  * mtx DEFAULT SF-DEFAULT
  * mtx DEFAULT SF-DEFAULT
  * multitail DEFAULT http://www.vanheusden.com/multitail/download.php
  * multitail DEFAULT http://www.vanheusden.com/multitail/download.php
  * muParser Version...([0-9]\.[0-9.]*).*muparser SF-DEFAULT:muparser
* mumble DEFAULT SF-DEFAULT
  * muParser Version ([0-9]\.[0-9.]*).*muparser SF-DEFAULT:muparser
  * mupdf DEFAULT http://mupdf.com/download/
  * mupdf DEFAULT http://mupdf.com/download/
  * mutt DEFAULT ftp://ftp.mutt.org/mutt/
  * mutt DEFAULT ftp://ftp.mutt.org/mutt/
  * mypaint mypaint-([0-9]\.[0-9]\.[0-9]).tar.bz2 http://download.gna.org/mypaint/
  * mypaint mypaint-([0-9]\.[0-9]\.[0-9]).tar.bz2 http://download.gna.org/mypaint/
  * mysqltuner archive/v(.*?)\.zip https://github.com/rackerhacker/MySQLTuner-perl/tags
  * mysqltuner archive/v(.*?)\.zip https://github.com/rackerhacker/MySQLTuner-perl/tags
  * mysql-connector-java DEFAULT http://dev.mysql.com/downloads/connector/j/
  * mysql-connector-java DEFAULT http://dev.mysql.com/downloads/connector/j/?os=26
  * mysql-proxy DEFAULT http://dev.mysql.com/downloads/mysql-proxy/?upcoming_os=src
  * mysql-proxy DEFAULT http://dev.mysql.com/downloads/mysql-proxy/?os=src
  * mysql-workbench DEFAULT:mysql-workbench-gpl http://dev.mysql.com/downloads/workbench/?current_os=src
  * mysql-workbench DEFAULT:mysql-workbench-community http://dev.mysql.com/downloads/workbench/?os=src
* maven-hpi-plugin DEFAULT https://github.com/jenkinsci/maven-hpi-plugin/tags
* metainf-services DEFAULT https://github.com/kohsuke/metainf-services/tags
</pre>
</pre>


=== N - PE ===
=== N - NodeJS ===
<pre>
<pre>
  * nagios DEFAULT SF-DEFAULT
  * nagios DEFAULT SF-DEFAULT
  * nagios-plugins DEFAULT SF-DEFAULT:nagiosplug
  * nagios-plugins DEFAULT http://www.monitoring-plugins.org/download.html
  * nano DEFAULT GNU-DEFAULT
  * nano DEFAULT GNU-DEFAULT
  * nas DEFAULT SF-DEFAULT
  * nas DEFAULT SF-DEFAULT
  * nasm DEFAULT http://www.nasm.us/pub/nasm/releasebuilds/*/
  * nasm DEFAULT http://www.nasm.us/pub/nasm/releasebuilds/*/
* NaturalDocs DEFAULT SF-DEFAULT:naturaldocs
* nautilus DEFAULT GNOME-DEFAULT
  * nautilus-open-terminal DEFAULT GNOME-DEFAULT
  * nautilus-open-terminal DEFAULT GNOME-DEFAULT
* nbd DEFAULT SF-DEFAULT
  * ncdu DEFAULT http://dev.yorhel.nl/ncdu
  * ncdu DEFAULT http://dev.yorhel.nl/ncdu
  * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
  * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
* ncompress DEFAULT SF-DEFAULT
  * ncurses DEFAULT GNU-DEFAULT
  * ncurses DEFAULT GNU-DEFAULT
  * ncview DEFAULT ftp://cirrus.ucsd.edu/pub/ncview/
  * ncview DEFAULT ftp://cirrus.ucsd.edu/pub/ncview/
* neap "name":\s*"v([\d\.]+)" https://api.github.com/repos/10sr/neap/tags
  * nekohtml DEFAULT SF-DEFAULT
  * nekohtml DEFAULT SF-DEFAULT
  * nesc nesc-(.*?).tar.gz http://sourceforge.net/projects/nescc/
  * nesc nesc-(.*?).tar.gz http://sourceforge.net/projects/nescc/
  * net-snmp /files/net-snmp/([\d.]+)/ http://net-snmp.sourceforge.net/download.html
  * net-snmp /files/net-snmp/([\d.]+)/ http://net-snmp.sourceforge.net/download.html
  * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
  * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
* netbsd-iscsi DEFAULT http://www.alistaircrooks.co.uk/src/
  * nethogs DEFAULT SF-DEFAULT
  * nethogs DEFAULT SF-DEFAULT
* netlabel_tools DEFAULT SF-DEFAULT:netlabel
  * netmask DEFAULT DEBIAN-DEFAULT
  * netmask DEFAULT DEBIAN-DEFAULT
  * netmonitor DEFAULT SF-DEFAULT
  * netmonitor DEFAULT SF-DEFAULT
  * netpbm DEFAULT SF-DEFAULT
  * netpbm DEFAULT SF-DEFAULT
* netsed DEFAULT http://silicone.homelinux.org/release/netsed/
  * netsniff-ng DEFAULT http://www.netsniff-ng.org/pub/netsniff-ng/
  * netsniff-ng DEFAULT http://www.netsniff-ng.org/pub/netsniff-ng/
* netsurf-buildsystem buildsystem-(\d+\.\d+).tar.gz http://download.netsurf-browser.org/libs/releases/
  * nettle DEFAULT http://www.lysator.liu.se/~nisse/archive/
  * nettle DEFAULT http://www.lysator.liu.se/~nisse/archive/
  * netty netty-([0-9.]*?).Final https://github.com/netty/netty/tags
  * netty netty-([0-9.]*?).Final https://github.com/netty/netty/tags
Line 1,635: Line 1,924:
  * nfacct DEFAULT http://ftp.netfilter.org/pub/nfacct/
  * nfacct DEFAULT http://ftp.netfilter.org/pub/nfacct/
  * nfs-utils DEFAULT SF-DEFAULT:nfs
  * nfs-utils DEFAULT SF-DEFAULT:nfs
  * nginx DEFAULT http://nginx.org/en/download.html
  * nftables DEFAULT http://ftp.netfilter.org/pub/nftables/
* ngircd DEFAULT http://ngircd.barton.de/download.php.en
  * ngrep DEFAULT SF-DEFAULT
  * ngrep DEFAULT SF-DEFAULT
* ngspice (\d+[\d+]*) http://sourceforge.net/projects/ngspice/files/ng-spice-rework/
  * nickle DEFAULT http://nickle.org/release/
  * nickle DEFAULT http://nickle.org/release/
  * nicotine+ DEFAULT SF-DEFAULT:nicotine-plus
  * nicotine+ DEFAULT SF-DEFAULT:nicotine-plus
* nifti2dicom GITHUB-TAGS GITHUB-TAGS:biolab-unige/nifti2dicom
* nightview DEFAULT ftp://integral.physics.muni.cz/pub/nightview
  * njam DEFAULT SF-DEFAULT
  * njam DEFAULT SF-DEFAULT
  * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/
  * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/
* nip2 DEFAULT http://www.vips.ecs.soton.ac.uk/supported/current/
  * nkf DEFAULT http://sourceforge.jp/projects/nkf/releases/
  * nkf DEFAULT http://sourceforge.jp/projects/nkf/releases/
  * nload DEFAULT http://www.roland-riegel.de/nload/
  * nload DEFAULT http://www.roland-riegel.de/nload/
  * nmap DEFAULT http://nmap.org/dist/
  * nmap DEFAULT http://nmap.org/dist/
  * nodejs-async NPM-DEFAULT NPM-DEFAULT
  * nmon lmon(.*?)\.c http://nmon.sourceforge.net/pmwiki.php?n=Site.CompilingNmon
* nodejs-bindings NPM-DEFAULT NPM-DEFAULT
</pre>
* nodejs-buffer-crc32 NPM-DEFAULT NPM-DEFAULT
 
* nodejs-bytes NPM-DEFAULT NPM-DEFAULT
=== NodeJS ===
* nodejs-chrono NPM-DEFAULT NPM-DEFAULT
<pre>
* nodejs-combined-stream NPM-DEFAULT NPM-DEFAULT
  * nodejs-* NPM-DEFAULT NPM-DEFAULT
* nodejs-commander NPM-DEFAULT NPM-DEFAULT
</pre>
* nodejs-connect NPM-DEFAULT NPM-DEFAULT
 
* nodejs-cookie NPM-DEFAULT NPM-DEFAULT
=== NodeJS - O ===
* nodejs-cookie-signature NPM-DEFAULT NPM-DEFAULT
<pre>
  * nodejs-cssom NPM-DEFAULT NPM-DEFAULT
  * nomacs nomacs-(.*?)-source\.tar\.bz2 SF-DEFAULT
* nodejs-debug NPM-DEFAULT NPM-DEFAULT
  * notmuch DEFAULT http://notmuchmail.org/releases/
* nodejs-deep-equal NPM-DEFAULT NPM-DEFAULT
* nodejs-delayed-stream NPM-DEFAULT NPM-DEFAULT
* nodejs-diff NPM-DEFAULT NPM-DEFAULT
* nodejs-eyes NPM-DEFAULT NPM-DEFAULT
  * nodejs-fileset NPM-DEFAULT NPM-DEFAULT
* nodejs-form-data NPM-DEFAULT NPM-DEFAULT
  * nodejs-formidable NPM-DEFAULT NPM-DEFAULT
* nodejs-fresh NPM-DEFAULT NPM-DEFAULT
* nodejs-gaze NPM-DEFAULT NPM-DEFAULT
* nodejs-generic-pool NPM-DEFAULT NPM-DEFAULT
* nodejs-glob NPM-DEFAULT NPM-DEFAULT
* nodejs-graceful-fs NPM-DEFAULT NPM-DEFAULT
* nodejs-growl NPM-DEFAULT NPM-DEFAULT
* nodejs-iso8601 NPM-DEFAULT NPM-DEFAULT
* nodejs-jade NPM-DEFAULT NPM-DEFAULT
* nodejs-jasmine-reporters NPM-DEFAULT NPM-DEFAULT
* nodejs-keypress NPM-DEFAULT NPM-DEFAULT
* nodejs-lru-cache NPM-DEFAULT NPM-DEFAULT
* nodejs-mapnik-reference NPM-DEFAULT NPM-DEFAULT
* nodejs-methods NPM-DEFAULT NPM-DEFAULT
* nodejs-millstone NPM-DEFAULT NPM-DEFAULT
* nodejs-mime NPM-DEFAULT NPM-DEFAULT
* nodejs-minimatch NPM-DEFAULT NPM-DEFAULT
* nodejs-mkdirp NPM-DEFAULT NPM-DEFAULT
* nodejs-ms NPM-DEFAULT NPM-DEFAULT
* nodejs-mute-stream NPM-DEFAULT NPM-DEFAULT
* nodejs-node-expat NPM-DEFAULT NPM-DEFAULT
* nodejs-oauth NPM-DEFAULT NPM-DEFAULT
* nodejs-optimist NPM-DEFAULT NPM-DEFAULT
* nodejs-passport NPM-DEFAULT NPM-DEFAULT
* nodejs-passport-oauth NPM-DEFAULT NPM-DEFAULT
* nodejs-pause NPM-DEFAULT NPM-DEFAULT
* nodejs-pkginfo NPM-DEFAULT NPM-DEFAULT
* nodejs-qs NPM-DEFAULT NPM-DEFAULT
* nodejs-range-parser NPM-DEFAULT NPM-DEFAULT
* nodejs-read NPM-DEFAULT NPM-DEFAULT
* nodejs-request NPM-DEFAULT NPM-DEFAULT
* nodejs-requirejs NPM-DEFAULT NPM-DEFAULT
* nodejs-rimraf NPM-DEFAULT NPM-DEFAULT
* nodejs-sax NPM-DEFAULT NPM-DEFAULT
* nodejs-send NPM-DEFAULT NPM-DEFAULT
* nodejs-showdown NPM-DEFAULT NPM-DEFAULT
* nodejs-sphericalmercator NPM-DEFAULT NPM-DEFAULT
* nodejs-sqlite3 NPM-DEFAULT NPM-DEFAULT
* nodejs-srs NPM-DEFAULT NPM-DEFAULT
* nodejs-step NPM-DEFAULT NPM-DEFAULT
* nodejs-temp NPM-DEFAULT NPM-DEFAULT
* nodejs-underscore NPM-DEFAULT NPM-DEFAULT
* nodejs-walkdir NPM-DEFAULT NPM-DEFAULT
* nodejs-wordwrap NPM-DEFAULT NPM-DEFAULT
* nodejs-xml2js NPM-DEFAULT NPM-DEFAULT
* nodejs-zap NPM-DEFAULT NPM-DEFAULT
* nodejs-zipfile NPM-DEFAULT NPM-DEFAULT
  * npush DEFAULT SF-DEFAULT
  * npush DEFAULT SF-DEFAULT
* nsd DEFAULT http://www.nlnetlabs.nl/downloads/nsd/
  * nspluginwrapper DEFAULT http://nspluginwrapper.org/download/
  * nspluginwrapper DEFAULT http://nspluginwrapper.org/download/
* nss DEFAULT http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/*/src/
  * ntfs-3g >ntfs-3g_ntfsprogs-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
  * ntfs-3g >ntfs-3g_ntfsprogs-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
* npth DEFAULT ftp://ftp.gnupg.org/gcrypt/npth/
  * ntop DEFAULT SF-DEFAULT
  * ntop DEFAULT SF-DEFAULT
* ntopng DEFAULT SF-DEFAULT:ntop
* ntp http://www.ntp.org/downloads.html
  * numactl DEFAULT ftp://oss.sgi.com/projects/libnuma/download
  * numactl DEFAULT ftp://oss.sgi.com/projects/libnuma/download
* numatop numatop_linux_(.*?)\.tar\.gz http://01.org/numatop
  * numlockx DEFAULT http://home.kde.org/~seli/numlockx/
  * numlockx DEFAULT http://home.kde.org/~seli/numlockx/
* numpy numpy-([0-9.]*?).tar.gz SF-DEFAULT
* nut DEFAULT http://www.networkupstools.org/download.html
  * nuttcp DEFAULT http://lcp.nrl.navy.mil/nuttcp/
  * nuttcp DEFAULT http://lcp.nrl.navy.mil/nuttcp/
  * nx nx-X11-([\d.]+) http://www.nomachine.com/sources.php
  * nwchem Nwchem-([0-9.]*?)\.revision([0-9]*?)-src\..*\.tar\.gz http://www.nwchem-sw.org/images/
* nx-libs nx-libs-(.*?)-full\.tar\.gz http://code.x2go.org/releases/source/nx-libs/
* nzbget DEFAULT SF-DEFAULT
</pre>
 
=== O ===
<pre>
* oath-toolkit DEFAULT http://download.savannah.gnu.org/releases/oath-toolkit/
  * obexftp DEFAULT SF-DEFAULT:openobex
  * obexftp DEFAULT SF-DEFAULT:openobex
  * obnam DEFAULT http://code.liw.fi/debian/pool/main/o/obnam/
  * obnam DEFAULT http://code.liw.fi/debian/pool/main/o/obnam/
  * ocaml DEFAULT http://caml.inria.fr/download.en.html
  * ocaml DEFAULT http://caml.inria.fr/download.en.html
  * ocfs2-tools DEFAULT http://oss.oracle.com/projects/ocfs2-tools/files/source/*/
  * ocaml-biniou DEFAULT:biniou http://mjambon.com/releases/biniou/
* ocaml-cppo DEFAULT:cppo http://mjambon.com/releases/cppo/
* ocaml-easy-format DEFAULT:easy-format http://mjambon.com/releases/easy-format/
* ocaml-xmlm DEFAULT:xmlm http://erratique.ch/software/xmlm/releases/
* ocaml-yojson DEFAULT:yojson http://mjambon.com/releases/yojson/
  * ocrad DEFAULT GNU-DEFAULT
  * ocrad DEFAULT GNU-DEFAULT
* ocserv DEFAULT ftp://ftp.infradead.org/pub/ocserv/
  * octave DEFAULT GNU-DEFAULT
  * octave DEFAULT GNU-DEFAULT
  * octave-audio DEFAULT:audio SF-DEFAULT:octave
  * octave-audio DEFAULT:audio SF-DEFAULT:octave
  * octave-control control-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-control control-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
* octave-gsl gsl-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-image image-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-image image-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-miscellaneous miscellaneous-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-miscellaneous miscellaneous-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
Line 1,736: Line 1,994:
  * octave-struct struct-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-struct struct-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
  * octave-symbolic DEFAULT:symbolic SF-DEFAULT:octave
  * octave-symbolic DEFAULT:symbolic SF-DEFAULT:octave
* odb DEFAULT:odb http://codesynthesis.com/download/odb/*/
  * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
  * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
  * offlineimap v([0-9.]+).zip https://github.com/OfflineIMAP/offlineimap/tags
  * offlineimap v([0-9.]+).zip https://github.com/OfflineIMAP/offlineimap/tags
  * OmegaT DEFAULT SF-DEFAULT:omegat
  * OmegaT DEFAULT SF-DEFAULT:omegat
* open-mtools \bmtools\.([^-/_\s]+?)(?i)(?:[-_])?\.(?:tar|t[bglx]z|tbz2|zip)\b https://code.google.com/p/open-mtools/downloads/list
  * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
  * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
  * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
  * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
* openblas archive/v(.*?)\.zip https://github.com/xianyi/OpenBLAS/tags
* openbox DEFAULT http://openbox.org/wiki/Openbox:Download
  * opencc DEFAULT GOOGLE-DEFAULT
  * opencc DEFAULT GOOGLE-DEFAULT
  * opencsg OpenCSG-([0-9.]*?).tar.gz http://www.opencsg.org/
  * opencsg OpenCSG-([0-9.]*?).tar.gz http://www.opencsg.org/
  * opengrok DEFAULT http://opensolaris.org/os/project/opengrok/
  * opendkim \bopendkim[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?(?<!Beta\d)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
* opendnssec DEFAULT http://dist.opendnssec.org/source/
* opengrok DEFAULT http://opengrok.github.io/OpenGrok/
* OpenImageIO Release-([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/OpenImageIO/oiio/releases
  * OpenIPMI DEFAULT SF-DEFAULT:openipmi
  * OpenIPMI DEFAULT SF-DEFAULT:openipmi
  * openjpeg DEFAULT https://code.google.com/p/openjpeg/downloads/list
  * openjpeg2 DEFAULT SF-DEFAULT:openjpeg.mirror
* openjpeg openjpeg-(1\.[0-9]\.[0-9])\.tar\.gz SF-DEFAULT:openjpeg.mirror
  * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
  * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
  * openlierox OpenLieroX_(.*?).src.tar.bz2 SF-DEFAULT
  * openlierox OpenLieroX_(.*?).src.tar.bz2 SF-DEFAULT
Line 1,752: Line 2,018:
  * openobex trees/(\d[\d.]+)\W http://gitorious.org/openobex/mainline/trees/master
  * openobex trees/(\d[\d.]+)\W http://gitorious.org/openobex/mainline/trees/master
  * openocd DEFAULT SF-DEFAULT
  * openocd DEFAULT SF-DEFAULT
* openrdate DEFAULT SF-DEFAULT
  * opensc archive/v?(.*?)\.zip https://github.com/OpenSC/OpenSC/tags
  * opensc archive/v?(.*?)\.zip https://github.com/OpenSC/OpenSC/tags
* openscad openscad-(.*?).src.tar.gz http://files.openscad.org/
* opensips (?<=\<a href=")(\d+\.\d*[02468]\.\d+)(?=/"\>) https://opensips.org/pub/opensips/
* openshift-java-client (\d+\.\d+\.\d+.*).tar.gz https://github.com/openshift/openshift-java-client/releases
* opensm DEFAULT http://www.openfabrics.org/downloads/management/
  * opensp DEFAULT:OpenSP SF-DEFAULT:openjade
  * opensp DEFAULT:OpenSP SF-DEFAULT:openjade
  * openssh DEFAULT http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/
  * openssh DEFAULT http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/
  * openssl openssl-(.*?[a-z])\.tar\.gz http://www.openssl.org/source/
  * openssl openssl-(.*?[a-z])\.tar\.gz http://www.openssl.org/source/
* openswan DEFAULT http://ftp.openswan.org/openswan/
  * openvpn DEFAULT http://www.openvpn.net/index.php/open-source/downloads.html
  * openvpn DEFAULT http://www.openvpn.net/index.php/open-source/downloads.html
  * openvswitch DEFAULT http://openvswitch.org/releases/
  * openvswitch DEFAULT http://openvswitch.org/releases/
  * ophcrack DEFAULT http://ophcrack.sf.net/download.php
  * ophcrack DEFAULT http://ophcrack.sf.net/download.php
* oprofile DEFAULT SF-DEFAULT
  * optipng DEFAULT SF-DEFAULT
  * optipng DEFAULT SF-DEFAULT
  * orbited DEFAULT PYPI-DEFAULT
  * orbited DEFAULT PYPI-DEFAULT
  * orc DEFAULT http://code.entropywave.com/download/orc/
  * orc DEFAULT http://cgit.freedesktop.org/gstreamer/orc/refs/tags
  * os-prober DEFAULT DEBIAN-DEFAULT
  * os-prober DEFAULT DEBIAN-DEFAULT
  * osmo DEFAULT SF-DEFAULT:osmo-pim
  * osmo DEFAULT SF-DEFAULT:osmo-pim
  * osslsigncode DEFAULT SF-DEFAULT
  * osslsigncode DEFAULT SF-DEFAULT
  * ovaldi DEFAULT SF-DEFAULT
  * ovaldi DEFAULT SF-DEFAULT
  * owncloud DEFAULT http://mirrors.owncloud.org/releases/
* owasp-java-html-sanitizer owasp-java-html-sanitizer-r([0-9\.]*).zip GOOGLE-DEFAULT
  * owncloud Version ([0-9.]+) http://owncloud.org/changelog/
* oyranos DEFAULT SF-DEFAULT
</pre>
 
=== P - Perl ===
<pre>
  * p0f DEFAULT http://lcamtuf.coredump.cx/p0f3/releases/
  * p0f DEFAULT http://lcamtuf.coredump.cx/p0f3/releases/
  * p11-kit DEFAULT http://p11-glue.freedesktop.org/releases/
  * p11-kit DEFAULT http://p11-glue.freedesktop.org/releases/
Line 1,775: Line 2,052:
  * pal DEFAULT SF-DEFAULT:palcal
  * pal DEFAULT SF-DEFAULT:palcal
  * pam_mount DEFAULT SF-DEFAULT:pam-mount
  * pam_mount DEFAULT SF-DEFAULT:pam-mount
* pam_yubico ([0-9.]+).zip https://github.com/Yubico/yubico-pam/releases
  * pandoc HACKAGE-DEFAULT HACKAGE-DEFAULT
  * pandoc HACKAGE-DEFAULT HACKAGE-DEFAULT
  * paprefs DEFAULT http://freedesktop.org/software/pulseaudio/paprefs/
  * paprefs DEFAULT http://freedesktop.org/software/pulseaudio/paprefs/
  * paps DEFAULT SF-DEFAULT
  * paps DEFAULT SF-DEFAULT
  * parcellite DEFAULT SF-DEFAULT
  * parcellite DEFAULT SF-DEFAULT
* pari DEFAULT http://pari.math.u-bordeaux.fr/download.html
* parrot DEFAULT http://www.parrot.org/release/developer
  * parted DEFAULT GNU-DEFAULT
  * parted DEFAULT GNU-DEFAULT
  * patch DEFAULT GNU-DEFAULT
  * patch DEFAULT GNU-DEFAULT
Line 1,784: Line 2,064:
  * pastebinit DEFAULT https://launchpad.net/pastebinit/+download
  * pastebinit DEFAULT https://launchpad.net/pastebinit/+download
  * pax-utils \bpax-utils-([\w.]+)\.ebuild http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/pax-utils/
  * pax-utils \bpax-utils-([\w.]+)\.ebuild http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/pax-utils/
* pbm2l7k lexmark7000linux-(.*?).tar.gz http://www.ibiblio.org/pub/linux/hardware/drivers/
  * pbzip2 DEFAULT http://www.compression.ca/pbzip2/
  * pbzip2 DEFAULT http://www.compression.ca/pbzip2/
  * pcb DEFAULT SF-DEFAULT
  * pcb DEFAULT SF-DEFAULT
  * pcc DEFAULT http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/
  * pcc DEFAULT http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/
  * pciutils DEFAULT ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
  * pciutils DEFAULT ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
* pcllib DEFAULT:pcl http://xmailserver.org/libpcl.html
* pcmanfm DEFAULT SF-DEFAULT
  * pcmanx-gtk2 DEFAULT GOOGLE-DEFAULT
  * pcmanx-gtk2 DEFAULT GOOGLE-DEFAULT
  * pcmciautils DEFAULT http://kernel.org/pub/linux/utils/kernel/pcmcia/
  * pcmciautils DEFAULT http://kernel.org/pub/linux/utils/kernel/pcmcia/
  * pcre DEFAULT ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
  * pcre DEFAULT SF-DEFAULT
  * pcsc-lite DEFAULT https://alioth.debian.org/frs/?group_id=30105
  * pcsc-lite DEFAULT http://alioth.debian.org/frs/?group_id=30105
  * pcsc-lite-ccid DEFAULT:ccid https://alioth.debian.org/frs/?group_id=30105
  * pcsc-lite-ccid DEFAULT:ccid http://alioth.debian.org/frs/?group_id=30105
  * pcsc-perl DEFAULT http://ludovic.rousseau.free.fr/softwares/pcsc-perl/
  * pcsc-perl DEFAULT http://ludovic.rousseau.free.fr/softwares/pcsc-perl/
  * pdfchain DEFAULT SF-DEFAULT
  * pdfchain DEFAULT SF-DEFAULT
* pdfjam <strong>(\d+\.\d+)</strong> http://go.warwick.ac.uk/pdfjam
  * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
  * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
* pdftk DEFAULT http://www.pdflabs.com/tools/pdftk-server/
  * pem DEFAULT GNU-DEFAULT
  * pem DEFAULT GNU-DEFAULT
* pen DEFAULT http://siag.nu/pub/pen/
  * pencil DEFAULT GOOGLE-DEFAULT:evoluspencil
  * pencil DEFAULT GOOGLE-DEFAULT:evoluspencil
* perl-Sys-CPU Sys-CPU-(.*?).tar.gz search.cpan.org/CPAN/authors/id/M/MZ/MZSANFORD/
* perl-Verilog-Perl Verilog-Perl-(.*?).tar.gz http://cpan.mirror.clemson.edu/authors/id/W/WS/WSNYDER/
</pre>
</pre>


=== Perl ===
=== Perl ===
<pre>
<pre>
  * perl-accessors DEFAULT:accessors CPAN-DEFAULT
  * perl-accessors CPAN-DEFAULT CPAN-DEFAULT
  * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
  * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
  * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
  * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
  * perl-AI-DecisionTree DEFAULT:AI-DecisionTree CPAN-DEFAULT:AI-DecisionTree
  * perl-AI-DecisionTree DEFAULT:AI-DecisionTree CPAN-DEFAULT:AI-DecisionTree
  * perl-Algorithm-Annotate DEFAULT:Algorithm-Annotate CPAN-DEFAULT
  * perl-Algorithm-Annotate DEFAULT:Algorithm-Annotate CPAN-DEFAULT
  * perl-Algorithm-CheckDigits DEFAULT:Algorithm-CheckDigits CPAN-DEFAULT
  * perl-Algorithm-CheckDigits CPAN-DEFAULT CPAN-DEFAULT
  * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
  * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
  * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
  * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
  * perl-Algorithm-SVM DEFAULT:Algorithm-SVM CPAN-DEFAULT
  * perl-Algorithm-SVM DEFAULT:Algorithm-SVM CPAN-DEFAULT
* perl-Alien-ROOT DEFAULT:Alien-ROOT CPAN-DEFAULT
  * perl-Alien-SDL DEFAULT:Alien-SDL CPAN-DEFAULT
  * perl-Alien-SDL DEFAULT:Alien-SDL CPAN-DEFAULT
  * perl-Any-Moose DEFAULT:Any-Moose CPAN-DEFAULT
  * perl-Any-Moose DEFAULT:Any-Moose CPAN-DEFAULT
* perl-AnyEvent-AIO DEFAULT:AnyEvent-AIO CPAN-DEFAULT
* perl-AnyEvent-BDB DEFAULT:AnyEvent-BDB CPAN-DEFAULT
  * perl-AnyEvent-DBus DEFAULT:AnyEvent-DBus CPAN-DEFAULT:AnyEvent-DBus
  * perl-AnyEvent-DBus DEFAULT:AnyEvent-DBus CPAN-DEFAULT:AnyEvent-DBus
* perl-AnyEvent-I3 DEFAULT:AnyEvent-I3 CPAN-DEFAULT:AnyEvent-I3
  * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
  * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
  * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
  * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
  * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
  * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
* perl-App-FatPacker DEFAULT:App-FatPacker CPAN-DEFAULT
* perl-App-grindperl DEFAULT:App-grindperl CPAN-DEFAULT
* perl-App-mymeta_requires DEFAULT:App-mymeta_requires CPAN-DEFAULT
* perl-App-Nopaste DEFAULT:App-Nopaste CPAN-DEFAULT
* perl-App-p DEFAULT:App-p CPAN-DEFAULT
  * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisect CPAN-DEFAULT
  * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisect CPAN-DEFAULT
  * perl-Archive-Extract DEFAULT:Archive-Extract CPAN-DEFAULT
  * perl-Archive-Extract DEFAULT:Archive-Extract CPAN-DEFAULT
Line 1,829: Line 2,118:
  * perl-Array-Diff DEFAULT:Array-Diff CPAN-DEFAULT
  * perl-Array-Diff DEFAULT:Array-Diff CPAN-DEFAULT
  * perl-Array-RefElem DEFAULT:Array-RefElem CPAN-DEFAULT
  * perl-Array-RefElem DEFAULT:Array-RefElem CPAN-DEFAULT
* perl-Async-MergePoint DEFAULT:Async-MergePoint CPAN-DEFAULT
  * perl-AuthCAS DEFAULT:AuthCAS CPAN-DEFAULT
  * perl-AuthCAS DEFAULT:AuthCAS CPAN-DEFAULT
  * perl-Authen-OATH DEFAULT:Authen-OATH CPAN-DEFAULT
  * perl-Authen-OATH DEFAULT:Authen-OATH CPAN-DEFAULT
* perl-autodie DEFAULT:autodie CPAN-DEFAULT
  * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
  * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
  * perl-B-Hooks-OP-Check-StashChange DEFAULT:B-Hooks-OP-Check-StashChange CPAN-DEFAULT
  * perl-B-Hooks-OP-Check-StashChange DEFAULT:B-Hooks-OP-Check-StashChange CPAN-DEFAULT
Line 1,838: Line 2,129:
  * perl-Beanstalk-Client DEFAULT:Beanstalk-Client CPAN-DEFAULT
  * perl-Beanstalk-Client DEFAULT:Beanstalk-Client CPAN-DEFAULT
  * perl-Best DEFAULT:Best CPAN-DEFAULT
  * perl-Best DEFAULT:Best CPAN-DEFAULT
* perl-bioperl BioPerl-([0-9].*?)\.tar\.bz2 http://bioperl.org/DIST/
* perl-bioperl-run BioPerl-[r|R]un-([0-9].*?)\.tar\.bz2 http://bioperl.org/DIST/
* perl-Bio-Graphics DEFAULT:Bio-Graphics CPAN-DEFAULT
  * perl-Bio-SamTools DEFAULT:Bio-SamTools CPAN-DEFAULT
  * perl-Bio-SamTools DEFAULT:Bio-SamTools CPAN-DEFAULT
  * perl-Bisect-Perl-UsingGit DEFAULT:Bisect-Perl-UsingGit CPAN-DEFAULT
  * perl-Bisect-Perl-UsingGit DEFAULT:Bisect-Perl-UsingGit CPAN-DEFAULT
  * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
  * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
* perl-Boost-Geometry-Utils DEFAULT:Boost-Geometry-Utils CPAN-DEFAULT
  * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
  * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
  * perl-Business-CreditCard DEFAULT:Business-CreditCard CPAN-DEFAULT
  * perl-Business-CreditCard DEFAULT:Business-CreditCard CPAN-DEFAULT
Line 1,860: Line 2,149:
  * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
  * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
  * perl-Class-Can DEFAULT:Class-Can CPAN-DEFAULT
  * perl-Class-Can DEFAULT:Class-Can CPAN-DEFAULT
* perl-Class-CSV DEFAULT:Class-CSV CPAN-DEFAULT
  * perl-Class-Data-Accessor DEFAULT:Class-Data-Accessor CPAN-DEFAULT
  * perl-Class-Data-Accessor DEFAULT:Class-Data-Accessor CPAN-DEFAULT
  * perl-Class-Exporter DEFAULT:Class-Exporter CPAN-DEFAULT
  * perl-Class-Exporter DEFAULT:Class-Exporter CPAN-DEFAULT
Line 1,869: Line 2,159:
  * perl-Class-MethodMaker DEFAULT:Class-MethodMaker CPAN-DEFAULT
  * perl-Class-MethodMaker DEFAULT:Class-MethodMaker CPAN-DEFAULT
  * perl-Class-Prototyped DEFAULT:Class-Prototyped CPAN-DEFAULT
  * perl-Class-Prototyped DEFAULT:Class-Prototyped CPAN-DEFAULT
* perl-Class-Tiny DEFAULT:Class-Tiny CPAN-DEFAULT
  * perl-Class-Unload DEFAULT:Class-Unload CPAN-DEFAULT
  * perl-Class-Unload DEFAULT:Class-Unload CPAN-DEFAULT
  * perl-Class-XSAccessor DEFAULT:Class-XSAccessor CPAN-DEFAULT
  * perl-Class-XSAccessor DEFAULT:Class-XSAccessor CPAN-DEFAULT
Line 1,881: Line 2,172:
  * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
  * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
  * perl-Config-Simple DEFAULT:Config-Simple CPAN-DEFAULT
  * perl-Config-Simple DEFAULT:Config-Simple CPAN-DEFAULT
* perl-constant DEFAULT:constant CPAN-DEFAULT
  * perl-constant-defer DEFAULT:constant-defer CPAN-DEFAULT
  * perl-constant-defer DEFAULT:constant-defer CPAN-DEFAULT
* perl-constant-tiny DEFAULT:constant-tiny CPAN-DEFAULT
  * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
  * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
* perl-Convert-BER CPAN-DEFAULT CPAN-DEFAULT
  * perl-Convert-NLS_DATE_FORMAT DEFAULT:Convert-NLS_DATE_FORMAT CPAN-DEFAULT
  * perl-Convert-NLS_DATE_FORMAT DEFAULT:Convert-NLS_DATE_FORMAT CPAN-DEFAULT
  * perl-Coro DEFAULT:Coro CPAN-DEFAULT
  * perl-Coro DEFAULT:Coro CPAN-DEFAULT
  * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
  * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
* perl-CPAN-FindDependencies DEFAULT:CPAN-FindDependencies CPAN-DEFAULT
  * perl-CPAN-Inject DEFAULT:CPAN-Inject CPAN-DEFAULT
  * perl-CPAN-Inject DEFAULT:CPAN-Inject CPAN-DEFAULT
  * perl-CPAN-Mini DEFAULT:CPAN-Mini CPAN-DEFAULT
  * perl-CPAN-Mini DEFAULT:CPAN-Mini CPAN-DEFAULT
Line 1,893: Line 2,188:
  * perl-CPANPLUS-Shell-Default-Plugins-RT DEFAULT:CPANPLUS-Shell-Default-Plugins-RT CPAN-DEFAULT
  * perl-CPANPLUS-Shell-Default-Plugins-RT DEFAULT:CPANPLUS-Shell-Default-Plugins-RT CPAN-DEFAULT
  * perl-criticism DEFAULT:criticism CPAN-DEFAULT
  * perl-criticism DEFAULT:criticism CPAN-DEFAULT
* perl-Crypt-Blowfish DEFAULT:Crypt-Blowfish CPAN-DEFAULT
  * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber CPAN-DEFAULT
  * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber CPAN-DEFAULT
  * perl-Crypt-GeneratePassword DEFAULT:Crypt-GeneratePassword CPAN-DEFAULT
  * perl-Crypt-GeneratePassword DEFAULT:Crypt-GeneratePassword CPAN-DEFAULT
Line 1,910: Line 2,206:
  * perl-Danga-Socket DEFAULT:Danga-Socket CPAN-DEFAULT
  * perl-Danga-Socket DEFAULT:Danga-Socket CPAN-DEFAULT
  * perl-Data-Dumper DEFAULT:Data-Dumper CPAN-DEFAULT
  * perl-Data-Dumper DEFAULT:Data-Dumper CPAN-DEFAULT
* perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
  * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
  * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
  * perl-Data-Float DEFAULT:Data-Float CPAN-DEFAULT
  * perl-Data-Float DEFAULT:Data-Float CPAN-DEFAULT
Line 1,917: Line 2,212:
  * perl-Data-Hierarchy DEFAULT:Data-Hierarchy CPAN-DEFAULT
  * perl-Data-Hierarchy DEFAULT:Data-Hierarchy CPAN-DEFAULT
  * perl-Data-ICal DEFAULT:Data-ICal CPAN-DEFAULT
  * perl-Data-ICal DEFAULT:Data-ICal CPAN-DEFAULT
* perl-Data-MessagePack DEFAULT:Data-MessagePack CPAN-DEFAULT
  * perl-Data-OptList DEFAULT:Data-OptList CPAN-DEFAULT
  * perl-Data-OptList DEFAULT:Data-OptList CPAN-DEFAULT
  * perl-Data-Peek DEFAULT:Data-Peek CPAN-DEFAULT
  * perl-Data-Peek DEFAULT:Data-Peek CPAN-DEFAULT
Line 1,944: Line 2,240:
  * perl-DateTime-TimeZone DEFAULT:DateTime-TimeZone CPAN-DEFAULT
  * perl-DateTime-TimeZone DEFAULT:DateTime-TimeZone CPAN-DEFAULT
  * perl-DateTime-Tiny DEFAULT:DateTime-Tiny CPAN-DEFAULT
  * perl-DateTime-Tiny DEFAULT:DateTime-Tiny CPAN-DEFAULT
  * perl-DBD-AnyData DEFAULT:DBD-AnyData CPAN-DEFAULT
  * perl-DB_File DEFAULT:DB_File CPAN-DEFAULT
  * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
  * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
  * perl-DBD-Mock DEFAULT:DBD-Mock CPAN-DEFAULT
  * perl-DBD-Mock DEFAULT:DBD-Mock CPAN-DEFAULT
  * perl-DBD-Multi DEFAULT:DBD-Multi CPAN-DEFAULT
  * perl-DBD-Multi DEFAULT:DBD-Multi CPAN-DEFAULT
  * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
  * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
* perl-DBD-ODBC DEFAULT:DBD-ODBC CPAN-DEFAULT
  * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
  * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
  * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
  * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
  * perl-DBI DEFAULT:DBI CPAN-DEFAULT
  * perl-DBI DEFAULT:DBI CPAN-DEFAULT
  * perl-DBI-Dumper DEFAULT:DBI-Dumper CPAN-DEFAULT
  * perl-DBI-Dumper DEFAULT:DBI-Dumper CPAN-DEFAULT
* perl-DBIx-DBSchema DEFAULT:DBIx-DBSchema CPAN-DEFAULT
  * perl-DBIx-POS DEFAULT:DBIx-POS CPAN-DEFAULT
  * perl-DBIx-POS DEFAULT:DBIx-POS CPAN-DEFAULT
  * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
  * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
Line 1,958: Line 2,256:
  * perl-Debug-Client DEFAULT:Debug-Client CPAN-DEFAULT
  * perl-Debug-Client DEFAULT:Debug-Client CPAN-DEFAULT
  * perl-Declare-Constraints-Simple DEFAULT:Declare-Constraints-Simple CPAN-DEFAULT
  * perl-Declare-Constraints-Simple DEFAULT:Declare-Constraints-Simple CPAN-DEFAULT
* perl-DepGen-Perl-Tests perl-DepGen-Perl-Tests-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/perl-DepGen-Perl-Tests/
  * perl-Devel-Autoflush DEFAULT:Devel-Autoflush CPAN-DEFAULT
  * perl-Devel-Autoflush DEFAULT:Devel-Autoflush CPAN-DEFAULT
  * perl-Devel-CallChecker DEFAULT:Devel-CallChecker CPAN-DEFAULT
  * perl-Devel-CallChecker DEFAULT:Devel-CallChecker CPAN-DEFAULT
Line 1,967: Line 2,266:
  * perl-Devel-GlobalDestruction DEFAULT:Devel-GlobalDestruction CPAN-DEFAULT
  * perl-Devel-GlobalDestruction DEFAULT:Devel-GlobalDestruction CPAN-DEFAULT
  * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
  * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
* perl-Devel-Refcount DEFAULT:Devel-Refcount CPAN-DEFAULT
  * perl-Devel-Size DEFAULT:Devel-Size CPAN-DEFAULT
  * perl-Devel-Size DEFAULT:Devel-Size CPAN-DEFAULT
  * perl-Devel-StringInfo DEFAULT:Devel-StringInfo CPAN-DEFAULT
  * perl-Devel-StringInfo DEFAULT:Devel-StringInfo CPAN-DEFAULT
Line 1,973: Line 2,273:
  * perl-Digest-CRC DEFAULT:Digest-CRC CPAN-DEFAULT
  * perl-Digest-CRC DEFAULT:Digest-CRC CPAN-DEFAULT
  * perl-Digest-HMAC DEFAULT:Digest-HMAC CPAN-DEFAULT
  * perl-Digest-HMAC DEFAULT:Digest-HMAC CPAN-DEFAULT
* perl-Digest-MD5 DEFAULT:Digest-MD5 CPAN-DEFAULT
  * perl-Digest-SHA DEFAULT:Digest-SHA CPAN-DEFAULT
  * perl-Digest-SHA DEFAULT:Digest-SHA CPAN-DEFAULT
  * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
  * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
Line 1,981: Line 2,282:
  * perl-Encode-JP-Mobile DEFAULT:Encode-JP-Mobile CPAN-DEFAULT
  * perl-Encode-JP-Mobile DEFAULT:Encode-JP-Mobile CPAN-DEFAULT
  * perl-Encode-Locale DEFAULT:Encode-Locale CPAN-DEFAULT
  * perl-Encode-Locale DEFAULT:Encode-Locale CPAN-DEFAULT
* perl-Env DEFAULT:Env CPAN-DEFAULT
  * perl-EV DEFAULT:EV CPAN-DEFAULT:EV
  * perl-EV DEFAULT:EV CPAN-DEFAULT:EV
  * perl-Eval-Context DEFAULT:Eval-Context CPAN-DEFAULT
  * perl-Eval-Context DEFAULT:Eval-Context CPAN-DEFAULT
* perl-Event-RPC DEFAULT:Event-RPC CPAN-DEFAULT
* perl-experimental DEFAULT:experimental CPAN-DEFAULT
* perl-Exporter DEFAULT:Exporter CPAN-DEFAULT
  * perl-Exporter-Declare DEFAULT:Exporter-Declare CPAN-DEFAULT
  * perl-Exporter-Declare DEFAULT:Exporter-Declare CPAN-DEFAULT
  * perl-ExtUtils-CChecker DEFAULT:ExtUtils-CChecker CPAN-DEFAULT
  * perl-ExtUtils-CChecker DEFAULT:ExtUtils-CChecker CPAN-DEFAULT
Line 1,992: Line 2,297:
  * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage http://backpan.perl.org/authors/id/S/SM/SMPETERS/
  * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage http://backpan.perl.org/authors/id/S/SM/SMPETERS/
  * perl-ExtUtils-Manifest DEFAULT:ExtUtils-Manifest CPAN-DEFAULT
  * perl-ExtUtils-Manifest DEFAULT:ExtUtils-Manifest CPAN-DEFAULT
* perl-ExtUtils-ParseXS DEFAULT:ExtUtils-ParseXS CPAN-DEFAULT
  * perl-ExtUtils-Typemaps-Default DEFAULT:ExtUtils-Typemaps-Default CPAN-DEFAULT
  * perl-ExtUtils-Typemaps-Default DEFAULT:ExtUtils-Typemaps-Default CPAN-DEFAULT
  * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
  * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
Line 2,003: Line 2,309:
  * perl-File-DesktopEntry DEFAULT:File-DesktopEntry CPAN-DEFAULT
  * perl-File-DesktopEntry DEFAULT:File-DesktopEntry CPAN-DEFAULT
  * perl-File-ExtAttr DEFAULT:File-ExtAttr CPAN-DEFAULT
  * perl-File-ExtAttr DEFAULT:File-ExtAttr CPAN-DEFAULT
* perl-File-Fetch DEFAULT:File-Fetch CPAN-DEFAULT
  * perl-File-Find-Iterator DEFAULT:File-Find-Iterator CPAN-DEFAULT
  * perl-File-Find-Iterator DEFAULT:File-Find-Iterator CPAN-DEFAULT
* perl-File-Find-Object DEFAULT:File-Find-Object CPAN-DEFAULT
* perl-File-Find-Object-Rule DEFAULT:File-Find-Object-Rule CPAN-DEFAULT
  * perl-File-Find-Rule DEFAULT:File-Find-Rule CPAN-DEFAULT
  * perl-File-Find-Rule DEFAULT:File-Find-Rule CPAN-DEFAULT
  * perl-File-Find-Rule-VCS DEFAULT:File-Find-Rule-VCS CPAN-DEFAULT
  * perl-File-Find-Rule-VCS DEFAULT:File-Find-Rule-VCS CPAN-DEFAULT
Line 2,012: Line 2,321:
  * perl-File-Next DEFAULT:File-Next CPAN-DEFAULT
  * perl-File-Next DEFAULT:File-Next CPAN-DEFAULT
  * perl-File-NFSLock DEFAULT:File-NFSLock CPAN-DEFAULT
  * perl-File-NFSLock DEFAULT:File-NFSLock CPAN-DEFAULT
* perl-File-Path DEFAULT:File-Path CPAN-DEFAULT
  * perl-File-PathList DEFAULT:File-PathList CPAN-DEFAULT
  * perl-File-PathList DEFAULT:File-PathList CPAN-DEFAULT
  * perl-File-pushd DEFAULT:File-pushd CPAN-DEFAULT
  * perl-File-pushd DEFAULT:File-pushd CPAN-DEFAULT
Line 2,017: Line 2,327:
  * perl-File-ShareDir DEFAULT:File-ShareDir CPAN-DEFAULT
  * perl-File-ShareDir DEFAULT:File-ShareDir CPAN-DEFAULT
  * perl-File-ShareDir-PAR DEFAULT:File-ShareDir-PAR CPAN-DEFAULT
  * perl-File-ShareDir-PAR DEFAULT:File-ShareDir-PAR CPAN-DEFAULT
* perl-File-ShareDir-ProjectDistDir DEFAULT:File-ShareDir-ProjectDistDir CPAN-DEFAULT
  * perl-File-Tee DEFAULT:File-Tee CPAN-DEFAULT
  * perl-File-Tee DEFAULT:File-Tee CPAN-DEFAULT
* perl-File-Temp DEFAULT:File-Temp CPAN-DEFAULT
  * perl-Filesys-Df DEFAULT:Filesys-Df CPAN-DEFAULT
  * perl-Filesys-Df DEFAULT:Filesys-Df CPAN-DEFAULT
  * perl-Filesys-Notify-Simple DEFAULT:Filesys-Notify-Simple CPAN-DEFAULT
  * perl-Filesys-Notify-Simple DEFAULT:Filesys-Notify-Simple CPAN-DEFAULT
Line 2,032: Line 2,344:
  * perl-Gearman-Client-Async DEFAULT:Gearman-Client-Async CPAN-DEFAULT
  * perl-Gearman-Client-Async DEFAULT:Gearman-Client-Async CPAN-DEFAULT
  * perl-Gearman-Server DEFAULT:Gearman-Server CPAN-DEFAULT
  * perl-Gearman-Server DEFAULT:Gearman-Server CPAN-DEFAULT
* perl-Getopt-Long DEFAULT:Getopt-Long CPAN-DEFAULT
* perl-Getopt-Lucid DEFAULT:Getopt-Lucid CPAN-DEFAULT
  * perl-Glib-Object-Introspection DEFAULT:Glib-Object-Introspection CPAN-DEFAULT
  * perl-Glib-Object-Introspection DEFAULT:Glib-Object-Introspection CPAN-DEFAULT
  * perl-Gnome2 DEFAULT:Gnome2 CPAN-DEFAULT
  * perl-Gnome2 DEFAULT:Gnome2 CPAN-DEFAULT
Line 2,045: Line 2,359:
  * perl-Gtk2-Ex-Carp DEFAULT:Gtk2-Ex-Carp CPAN-DEFAULT
  * perl-Gtk2-Ex-Carp DEFAULT:Gtk2-Ex-Carp CPAN-DEFAULT
  * perl-Gtk2-Ex-Dialogs DEFAULT:Gtk2-Ex-Dialogs CPAN-DEFAULT
  * perl-Gtk2-Ex-Dialogs DEFAULT:Gtk2-Ex-Dialogs CPAN-DEFAULT
* perl-Gtk2-Ex-FormFactory DEFAULT:Gtk2-Ex-FormFactory CPAN-DEFAULT
  * perl-Gtk2-Ex-Simple-List DEFAULT:Gtk2-Ex-Simple-List CPAN-DEFAULT
  * perl-Gtk2-Ex-Simple-List DEFAULT:Gtk2-Ex-Simple-List CPAN-DEFAULT
  * perl-Gtk2-Ex-Utils DEFAULT:Gtk2-Ex-Utils CPAN-DEFAULT
  * perl-Gtk2-Ex-Utils DEFAULT:Gtk2-Ex-Utils CPAN-DEFAULT
Line 2,054: Line 2,369:
  * perl-Gtk2-TrayIcon DEFAULT:Gtk2-TrayIcon CPAN-DEFAULT
  * perl-Gtk2-TrayIcon DEFAULT:Gtk2-TrayIcon CPAN-DEFAULT
  * perl-Gtk3 DEFAULT:Gtk3 CPAN-DEFAULT
  * perl-Gtk3 DEFAULT:Gtk3 CPAN-DEFAULT
* perl-Guard DEFAULT:Guard CPAN-DEFAULT
  * perl-Ham-Reference-QRZ DEFAULT:Ham-Reference-QRZ CPAN-DEFAULT
  * perl-Ham-Reference-QRZ DEFAULT:Ham-Reference-QRZ CPAN-DEFAULT
  * perl-Hardware-Verilog-Parser DEFAULT:Hardware-Verilog-Parser CPAN-DEFAULT
  * perl-Hardware-Verilog-Parser DEFAULT:Hardware-Verilog-Parser CPAN-DEFAULT
Line 2,066: Line 2,382:
  * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered CPAN-DEFAULT
  * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered CPAN-DEFAULT
  * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
  * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
* perl-HTML-FormFu-MultiForm DEFAULT:HTML-FormFu-MultiForm CPAN-DEFAULT
  * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
  * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
  * perl-HTML-PrettyPrinter DEFAULT:HTML-PrettyPrinter CPAN-DEFAULT
  * perl-HTML-PrettyPrinter DEFAULT:HTML-PrettyPrinter CPAN-DEFAULT
Line 2,080: Line 2,397:
  * perl-HTTP-Parser DEFAULT:HTTP-Parser CPAN-DEFAULT
  * perl-HTTP-Parser DEFAULT:HTTP-Parser CPAN-DEFAULT
  * perl-HTTP-ProxyAutoConfig DEFAULT:HTTP-ProxyAutoConfig CPAN-DEFAULT
  * perl-HTTP-ProxyAutoConfig DEFAULT:HTTP-ProxyAutoConfig CPAN-DEFAULT
* perl-HTTP-Tiny DEFAULT:HTTP-Tiny CPAN-DEFAULT
  * perl-Inline DEFAULT:Inline CPAN-DEFAULT
  * perl-Inline DEFAULT:Inline CPAN-DEFAULT
  * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
  * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
Line 2,087: Line 2,405:
  * perl-IO-HTML DEFAULT:IO-HTML CPAN-DEFAULT
  * perl-IO-HTML DEFAULT:IO-HTML CPAN-DEFAULT
  * perl-IO-InSitu DEFAULT:IO-InSitu CPAN-DEFAULT
  * perl-IO-InSitu DEFAULT:IO-InSitu CPAN-DEFAULT
* perl-IO-Interactive DEFAULT:IO-Interactive CPAN-DEFAULT
  * perl-IO-Prompt DEFAULT:IO-Prompt CPAN-DEFAULT
  * perl-IO-Prompt DEFAULT:IO-Prompt CPAN-DEFAULT
  * perl-IO-Socket-IP DEFAULT:IO-Socket-IP CPAN-DEFAULT
  * perl-IO-Socket-IP DEFAULT:IO-Socket-IP CPAN-DEFAULT
* perl-IO-Socket-PortState DEFAULT:IO-Socket-PortState CPAN-DEFAULT
  * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
  * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
  * perl-IO-TieCombine DEFAULT:IO-TieCombine CPAN-DEFAULT
  * perl-IO-TieCombine DEFAULT:IO-TieCombine CPAN-DEFAULT
Line 2,099: Line 2,419:
  * perl-Jemplate DEFAULT:Jemplate CPAN-DEFAULT
  * perl-Jemplate DEFAULT:Jemplate CPAN-DEFAULT
  * perl-JSON-Path DEFAULT:JSON-Path CPAN-DEFAULT:JSON-Path
  * perl-JSON-Path DEFAULT:JSON-Path CPAN-DEFAULT:JSON-Path
* perl-JSON-Pointer DEFAULT:JSON-Pointer CPAN-DEFAULT
* perl-L DEFAULT:L CPAN-DEFAULT
* perl-Language-Expr DEFAULT:Language-Expr CPAN-DEFAULT
  * perl-Language-Functional DEFAULT:Language-Functional CPAN-DEFAULT
  * perl-Language-Functional DEFAULT:Language-Functional CPAN-DEFAULT
  * perl-Language-Prolog-Sugar DEFAULT:Language-Prolog-Sugar CPAN-DEFAULT
  * perl-Language-Prolog-Sugar DEFAULT:Language-Prolog-Sugar CPAN-DEFAULT
Line 2,112: Line 2,435:
  * perl-Lingua-EN-Numbers DEFAULT:Lingua-EN-Numbers CPAN-DEFAULT
  * perl-Lingua-EN-Numbers DEFAULT:Lingua-EN-Numbers CPAN-DEFAULT
  * perl-Lingua-EN-Numbers-Easy DEFAULT:Lingua-EN-Numbers-Easy CPAN-DEFAULT
  * perl-Lingua-EN-Numbers-Easy DEFAULT:Lingua-EN-Numbers-Easy CPAN-DEFAULT
* perl-Lingua-EN-Numbers-Ordinate DEFAULT:Lingua-EN-Numbers-Ordinate CPAN-DEFAULT
  * perl-Linux-Inotify2 DEFAULT:Linux-Inotify2 CPAN-DEFAULT
  * perl-Linux-Inotify2 DEFAULT:Linux-Inotify2 CPAN-DEFAULT
  * perl-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT
  * perl-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT
* perl-List-AllUtils DEFAULT:List-AllUtils CPAN-DEFAULT
  * perl-List-Compare DEFAULT:List-Compare CPAN-DEFAULT
  * perl-List-Compare DEFAULT:List-Compare CPAN-DEFAULT
  * perl-Locale-Codes DEFAULT:Locale-Codes CPAN-DEFAULT
  * perl-Locale-Codes DEFAULT:Locale-Codes CPAN-DEFAULT
* perl-Locale-Maketext DEFAULT:Locale-Maketext CPAN-DEFAULT
  * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
  * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
  * perl-Locale-SubCountry DEFAULT:Locale-SubCountry CPAN-DEFAULT
  * perl-Locale-SubCountry DEFAULT:Locale-SubCountry CPAN-DEFAULT
  * perl-Log-Contextual DEFAULT:Log-Contextual CPAN-DEFAULT
  * perl-Log-Contextual DEFAULT:Log-Contextual CPAN-DEFAULT
  * perl-Log-Dispatch-Config DEFAULT:Log-Dispatch-Config CPAN-DEFAULT
  * perl-Log-Dispatch-Config DEFAULT:Log-Dispatch-Config CPAN-DEFAULT
* perl-Log-Handler DEFAULT:Log-Handler CPAN-DEFAULT
  * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
  * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
  * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT
  * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT
  * perl-Log-Message DEFAULT:Log-Message CPAN-DEFAULT
  * perl-Log-Message DEFAULT:Log-Message CPAN-DEFAULT
* perl-Log-Message-Simple DEFAULT:Log-Message-Simple CPAN-DEFAULT
* perl-Log-Report DEFAULT:Log-Report CPAN-DEFAULT
* perl-Log-Report-Optional DEFAULT:Log-Report-Optional CPAN-DEFAULT
  * perl-LWP-Authen-Wsse DEFAULT:LWP-Authen-Wsse CPAN-DEFAULT
  * perl-LWP-Authen-Wsse DEFAULT:LWP-Authen-Wsse CPAN-DEFAULT
  * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
  * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
Line 2,130: Line 2,460:
  * perl-Marpa-XS DEFAULT:Marpa-XS CPAN-DEFAULT
  * perl-Marpa-XS DEFAULT:Marpa-XS CPAN-DEFAULT
  * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
  * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
* perl-Math-Clipper DEFAULT:Math-Clipper CPAN-DEFAULT
  * perl-Math-ConvexHull DEFAULT:Math-ConvexHull CPAN-DEFAULT
  * perl-Math-ConvexHull DEFAULT:Math-ConvexHull CPAN-DEFAULT
  * perl-Math-ConvexHull-MonotoneChain DEFAULT:Math-ConvexHull-MonotoneChain CPAN-DEFAULT
  * perl-Math-ConvexHull-MonotoneChain DEFAULT:Math-ConvexHull-MonotoneChain CPAN-DEFAULT
  * perl-Math-Factor-XS DEFAULT:Math-Factor-XS CPAN-DEFAULT
  * perl-Math-Factor-XS DEFAULT:Math-Factor-XS CPAN-DEFAULT
* perl-Math-Geometry-Voronoi DEFAULT:Math-Geometry-Voronoi CPAN-DEFAULT
  * perl-Math-Libm DEFAULT:Math-Libm CPAN-DEFAULT
  * perl-Math-Libm DEFAULT:Math-Libm CPAN-DEFAULT
  * perl-Math-MatrixReal DEFAULT:Math-MatrixReal CPAN-DEFAULT
  * perl-Math-MatrixReal DEFAULT:Math-MatrixReal CPAN-DEFAULT
* perl-Math-NumSeq DEFAULT:Math-NumSeq  CPAN-DEFAULT
* perl-Math-PlanePath DEFAULT:Math-PlanePath  CPAN-DEFAULT
  * perl-Math-Prime-XS DEFAULT:Math-Prime-XS CPAN-DEFAULT
  * perl-Math-Prime-XS DEFAULT:Math-Prime-XS CPAN-DEFAULT
  * perl-Math-Random-MT-Auto DEFAULT:Math-Random-MT-Auto CPAN-DEFAULT
  * perl-Math-Random-MT-Auto DEFAULT:Math-Random-MT-Auto CPAN-DEFAULT
Line 2,145: Line 2,479:
  * perl-MIME-Lite-HTML DEFAULT:MIME-Lite-HTML CPAN-DEFAULT
  * perl-MIME-Lite-HTML DEFAULT:MIME-Lite-HTML CPAN-DEFAULT
  * perl-ModelSim-List DEFAULT:ModelSim-List CPAN-DEFAULT
  * perl-ModelSim-List DEFAULT:ModelSim-List CPAN-DEFAULT
* perl-Modern-Perl DEFAULT:Modern-Perl CPAN-DEFAULT
  * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
  * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
  * perl-Module-Build-WithXSpp DEFAULT:Module-Build-WithXSpp CPAN-DEFAULT
  * perl-Module-Build-WithXSpp DEFAULT:Module-Build-WithXSpp CPAN-DEFAULT
Line 2,162: Line 2,497:
  * perl-Module-Install-ReadmeMarkdownFromPod DEFAULT:Module-Install-ReadmeMarkdownFromPod CPAN-DEFAULT
  * perl-Module-Install-ReadmeMarkdownFromPod DEFAULT:Module-Install-ReadmeMarkdownFromPod CPAN-DEFAULT
  * perl-Module-Install-Repository DEFAULT:Module-Install-Repository CPAN-DEFAULT
  * perl-Module-Install-Repository DEFAULT:Module-Install-Repository CPAN-DEFAULT
* perl-Module-Install-TestTarget DEFAULT:Module-Install-TestTarget CPAN-DEFAULT
  * perl-Module-Install-XSUtil DEFAULT:Module-Install-XSUtil CPAN-DEFAULT
  * perl-Module-Install-XSUtil DEFAULT:Module-Install-XSUtil CPAN-DEFAULT
* perl-Module-Load DEFAULT:Module-Load CPAN-DEFAULT
  * perl-Module-Load-Conditional DEFAULT:Module-Load-Conditional CPAN-DEFAULT
  * perl-Module-Load-Conditional DEFAULT:Module-Load-Conditional CPAN-DEFAULT
  * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
  * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
Line 2,170: Line 2,505:
  * perl-Module-Package DEFAULT:Module-Package CPAN-DEFAULT
  * perl-Module-Package DEFAULT:Module-Package CPAN-DEFAULT
  * perl-Module-Pluggable DEFAULT:Module-Pluggable CPAN-DEFAULT
  * perl-Module-Pluggable DEFAULT:Module-Pluggable CPAN-DEFAULT
* perl-Module-Reader DEFAULT:Module-Reader CPAN-DEFAULT
  * perl-Module-Runtime DEFAULT:Module-Runtime CPAN-DEFAULT
  * perl-Module-Runtime DEFAULT:Module-Runtime CPAN-DEFAULT
  * perl-Module-ScanDeps DEFAULT:Module-ScanDeps CPAN-DEFAULT
  * perl-Module-ScanDeps DEFAULT:Module-ScanDeps CPAN-DEFAULT
Line 2,178: Line 2,514:
  * perl-MogileFS-Utils DEFAULT:MogileFS-Utils CPAN-DEFAULT
  * perl-MogileFS-Utils DEFAULT:MogileFS-Utils CPAN-DEFAULT
  * perl-mogilefs-server DEFAULT:mogilefs-server CPAN-DEFAULT
  * perl-mogilefs-server DEFAULT:mogilefs-server CPAN-DEFAULT
* perl-Mon CPAN-DEFAULT CPAN-DEFAULT
  * perl-MongoDB DEFAULT:MongoDB CPAN-DEFAULT
  * perl-MongoDB DEFAULT:MongoDB CPAN-DEFAULT
  * perl-Monotone-AutomateStdio DEFAULT:Monotone-AutomateStdio CPAN-DEFAULT
  * perl-Monotone-AutomateStdio DEFAULT:Monotone-AutomateStdio CPAN-DEFAULT
  * perl-MooseX-AttributeShortcuts DEFAULT:MooseX-AttributeShortcuts CPAN-DEFAULT
  * perl-MooseX-AttributeShortcuts DEFAULT:MooseX-AttributeShortcuts CPAN-DEFAULT
  * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
  * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
* perl-MooseX-CoercePerAttribute DEFAULT:MooseX-CoercePerAttribute CPAN-DEFAULT
  * perl-MooseX-GlobRef DEFAULT:MooseX-GlobRef CPAN-DEFAULT
  * perl-MooseX-GlobRef DEFAULT:MooseX-GlobRef CPAN-DEFAULT
  * perl-MooseX-MarkAsMethods DEFAULT:MooseX-MarkAsMethods CPAN-DEFAULT
  * perl-MooseX-MarkAsMethods DEFAULT:MooseX-MarkAsMethods CPAN-DEFAULT
* perl-MooseX-TrackDirty-Attributes DEFAULT:MooseX-TrackDirty-Attributes CPAN-DEFAULT
  * perl-MooseX-Types-DateTime-ButMaintained DEFAULT:MooseX-Types-DateTime-ButMaintained CPAN-DEFAULT
  * perl-MooseX-Types-DateTime-ButMaintained DEFAULT:MooseX-Types-DateTime-ButMaintained CPAN-DEFAULT
* perl-MooseX-Types-DateTime-MoreCoercions DEFAULT:MooseX-Types-DateTime-MoreCoercions CPAN-DEFAULT
  * perl-MooseX-Types-DateTimeX DEFAULT:MooseX-Types-DateTimeX CPAN-DEFAULT
  * perl-MooseX-Types-DateTimeX DEFAULT:MooseX-Types-DateTimeX CPAN-DEFAULT
  * perl-Mozilla-CA DEFAULT:Mozilla-CA CPAN-DEFAULT
  * perl-Mozilla-CA DEFAULT:Mozilla-CA CPAN-DEFAULT
Line 2,192: Line 2,530:
  * perl-Nagios-Plugin-WWW-Mechanize DEFAULT:Nagios-Plugin-WWW-Mechanize CPAN-DEFAULT
  * perl-Nagios-Plugin-WWW-Mechanize DEFAULT:Nagios-Plugin-WWW-Mechanize CPAN-DEFAULT
  * perl-NetAddr-IP DEFAULT:NetAddr-IP CPAN-DEFAULT
  * perl-NetAddr-IP DEFAULT:NetAddr-IP CPAN-DEFAULT
* perl-Net-Amazon-EC2 CPAN-DEFAULT CPAN-DEFAULT
* perl-Net-Amazon-EC2-Metadata CPAN-DEFAULT CPAN-DEFAULT
* perl-Net-ARP DEFAULT:Net-ARP CPAN-DEFAULT
  * perl-Net-CUPS DEFAULT:Net-CUPS CPAN-DEFAULT
  * perl-Net-CUPS DEFAULT:Net-CUPS CPAN-DEFAULT
  * perl-Net-DBus DEFAULT:Net-DBus CPAN-DEFAULT
  * perl-Net-DBus DEFAULT:Net-DBus CPAN-DEFAULT
Line 2,202: Line 2,543:
  * perl-Net-HTTP DEFAULT:Net-HTTP CPAN-DEFAULT
  * perl-Net-HTTP DEFAULT:Net-HTTP CPAN-DEFAULT
  * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
  * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
* perl-Net-IP-Minimal DEFAULT:Net-IP-Minimal CPAN-DEFAULT
  * perl-Net-IRC DEFAULT:Net-IRC CPAN-DEFAULT
  * perl-Net-IRC DEFAULT:Net-IRC CPAN-DEFAULT
  * perl-Net-Jabber DEFAULT:Net-Jabber CPAN-DEFAULT
  * perl-Net-Jabber DEFAULT:Net-Jabber CPAN-DEFAULT
  * perl-Net-Lite-FTP DEFAULT:Net-Lite-FTP CPAN-DEFAULT
  * perl-Net-Lite-FTP DEFAULT:Net-Lite-FTP CPAN-DEFAULT
  * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
  * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
* perl-Net-Random DEFAULT:Net-Random CPAN-DEFAULT
  * perl-Net-Server-Coro DEFAULT:Net-Server-Coro CPAN-DEFAULT:Net-Server-Coro
  * perl-Net-Server-Coro DEFAULT:Net-Server-Coro CPAN-DEFAULT:Net-Server-Coro
  * perl-Net-SMTP-SSL DEFAULT:Net-SMTP-SSL CPAN-DEFAULT
  * perl-Net-SMTP-SSL DEFAULT:Net-SMTP-SSL CPAN-DEFAULT
  * perl-Net-SSH2 DEFAULT:Net-SSH2 CPAN-DEFAULT
  * perl-Net-SSH2 DEFAULT:Net-SSH2 CPAN-DEFAULT
* perl-Net-Stomp CPAN-DEFAULT CPAN-DEFAULT
  * perl-Net-Twitter DEFAULT:Net-Twitter CPAN-DEFAULT
  * perl-Net-Twitter DEFAULT:Net-Twitter CPAN-DEFAULT
  * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
  * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
  * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
  * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
  * perl-Net-XMPP DEFAULT:Net-XMPP CPAN-DEFAULT
  * perl-Net-XMPP DEFAULT:Net-XMPP CPAN-DEFAULT
* perl-Number-WithError DEFAULT:Number-WithError CPAN-DEFAULT
  * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
  * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
  * perl-Object-InsideOut DEFAULT:Object-InsideOut CPAN-DEFAULT
  * perl-Object-InsideOut DEFAULT:Object-InsideOut CPAN-DEFAULT
* perl-Object-Tiny DEFAULT:Object-Tiny CPAN-DEFAULT
  * perl-Olson-Abbreviations DEFAULT:Olson-Abbreviations CPAN-DEFAULT
  * perl-Olson-Abbreviations DEFAULT:Olson-Abbreviations CPAN-DEFAULT
* perl-OpenGL CPAN-DEFAULT CPAN-DEFAULT
* perl-OpenOffice-UNO CPAN-DEFAULT CPAN-DEFAULT
  * perl-ORLite DEFAULT:ORLite CPAN-DEFAULT
  * perl-ORLite DEFAULT:ORLite CPAN-DEFAULT
  * perl-ORLite-Migrate DEFAULT:ORLite-Migrate CPAN-DEFAULT
  * perl-ORLite-Migrate DEFAULT:ORLite-Migrate CPAN-DEFAULT
Line 2,229: Line 2,577:
  * perl-Parse-Yapp DEFAULT:Parse-Yapp CPAN-DEFAULT
  * perl-Parse-Yapp DEFAULT:Parse-Yapp CPAN-DEFAULT
  * perl-PathTools DEFAULT:PathTools CPAN-DEFAULT
  * perl-PathTools DEFAULT:PathTools CPAN-DEFAULT
* perl-Path-FindDev DEFAULT:Path-FindDev CPAN-DEFAULT
* perl-Path-IsDev DEFAULT:Path-IsDev CPAN-DEFAULT
  * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
  * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
  * perl-PDF-Haru DEFAULT:PDF-Haru CPAN-DEFAULT
  * perl-PDF-Haru DEFAULT:PDF-Haru CPAN-DEFAULT
  * perl-PDF-Reuse DEFAULT:PDF-Reuse CPAN-DEFAULT
  * perl-PDF-Reuse DEFAULT:PDF-Reuse CPAN-DEFAULT
  * perl-PDL DEFAULT:PDL CPAN-DEFAULT
  * perl-PDL DEFAULT:PDL CPAN-DEFAULT
* perl-PDL-Graphics-PLplot DEFAULT:PDL-Graphics-PLplot CPAN-DEFAULT
  * perl-Perlilog DEFAULT:Perlilog CPAN-DEFAULT
  * perl-Perlilog DEFAULT:Perlilog CPAN-DEFAULT
  * perl-Perlbal-XS-HTTPHeaders DEFAULT:Perlbal-XS-HTTPHeaders CPAN-DEFAULT
  * perl-Perlbal-XS-HTTPHeaders DEFAULT:Perlbal-XS-HTTPHeaders CPAN-DEFAULT
Line 2,250: Line 2,601:
  * perl-Perl-Critic-Tics DEFAULT:Perl-Critic-Tics CPAN-DEFAULT
  * perl-Perl-Critic-Tics DEFAULT:Perl-Critic-Tics CPAN-DEFAULT
  * perl-Perl-Metrics-Simple DEFAULT:Perl-Metrics-Simple CPAN-DEFAULT
  * perl-Perl-Metrics-Simple DEFAULT:Perl-Metrics-Simple CPAN-DEFAULT
* perl-Perl6-Slurp DEFAULT:Perl6-Slurp CPAN-DEFAULT
* perl-perlindex DEFAULT:perlindex CPAN-DEFAULT
  * perl-PerlIO-eol DEFAULT:PerlIO-eol CPAN-DEFAULT
  * perl-PerlIO-eol DEFAULT:PerlIO-eol CPAN-DEFAULT
  * perl-PerlIO-Layers DEFAULT:PerlIO-Layers CPAN-DEFAULT
  * perl-PerlIO-Layers DEFAULT:PerlIO-Layers CPAN-DEFAULT
Line 2,257: Line 2,610:
  * perl-PerlIO-via-symlink DEFAULT:PerlIO-via-symlink CPAN-DEFAULT
  * perl-PerlIO-via-symlink DEFAULT:PerlIO-via-symlink CPAN-DEFAULT
  * perl-pip DEFAULT:pip CPAN-DEFAULT
  * perl-pip DEFAULT:pip CPAN-DEFAULT
* perl-Plack-Middleware-Deflater DEFAULT:Plack-Middleware-Deflater CPAN-DEFAULT
  * perl-PlRPC DEFAULT:PlRPC CPAN-DEFAULT
  * perl-PlRPC DEFAULT:PlRPC CPAN-DEFAULT
  * perl-Pod-Abstract DEFAULT:Pod-Abstract CPAN-DEFAULT
  * perl-Pod-Abstract DEFAULT:Pod-Abstract CPAN-DEFAULT
Line 2,266: Line 2,620:
  * perl-Pod-Parser DEFAULT:Pod-Parser CPAN-DEFAULT
  * perl-Pod-Parser DEFAULT:Pod-Parser CPAN-DEFAULT
  * perl-Pod-Perldoc DEFAULT:Pod-Perldoc CPAN-DEFAULT
  * perl-Pod-Perldoc DEFAULT:Pod-Perldoc CPAN-DEFAULT
* perl-Pod-Simple DEFAULT:Pod-Simple CPAN-DEFAULT
  * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
  * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
  * perl-Pod-Spell-CommonMistakes DEFAULT:Pod-Spell-CommonMistakes CPAN-DEFAULT
  * perl-Pod-Spell-CommonMistakes DEFAULT:Pod-Spell-CommonMistakes CPAN-DEFAULT
Line 2,286: Line 2,641:
  * perl-POE-Component-Logger DEFAULT:POE-Component-Logger CPAN-DEFAULT
  * perl-POE-Component-Logger DEFAULT:POE-Component-Logger CPAN-DEFAULT
  * perl-POE-Component-Pluggable DEFAULT:POE-Component-Pluggable CPAN-DEFAULT
  * perl-POE-Component-Pluggable DEFAULT:POE-Component-Pluggable CPAN-DEFAULT
* perl-POE-Component-Resolver DEFAULT:POE-Component-Resolver CPAN-DEFAULT
  * perl-POE-Component-Server-HTTP DEFAULT:POE-Component-Server-HTTP CPAN-DEFAULT
  * perl-POE-Component-Server-HTTP DEFAULT:POE-Component-Server-HTTP CPAN-DEFAULT
  * perl-POE-Component-Server-SimpleHTTP DEFAULT:POE-Component-Server-SimpleHTTP CPAN-DEFAULT
  * perl-POE-Component-Server-SimpleHTTP DEFAULT:POE-Component-Server-SimpleHTTP CPAN-DEFAULT
Line 2,299: Line 2,655:
  * perl-POE-Test-Loops DEFAULT:POE-Test-Loops CPAN-DEFAULT
  * perl-POE-Test-Loops DEFAULT:POE-Test-Loops CPAN-DEFAULT
  * perl-POE-Wheel-Null DEFAULT:POE-Wheel-Null CPAN-DEFAULT
  * perl-POE-Wheel-Null DEFAULT:POE-Wheel-Null CPAN-DEFAULT
  * perl-POSIX-AtFork DEFAULT:POSIX-AtFork CPAN-DEFTAULT
  * perl-POSIX-AtFork DEFAULT:POSIX-AtFork CPAN-DEFAULT
* perl-POSIX-strptime CPAN-DEFAULT CPAN-DEFAULT
  * perl-PPI-PowerToys DEFAULT:PPI-PowerToys CPAN-DEFAULT
  * perl-PPI-PowerToys DEFAULT:PPI-PowerToys CPAN-DEFAULT
  * perl-PPI-XS DEFAULT:PPI-XS CPAN-DEFAULT
  * perl-PPI-XS DEFAULT:PPI-XS CPAN-DEFAULT
Line 2,321: Line 2,678:
  * perl-Scalar-Construct DEFAULT:Scalar-Construct CPAN-DEFAULT
  * perl-Scalar-Construct DEFAULT:Scalar-Construct CPAN-DEFAULT
  * perl-Scriptalicious DEFAULT:Scriptalicious CPAN-DEFAULT
  * perl-Scriptalicious DEFAULT:Scriptalicious CPAN-DEFAULT
* perl-Set-Array DEFAULT:Set-Array CPAN-DEFAULT
  * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
  * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
  * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
  * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
Line 2,327: Line 2,685:
  * perl-smartmatch DEFAULT:smartmatch CPAN-DEFAULT
  * perl-smartmatch DEFAULT:smartmatch CPAN-DEFAULT
  * perl-smartmatch-engine-core DEFAULT:smartmatch-engine-core CPAN-DEFAULT
  * perl-smartmatch-engine-core DEFAULT:smartmatch-engine-core CPAN-DEFAULT
* perl-SNMP-Info DEFAULT:SNMP-Info CPAN-DEFAULT
  * perl-SOAP-Lite DEFAULT:SOAP-Lite CPAN-DEFAULT
  * perl-SOAP-Lite DEFAULT:SOAP-Lite CPAN-DEFAULT
  * perl-Socket DEFAULT:Socket CPAN-DEFAULT
  * perl-Socket DEFAULT:Socket CPAN-DEFAULT
* perl-Socket6 DEFAULT:Socket6 CPAN-DEFAULT
* perl-Socket-MsgHdr DEFAULT:Socket-MsgHdr CPAN-DEFAULT
  * perl-Socket-Netlink DEFAULT:Socket-Netlink CPAN-DEFAULT:Socket-Netlink
  * perl-Socket-Netlink DEFAULT:Socket-Netlink CPAN-DEFAULT:Socket-Netlink
  * perl-Socket-Netlink-Route DEFAULT:Socket-Netlink-Route CPAN-DEFAULT:Socket-Netlink-Route
  * perl-Socket-Netlink-Route DEFAULT:Socket-Netlink-Route CPAN-DEFAULT:Socket-Netlink-Route
  * perl-Software-License DEFAULT:Software-License CPAN-DEFAULT
  * perl-Software-License DEFAULT:Software-License CPAN-DEFAULT
* perl-SOOT DEFAULT:SOOT CPAN-DEFAULT
  * perl-Sort-Naturally DEFAULT:Sort-Naturally CPAN-DEFAULT
  * perl-Sort-Naturally DEFAULT:Sort-Naturally CPAN-DEFAULT
* perl-Spellunker DEFAULT:Spellunker CPAN-DEFAULT
  * perl-Spreadsheet-ParseExcel-Simple DEFAULT:Spreadsheet-ParseExcel-Simple CPAN-DEFAULT
  * perl-Spreadsheet-ParseExcel-Simple DEFAULT:Spreadsheet-ParseExcel-Simple CPAN-DEFAULT
  * perl-Spreadsheet-WriteExcel-Simple DEFAULT:Spreadsheet-WriteExcel-Simple CPAN-DEFAULT
  * perl-Spreadsheet-WriteExcel-Simple DEFAULT:Spreadsheet-WriteExcel-Simple CPAN-DEFAULT
Line 2,340: Line 2,703:
  * perl-SQL-Statement DEFAULT:SQL-Statement CPAN-DEFAULT
  * perl-SQL-Statement DEFAULT:SQL-Statement CPAN-DEFAULT
  * perl-Statistics-Basic DEFAULT:Statistics-Basic CPAN-DEFAULT
  * perl-Statistics-Basic DEFAULT:Statistics-Basic CPAN-DEFAULT
* perl-Statistics-CaseResampling DEFAULT:Statistics-CaseResampling CPAN-DEFAULT
  * perl-Statistics-Contingency DEFAULT:Statistics-Contingency CPAN-DEFAULT:Statistics-Contingency
  * perl-Statistics-Contingency DEFAULT:Statistics-Contingency CPAN-DEFAULT:Statistics-Contingency
* perl-STD DEFAULT:STD CPAN-DEFAULT
* perl-Storable DEFAULT:Storable CPAN-DEFAULT
* perl-Storm DEFAULT:Storm CPAN-DEFAULT
  * perl-String-Base DEFAULT:String-Base CPAN-DEFAULT
  * perl-String-Base DEFAULT:String-Base CPAN-DEFAULT
  * perl-String-CRC32 DEFAULT:String-CRC32 CPAN-DEFAULT
  * perl-String-CRC32 DEFAULT:String-CRC32 CPAN-DEFAULT
Line 2,350: Line 2,717:
  * perl-Syntax-Highlight-Engine-Kate DEFAULT:Syntax-Highlight-Engine-Kate CPAN-DEFAULT
  * perl-Syntax-Highlight-Engine-Kate DEFAULT:Syntax-Highlight-Engine-Kate CPAN-DEFAULT
  * perl-Syntax-Highlight-Perl6 DEFAULT:Syntax-Highlight-Perl6 CPAN-DEFAULT
  * perl-Syntax-Highlight-Perl6 DEFAULT:Syntax-Highlight-Perl6 CPAN-DEFAULT
* perl-Syntax-Keyword-Junction DEFAULT:Syntax-Keyword-Junction CPAN-DEFAULT
  * perl-Sys-Syscall DEFAULT:Sys-Syscall CPAN-DEFAULT
  * perl-Sys-Syscall DEFAULT:Sys-Syscall CPAN-DEFAULT
* perl-Sys-Syslog DEFAULT:Sys-Syslog CPAN-DEFAULT
  * perl-Sys-Virt DEFAULT:Sys-Virt CPAN-DEFAULT
  * perl-Sys-Virt DEFAULT:Sys-Virt CPAN-DEFAULT
  * perl-SystemC-Vregs DEFAULT:SystemC-Vregs CPAN-DEFAULT
  * perl-SystemC-Vregs DEFAULT:SystemC-Vregs CPAN-DEFAULT
  * perl-TAP-Formatter-HTML DEFAULT:TAP-Formatter-HTML CPAN-DEFAULT
  * perl-TAP-Formatter-HTML DEFAULT:TAP-Formatter-HTML CPAN-DEFAULT
  * perl-TAP-Formatter-JUnit DEFAULT:TAP-Formatter-JUnit CPAN-DEFAULT
  * perl-TAP-Formatter-JUnit DEFAULT:TAP-Formatter-JUnit CPAN-DEFAULT
* perl-TAP-SimpleOutput DEFAULT:TAP-SimpleOutput CPAN-DEFAULT
* perl-Tapper DEFAULT:Tapper CPAN-DEFAULT
  * perl-Task-Kensho-Exceptions DEFAULT:Task-Kensho-Exceptions CPAN-DEFAULT
  * perl-Task-Kensho-Exceptions DEFAULT:Task-Kensho-Exceptions CPAN-DEFAULT
  * perl-Task-Kensho-Logging DEFAULT:Task-Kensho-Logging CPAN-DEFAULT
  * perl-Task-Kensho-Logging DEFAULT:Task-Kensho-Logging CPAN-DEFAULT
Line 2,366: Line 2,737:
  * perl-Term-Completion DEFAULT:Term-Completion CPAN-DEFAULT
  * perl-Term-Completion DEFAULT:Term-Completion CPAN-DEFAULT
  * perl-Term-ProgressBar DEFAULT:Term-ProgressBar CPAN-DEFAULT
  * perl-Term-ProgressBar DEFAULT:Term-ProgressBar CPAN-DEFAULT
* perl-Term-ProgressBar-Quiet DEFAULT:Term-ProgressBar-Quiet CPAN-DEFAULT
* perl-Term-ProgressBar-Simple DEFAULT:Term-ProgressBar-Simple CPAN-DEFAULT
  * perl-Term-ReadLine-Perl DEFAULT:Term-ReadLine-Perl CPAN-DEFAULT
  * perl-Term-ReadLine-Perl DEFAULT:Term-ReadLine-Perl CPAN-DEFAULT
  * perl-Term-Size DEFAULT:Term-Size CPAN-DEFAULT
  * perl-Term-Size DEFAULT:Term-Size CPAN-DEFAULT
Line 2,382: Line 2,755:
  * perl-Test-DistManifest DEFAULT:Test-DistManifest CPAN-DEFAULT
  * perl-Test-DistManifest DEFAULT:Test-DistManifest CPAN-DEFAULT
  * perl-Test-Email DEFAULT:Test-Email CPAN-DEFAULT
  * perl-Test-Email DEFAULT:Test-Email CPAN-DEFAULT
* perl-Test-Harness DEFAULT:Test-Harness CPAN-DEFAULT
  * perl-Test-Harness-Straps DEFAULT:Test-Harness-Straps CPAN-DEFAULT
  * perl-Test-Harness-Straps DEFAULT:Test-Harness-Straps CPAN-DEFAULT
  * perl-Test-HexString DEFAULT:Test-HexString CPAN-DEFAULT:Test-HexString
  * perl-Test-HexString DEFAULT:Test-HexString CPAN-DEFAULT:Test-HexString
  * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
  * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
* perl-Test-LectroTest DEFAULT:Test-LectroTest CPAN-DEFAULT
  * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
  * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
  * perl-Test-Module-Used DEFAULT:Test-Module-Used CPAN-DEFAULT
  * perl-Test-Module-Used DEFAULT:Test-Module-Used CPAN-DEFAULT
Line 2,392: Line 2,767:
  * perl-Test-NoBreakpoints DEFAULT:Test-NoBreakpoints CPAN-DEFAULT
  * perl-Test-NoBreakpoints DEFAULT:Test-NoBreakpoints CPAN-DEFAULT
  * perl-Test-NoPlan DEFAULT:Test-NoPlan CPAN-DEFAULT
  * perl-Test-NoPlan DEFAULT:Test-NoPlan CPAN-DEFAULT
* perl-Test-Output DEFAULT:Test-Output CPAN-DEFAULT
  * perl-Test-Perl-Critic-Progressive DEFAULT:Test-Perl-Critic-Progressive CPAN-DEFAULT
  * perl-Test-Perl-Critic-Progressive DEFAULT:Test-Perl-Critic-Progressive CPAN-DEFAULT
  * perl-Test-Pod DEFAULT:Test-Pod CPAN-DEFAULT
  * perl-Test-Pod DEFAULT:Test-Pod CPAN-DEFAULT
Line 2,422: Line 2,798:
  * perl-Text-vFile-asData DEFAULT:Text-vFile-asData CPAN-DEFAULT
  * perl-Text-vFile-asData DEFAULT:Text-vFile-asData CPAN-DEFAULT
  * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
  * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
* perl-Text-ParseWords DEFAULT:Text-ParseWords CPAN-DEFAULT
  * perl-Text-Password-Pronounceable DEFAULT:Text-Password-Pronounceable CPAN-DEFAULT
  * perl-Text-Password-Pronounceable DEFAULT:Text-Password-Pronounceable CPAN-DEFAULT
  * perl-Text-PDF DEFAULT:Text-PDF CPAN-DEFAULT
  * perl-Text-PDF DEFAULT:Text-PDF CPAN-DEFAULT
Line 2,434: Line 2,811:
  * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
  * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
  * perl-Text-VimColor DEFAULT:Text-VimColor CPAN-DEFAULT
  * perl-Text-VimColor DEFAULT:Text-VimColor CPAN-DEFAULT
* perl-Text-Xslate DEFAULT:Text-Xslate CPAN-DEFAULT
  * perl-Thread-Queue DEFAULT:Thread-Queue CPAN-DEFAULT
  * perl-Thread-Queue DEFAULT:Thread-Queue CPAN-DEFAULT
  * perl-threads DEFAULT:threads CPAN-DEFAULT
  * perl-threads DEFAULT:threads CPAN-DEFAULT
Line 2,439: Line 2,817:
  * perl-threads-lite DEFAULT:threads-lite CPAN-DEFAULT
  * perl-threads-lite DEFAULT:threads-lite CPAN-DEFAULT
  * perl-threads-shared DEFAULT:threads-shared CPAN-DEFAULT
  * perl-threads-shared DEFAULT:threads-shared CPAN-DEFAULT
* perl-Tie-Function DEFAULT:Tie-Function CPAN-DEFAULT
  * perl-TimeDate DEFAULT:TimeDate CPAN-DEFAULT
  * perl-TimeDate DEFAULT:TimeDate CPAN-DEFAULT
  * perl-Time-Clock DEFAULT:Time-Clock CPAN-DEFAULT
  * perl-Time-Clock DEFAULT:Time-Clock CPAN-DEFAULT
  * perl-Time-Duration DEFAULT:Time-Duration CPAN-DEFAULT
  * perl-Time-Duration DEFAULT:Time-Duration CPAN-DEFAULT
* perl-Time-HiRes DEFAULT:Time-HiRes CPAN-DEFAULT
* perl-Time-Local DEFAULT:Time-Local CPAN-DEFAULT
  * perl-Time-modules DEFAULT:Time-modules CPAN-DEFAULT
  * perl-Time-modules DEFAULT:Time-modules CPAN-DEFAULT
  * perl-Time-Progress DEFAULT:Time-Progress CPAN-DEFAULT
  * perl-Time-Progress DEFAULT:Time-Progress CPAN-DEFAULT
Line 2,449: Line 2,830:
  * perl-Tk-EntryCheck DEFAULT:Tk-EntryCheck CPAN-DEFAULT
  * perl-Tk-EntryCheck DEFAULT:Tk-EntryCheck CPAN-DEFAULT
  * perl-Tk-Getopt DEFAULT:Tk-Getopt CPAN-DEFAULT
  * perl-Tk-Getopt DEFAULT:Tk-Getopt CPAN-DEFAULT
* perl-Tk-GraphViz CPAN-DEFAULT CPAN-DEFAULT
  * perl-Tk-Pod DEFAULT:Tk-Pod CPAN-DEFAULT
  * perl-Tk-Pod DEFAULT:Tk-Pod CPAN-DEFAULT
* perl-Tk-Text-SuperText CPAN-DEFAULT CPAN-DEFAULT
  * perl-TryCatch DEFAULT:TryCatch CPAN-DEFAULT
  * perl-TryCatch DEFAULT:TryCatch CPAN-DEFAULT
* perl-Twiggy DEFAULT:Twiggy CPAN-DEFAULT
  * perl-Unicode-Casing DEFAULT:Unicode-Casing CPAN-DEFAULT
  * perl-Unicode-Casing DEFAULT:Unicode-Casing CPAN-DEFAULT
  * perl-UNIVERSAL-ref DEFAULT:UNIVERSAL-ref CPAN-DEFAULT
  * perl-UNIVERSAL-ref DEFAULT:UNIVERSAL-ref CPAN-DEFAULT
Line 2,460: Line 2,844:
  * perl-UUID-Tiny DEFAULT:UUID-Tiny CPAN-DEFAULT
  * perl-UUID-Tiny DEFAULT:UUID-Tiny CPAN-DEFAULT
  * perl-Verilog-CodeGen DEFAULT:Verilog-CodeGen CPAN-DEFAULT
  * perl-Verilog-CodeGen DEFAULT:Verilog-CodeGen CPAN-DEFAULT
* perl-Verilog-Perl Verilog-Perl-(.*?).tar.gz http://cpan.mirror.clemson.edu/authors/id/W/WS/WSNYDER/
  * perl-Verilog-Readmem DEFAULT:Verilog-Readmem CPAN-DEFAULT
  * perl-Verilog-Readmem DEFAULT:Verilog-Readmem CPAN-DEFAULT
* perl-WebService-Linode DEFAULT:WebService-Linode CPAN-DEFAULT
  * perl-WebService-Rajce DEFAULT:WebService-Rajce CPAN-DEFAULT
  * perl-WebService-Rajce DEFAULT:WebService-Rajce CPAN-DEFAULT
  * perl-WebService-Validator-CSS-W3C DEFAULT:WebService-Validator-CSS-W3C CPAN-DEFAULT
  * perl-WebService-Validator-CSS-W3C DEFAULT:WebService-Validator-CSS-W3C CPAN-DEFAULT
  * perl-WebService-Validator-HTML-W3C DEFAULT:WebService-Validator-HTML-W3C CPAN-DEFAULT
  * perl-WebService-Validator-HTML-W3C DEFAULT:WebService-Validator-HTML-W3C CPAN-DEFAULT
  * perl-WWW-Curl DEFAULT:WWW-Curl CPAN-DEFAULT
  * perl-WWW-Curl DEFAULT:WWW-Curl CPAN-DEFAULT
* perl-WWW-GoodData CPAN-DEFAULT CPAN-DEFAULT
  * perl-WWW-Google-Contacts DEFAULT:WWW-Google-Contacts CPAN-DEFAULT
  * perl-WWW-Google-Contacts DEFAULT:WWW-Google-Contacts CPAN-DEFAULT
  * perl-WWW-OrangeHRM-Client WWW-OrangeHRM-Client-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/WWW-OrangeHRM-Client/
  * perl-WWW-OrangeHRM-Client WWW-OrangeHRM-Client-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/WWW-OrangeHRM-Client/
  * perl-WWW-RobotRules DEFAULT:WWW-RobotRules CPAN-DEFAULT
  * perl-WWW-RobotRules DEFAULT:WWW-RobotRules CPAN-DEFAULT
* perl-WWW-Salesforce CPAN-DEFAULT CPAN-DEFAULT
  * perl-WWW-Search DEFAULT:WWW-Search CPAN-DEFAULT
  * perl-WWW-Search DEFAULT:WWW-Search CPAN-DEFAULT
  * perl-WWW-Shorten DEFAULT:WWW-Shorten CPAN-DEFAULT
  * perl-WWW-Shorten DEFAULT:WWW-Shorten CPAN-DEFAULT
* perl-WWW-Splunk CPAN-DEFAULT CPAN-DEFAULT
  * perl-Wx DEFAULT:Wx CPAN-DEFAULT
  * perl-Wx DEFAULT:Wx CPAN-DEFAULT
* perl-Wx-GLCanvas  DEFAULT:Wx-GLCanvas  CPAN-DEFAULT
  * perl-Wx-Perl-DataWalker DEFAULT:Wx-Perl-DataWalker CPAN-DEFAULT
  * perl-Wx-Perl-DataWalker DEFAULT:Wx-Perl-DataWalker CPAN-DEFAULT
  * perl-Wx-Perl-ProcessStream DEFAULT:Wx-Perl-ProcessStream CPAN-DEFAULT
  * perl-Wx-Perl-ProcessStream DEFAULT:Wx-Perl-ProcessStream CPAN-DEFAULT
  * perl-X11-Protocol-Other DEFAULT:X11-Protocol-Other CPAN-DEFAULT
  * perl-X11-Protocol-Other DEFAULT:X11-Protocol-Other CPAN-DEFAULT
* perl-XML-Bare DEFAULT:XML-Bare CPAN-DEFAULT
  * perl-XML-Catalog DEFAULT:XML-Catalog CPAN-DEFAULT
  * perl-XML-Catalog DEFAULT:XML-Catalog CPAN-DEFAULT
  * perl-XML-DifferenceMarkup DEFAULT:XML-DifferenceMarkup CPAN-DEFAULT
  * perl-XML-DifferenceMarkup DEFAULT:XML-DifferenceMarkup CPAN-DEFAULT
Line 2,482: Line 2,873:
  * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
  * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
  * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
  * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
* perl-XML-Hash-LX DEFAULT:XML-Hash-LX CPAN-DEFAULT
  * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
  * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
  * perl-XML-LibXSLT DEFAULT:XML-LibXSLT CPAN-DEFAULT
  * perl-XML-LibXSLT DEFAULT:XML-LibXSLT CPAN-DEFAULT
Line 2,495: Line 2,887:
  * perl-XML-Stream DEFAULT:XML-Stream CPAN-DEFAULT
  * perl-XML-Stream DEFAULT:XML-Stream CPAN-DEFAULT
  * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
  * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
* perl-XML-Tiny DEFAULT:XML-Tiny CPAN-DEFAULT
  * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
  * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
  * perl-XML-Writer DEFAULT:XML-Writer CPAN-DEFAULT
  * perl-XML-Writer DEFAULT:XML-Writer CPAN-DEFAULT
Line 2,506: Line 2,899:
  * perl-version DEFAULT:version CPAN-DEFAULT
  * perl-version DEFAULT:version CPAN-DEFAULT
  * perlbrew DEFAULT:App-perlbrew CPAN-DEFAULT:App-perlbrew
  * perlbrew DEFAULT:App-perlbrew CPAN-DEFAULT:App-perlbrew
  * perltidy Perl-Tidy-(\S+?)\.(?:t|zip) SF-DEFAULT
  * perltidy DEFAULT:Perl-Tidy CPAN-DEFAULT:Perl-Tidy
</pre>
</pre>


=== PF - PX ===
=== PF - PX ===
<pre>
<pre>
  * pg_journal DEFAULT https://github.com/intgr/pg_journal/tags  
  * pg_journal archive/v(.*?)\.zip https://github.com/intgr/pg_journal/tags
  * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300
  * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300
* pgpdump DEFAULT http://www.mew.org/~kazu/proj/pgpdump/en/
* php-Assetic (\d[\.\d]+)\.tar\.gz https://github.com/kriswallsmith/assetic/tags
  * php-deepend-Mockery Mockery\s([\d\.]+)+\s\(stable\) http://pear.survivethedeepend.com/feed.xml
  * php-deepend-Mockery Mockery\s([\d\.]+)+\s\(stable\) http://pear.survivethedeepend.com/feed.xml
  * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
  * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
  * php-doctrine-DoctrineCommon <title>DoctrineCommon\s([\d\.]+)+\s\(stable\)</title> http://pear.doctrine-project.org/feed.xml
  * php-doctrine-annotations (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/annotations/tags
* php-doctrine-cache (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/cache/tags
* php-doctrine-collections (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/collections/tags
* php-doctrine-common (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/common/tags
* php-doctrine-datafixtures (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/data-fixtures/tags
* php-doctrine-dbal (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/dbal/tags
* php-doctrine-inflector (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/inflector/tags
* php-doctrine-lexer (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/lexer/tags
* php-doctrine-orm (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/doctrine2/tags
* php-drush-drush <title>drush\s([\d\.]+)+\s\(stable\)</title> http://pear.drush.org/feed.xml
  * php-EasyRdf DEFAULT:easyrdf http://www.easyrdf.org/downloads
  * php-EasyRdf DEFAULT:easyrdf http://www.easyrdf.org/downloads
  * php-Faker (\d[\.\d]*)\.tar\.gz https://github.com/fzaninotto/Faker/tags
  * php-Faker (\d[\.\d]+)\.tar\.gz https://github.com/fzaninotto/Faker/tags
* php-gitter (\d[\.\d]+)\.tar\.gz https://github.com/klaussilveira/gitter/releases
* php-google-apiclient  (\d[\.\d]+)\.tar\.gz https://github.com/google/google-api-php-client/releases
* php-goutte (\d[\.\d]+)\.tar\.gz https://github.com/fabpot/Goutte/releases
  * php-guzzle-Guzzle <title>Guzzle\s([\d\.]+)+\s\(stable\)</title> http://guzzlephp.org/pear/feed.xml
  * php-guzzle-Guzzle <title>Guzzle\s([\d\.]+)+\s\(stable\)</title> http://guzzlephp.org/pear/feed.xml
  * php-jsonlint (\d[\.\d]*)\.tar\.gz https://github.com/Seldaek/jsonlint/tags
* php-JMSParser (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/parser-lib/tags
  * php-JsonSchema (\d[\.\d]*)\.tar\.gz https://github.com/justinrainbow/json-schema/tags
  * php-jsonlint (\d[\.\d]+)\.tar\.gz https://github.com/Seldaek/jsonlint/tags
  * php-JsonSchema (\d[\.\d]+)\.tar\.gz https://github.com/justinrainbow/json-schema/tags
  * php-lessphp DEFAULT:lessphp http://leafo.net/lessphp/
  * php-lessphp DEFAULT:lessphp http://leafo.net/lessphp/
  * php-Metadata (\d[\.\d]*)\.tar\.gz https://github.com/schmittjoh/metadata/tags
  * php-Metadata (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/metadata/tags
  * php-Monolog (\d[\.\d]*)\.tar\.gz https://github.com/Seldaek/monolog/tags
  * php-Monolog (\d[\.\d]+)\.tar\.gz https://github.com/Seldaek/monolog/tags
  * 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 PEAR-DEFAULT PEAR-DEFAULT
  * php-pear-Console-CommandLine Console_CommandLine-(.*?).tgz http://pear.php.net/package/Console_CommandLine/download
  * php-pear-Console-CommandLine Console_CommandLine-(.*?).tgz http://pear.php.net/package/Console_CommandLine/download
  * php-pear-Crypt-Blowfish Crypt_Blowfish-(.*?)\.tgz http://pear.php.net/package/Crypt_Blowfish/download
  * php-pear-Crypt-Blowfish Crypt_Blowfish-(.*?)\.tgz http://pear.php.net/package/Crypt_Blowfish/download
  * php-pear-DB DB-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/DB/download
  * php-pear-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 PEAR-DEFAULT
  * php-pear-PhpDocumentor PhpDocumentor-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PhpDocumentor/download
  * php-pear-PhpDocumentor PEAR-DEFAULT PEAR-DEFAULT
  * php-pear-phing <title>phing\s([\d\.]+)+\s\((?:stable)\)</title> http://pear.phing.info/feed.xml
  * php-pear-phing <title>phing\s([\d\.]+)+\s\((?:stable)\)</title> http://pear.phing.info/feed.xml
  * php-pear-Text-Diff Text_Diff-(.*?)\.tgz http://pear.php.net/package/Text_Diff/download
  * php-pear-Text-Diff Text_Diff-(.*?)\.tgz http://pear.php.net/package/Text_Diff/download
  * php-pear PEAR-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PEAR/download
  * php-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-geoip geoip-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/GEOIP
  * php-pecl-lzf LZF-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/lzf
  * php-pecl-lzf LZF-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/lzf
Line 2,540: Line 2,947:
  * php-pecl-oauth oauth-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/oauth
  * php-pecl-oauth oauth-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/oauth
  * php-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/feed.xml
  * php-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/feed.xml
  * php-PhpOption (\d[\.\d]*)\.tar\.gz https://github.com/schmittjoh/php-option/tags
* php-PhpCollection (\d[\.\d]*)\.tar\.gz https://github.com/schmittjoh/php-collection/tags
  * php-PHPParser (\d[\.\d]*)\.tar\.gz https://github.com/nikic/PHP-Parser/tags
  * php-PhpOption (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/php-option/tags
  * php-PHPParser (\d[\.\d]+)\.tar\.gz https://github.com/nikic/PHP-Parser/tags
  * php-phpunit-bytekit <title>bytekit\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-phpunit-bytekit <title>bytekit\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-phpunit-File-Iterator <title>File_Iterator\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-phpunit-File-Iterator <title>File_Iterator\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
Line 2,550: Line 2,958:
  * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
  * php-Pimple (\d[\.\d]*)\.tar\.gz https://github.com/fabpot/Pimple/tags
  * php-Pimple (\d[\.\d]+)\.tar\.gz https://github.com/fabpot/Pimple/tags
  * php-pirum-Pirum <title>Pirum\s([\d\.]+)+\s\(stable\)</title> http://pear.pirum-project.org/feed.xml
  * php-pirum-Pirum <title>Pirum\s([\d\.]+)+\s\(stable\)</title> http://pear.pirum-project.org/feed.xml
  * php-PsrLog (\d[\.\d]*)\.tar\.gz https://github.com/php-fig/log/tags
  * php-PsrLog (\d[\.\d]+)\.tar\.gz https://github.com/php-fig/log/tags
  * php-Raven (\d[\.\d]*)\.tar\.gz https://github.com/getsentry/raven-php/tags
  * php-Raven (\d[\.\d]+)\.tar\.gz https://github.com/getsentry/raven-php/tags
* php-scssphp (\d[\.\d]+)\.tar\.gz https://github.com/leafo/scssphp/tags
  * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
  * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
  * php-symfony-symfony DEFAULT:symfony http://pear.symfony-project.com/feed.xml
  * php-symfony v(\d[\.\d]+)\.tar\.gz https://github.com/symfony/symfony/releases
* php-symfony-icu v(\d[\.\d]+)\.tar\.gz https://github.com/symfony/Icu/releases
* php-SymfonyCmfRouting (\d[\.\d]+)\.tar\.gz https://github.com/symfony-cmf/Routing/tags
  * php-twig-Twig <title>Twig\s([\d\.]+)+\s\(stable\)</title> http://pear.twig-project.org/feed.xml
  * php-twig-Twig <title>Twig\s([\d\.]+)+\s\(stable\)</title> http://pear.twig-project.org/feed.xml
* php-ZendFramework2 DEFAULT http://framework.zend.com/downloads/latest
  * php php-(\d+\.\d+\.\d+)\.tar.bz2 http://www.php.net/downloads.php
  * 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
  * phpMyAdmin phpMyAdmin-([0-9.]*?)-all-languages\.tar http://www.phpmyadmin.net/home_page/downloads.php
* phpPgAdmin DEFAULT SF-DEFAULT:phppgadmin
* phrel DEFAULT ftp://ftp.digitalgenesis.com/pub/phrel
* physfs DEFAULT http://icculus.org/physfs/downloads/
  * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
  * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
  * picard DEFAULT http://musicbrainz.org/doc/PicardDownload
  * picard DEFAULT http://musicbrainz.org/doc/PicardDownload
Line 2,569: Line 2,984:
  * pidgin-privacy-please DEFAULT GOOGLE-DEFAULT
  * pidgin-privacy-please DEFAULT GOOGLE-DEFAULT
  * pigz DEFAULT http://zlib.net/pigz/
  * pigz DEFAULT http://zlib.net/pigz/
  * piklab DEFAULT SF-DEFAULT
  * pinentry DEFAULT ftp://ftp.gnupg.org/gcrypt/pinentry/
* pikloops DEFAULT SF-DEFAULT
* pinentry pinentry-([0-9.]*)\.tar\.gz ftp://ftp.gnupg.org/gcrypt/pinentry/
  * pinpoint DEFAULT GNOME-DEFAULT
  * pinpoint DEFAULT GNOME-DEFAULT
  * pioneers DEFAULT SF-DEFAULT:pio
  * pioneers DEFAULT SF-DEFAULT:pio
  * pitivi DEFAULT http://ftp.gnome.org/pub/GNOME/sources/pitivi/*/
  * pitivi DEFAULT GNOME-DEFAULT
  * pixman DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * pixman DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
  * pkgdiff DEFAULT http://pkgdiff.github.com/pkgdiff/
  * pkgconfig DEFAULT:pkg-config http://pkgconfig.freedesktop.org/releases/
* pkgdiff e\/(.*?)\.tar\.gz http://github.com/lvc/pkgdiff/releases
  * pkgwat DEFAULT:pkgwat.cli PYPI-DEFAULT:pkgwat.cli
  * pkgwat DEFAULT:pkgwat.cli PYPI-DEFAULT:pkgwat.cli
* pkcs11-helper DEFAULT SF-DEFAULT:opensc
  * pl DEFAULT http://www.swi-prolog.org/download/stable
  * pl DEFAULT http://www.swi-prolog.org/download/stable
  * plexus-active-collections plexus-active-collections-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/tags/
  * plexus-active-collections plexus-active-collections-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/tags/
Line 2,584: Line 2,999:
  * plexus-cipher DEFAULT https://github.com/sonatype/plexus-cipher/tags
  * plexus-cipher DEFAULT https://github.com/sonatype/plexus-cipher/tags
  * plexus-digest plexus-digest-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
  * plexus-digest plexus-digest-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
* plexus-graph DEFAULT:plexus SF-DEFAULT:plexus
  * plexus-i18n plexus-i18n-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/plexus-components/tags/
  * plexus-i18n plexus-i18n-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/plexus-components/tags/
  * plexus-interpolation plexus-interpolation-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
  * plexus-interpolation plexus-interpolation-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
Line 2,593: Line 3,009:
  * plexus-compiler DEFAULT https://github.com/sonatype/plexus-compiler/tags
  * plexus-compiler DEFAULT https://github.com/sonatype/plexus-compiler/tags
  * plexus-containers DEFAULT https://github.com/sonatype/plexus-containers/tags
  * plexus-containers DEFAULT https://github.com/sonatype/plexus-containers/tags
* plymouth DEFAULT http://freedesktop.org/software/plymouth/releases/
  * plotutils DEFAULT GNU-DEFAULT
  * plotutils DEFAULT GNU-DEFAULT
  * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
  * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
  * pmd DEFAULT SF-DEFAULT
  * pmd DEFAULT SF-DEFAULT
* pnglite DEFAULT SF-DEFAULT
* pngquant ([0-9.]*?)\.tar.* https://github.com/pornel/improved-pngquant/tags
* po4a DEFAULT https://alioth.debian.org/frs/?group_id=30267
* pocl DEFAULT http://pocl.sourceforge.net/downloads/
  * pokerth DEFAULT:PokerTH SF-DEFAULT
  * pokerth DEFAULT:PokerTH SF-DEFAULT
  * polarssl \bpolarssl-([\d.]+)-gpl https://polarssl.org/code/releases/
  * polarssl \bpolarssl-([\d.]+)-gpl https://polarssl.org/code/releases/
* policycoreutils DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
  * polipo polipo-([0-9]\.[0-9.]*?).tar.gz http://freehaven.net/~chrisd/polipo/
  * polipo polipo-([0-9]\.[0-9.]*?).tar.gz http://freehaven.net/~chrisd/polipo/
  * pondus DEFAULT http://www.ephys.de/software/pondus/download.htm
  * polkit DEFAULT http://freedesktop.org/software/polkit/releases/
* pondus DEFAULT https://bitbucket.org/eike/pondus/downloads
  * pootle DEFAULT SF-DEFAULT:translate
  * pootle DEFAULT SF-DEFAULT:translate
* poppler DEFAULT http://poppler.freedesktop.org/
* poppler-data DEFAULT http://poppler.freedesktop.org/
  * poppler-sharp DEFAULT https://github.com/jacintos/poppler-sharp/downloads
  * poppler-sharp DEFAULT https://github.com/jacintos/poppler-sharp/downloads
* popt DEFAULT http://rpm5.org/files/popt/
* port-allocator-maven-plugin DEFAULT https://github.com/sonatype/port-allocator-maven-plugin/releases
  * potrace DEFAULT SF-DEFAULT
  * potrace DEFAULT SF-DEFAULT
  * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
  * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
  * postfix DEFAULT ftp://ftp.porcupine.org/mirrors/postfix-release/official/
  * postfix DEFAULT ftp://ftp.porcupine.org/mirrors/postfix-release/official/
  * powertop DEFAULT https://01.org/powertop/downloads
  * powertop DEFAULT https://01.org/powertop/downloads
  * ppp DEFAULT ftp://ftp.samba.org/pub/ppp/
  * ppp DEFAULT http://www.samba.org/ftp/ppp/
  * pptp DEFAULT SF-DEFAULT:pptpclient
  * pptp DEFAULT SF-DEFAULT:pptpclient
* pptpd DEFAULT SF-DEFAULT:poptop
  * prboom prboom-([0-9.]*?)\.tar\.gz SF-DEFAULT
  * prboom prboom-([0-9.]*?)\.tar\.gz SF-DEFAULT
  * procps-ng DEFAULT SF-DEFAULT
  * procps-ng DEFAULT SF-DEFAULT
* prosody DEFAULT http://prosody.im/downloads/source/
  * prepaid-manager-applet \bprepaid-manager-applet[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?\.(?:t[bglx]z|tar.[bglx]z|tbz2|zip|tar)\b http://honk.sigxcpu.org/projects/ppm/tarballs/
  * prepaid-manager-applet \bprepaid-manager-applet[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?\.(?:t[bglx]z|tar.[bglx]z|tbz2|zip|tar)\b http://honk.sigxcpu.org/projects/ppm/tarballs/
  * primer3 primer3-([0-9.]*).*\.(?:tar|t[bglx]z|tbz2|zip) SF-DEFAULT
  * primer3 primer3-([0-9.]*).*\.(?:tar|t[bglx]z|tbz2|zip) SF-DEFAULT
  * privoxy privoxy-([0-9.]*?)-stable-src.tar.gz http://sourceforge.net/projects/ijbswa/files/
  * privoxy privoxy-(.*?)-stable-src\.tar\.gz SF-DEFAULT:ijbswa
* procmail DEFAULT http://www.procmail.org/
  * proguard \bproguard([\d.]+?)\.t SF-DEFAULT
  * proguard \bproguard([\d.]+?)\.t SF-DEFAULT
  * protobuf DEFAULT GOOGLE-DEFAULT
  * protobuf DEFAULT GOOGLE-DEFAULT
Line 2,624: Line 3,054:
  * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
  * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
  * pulseaudio DEFAULT http://freedesktop.org/software/pulseaudio/releases/
  * pulseaudio DEFAULT http://freedesktop.org/software/pulseaudio/releases/
  * pure DEFAULT GOOGLE-DEFAULT:pure-lang
  * pure DEFAULT https://bitbucket.org/purelang/pure-lang/downloads
  * pure-ftpd DEFAULT http://download.pureftpd.org/pub/pure-ftpd/releases/
  * pure-ftpd DEFAULT http://download.pureftpd.org/pub/pure-ftpd/releases/
  * purple-microblog DEFAULT:mbpurple GOOGLE-DEFAULT:microblog-purple
  * purple-microblog DEFAULT:mbpurple GOOGLE-DEFAULT:microblog-purple
  * purple-msn-pecan DEFAULT:msn-pecan GOOGLE-DEFAULT:msn-pecan
  * purple-msn-pecan DEFAULT:msn-pecan GOOGLE-DEFAULT:msn-pecan
  * purple-plugin_pack DEFAULT:purple-plugin-pack https://www.guifications.org/projects/purple-plugin-pack/files
  * purple-plugin_pack DEFAULT:purple-plugin-pack https://bitbucket.org/rekkanoryo/purple-plugin-pack/downloads
  * pv DEFAULT http://www.ivarch.com/programs/pv.shtml
  * pv DEFAULT http://www.ivarch.com/programs/pv.shtml
  * pvm pvm([0-9.]*)\..*\.(?:tar|t[bglx]z|tbz2|zip) http://www.netlib.org/pvm3/index.html
  * pvm pvm([0-9.]*)\..*\.(?:tar|t[bglx]z|tbz2|zip) http://www.netlib.org/pvm3/index.html
Line 2,636: Line 3,066:
=== PY ===
=== PY ===
<pre>
<pre>
* pycdio DEFAULT GNU-DEFAULT:libcdio
  * pychess DEFAULT GOOGLE-DEFAULT
  * pychess DEFAULT GOOGLE-DEFAULT
  * pycmd DEFAULT PYPI-DEFAULT
  * pycmd DEFAULT PYPI-DEFAULT
* pycscope DEFAULT PYPI-DEFAULT
  * pyfits DEFAULT PYPI-DEFAULT
  * pyfits DEFAULT PYPI-DEFAULT
  * pyflakes DEFAULT PYPI-DEFAULT
  * pyflakes DEFAULT PYPI-DEFAULT
  * pygpgme DEFAULT LP-DEFAULT
  * pygpgme DEFAULT LP-DEFAULT
  * pygrace DEFAULT http://www.cacr.caltech.edu/~mmckerns/pygrace.html
  * pygrace DEFAULT http://www.cacr.caltech.edu/~mmckerns/pygrace.html
* PyGreSQL DEFAULT PYPI-DEFAULT
* pygrib DEFAULT GOOGLE-DEFAULT
  * pyicq-t pyicq-t-(.*?).tar.gz GOOGLE-DEFAULT:pyicqt
  * pyicq-t pyicq-t-(.*?).tar.gz GOOGLE-DEFAULT:pyicqt
  * PyMca pymca(.*?)-src\.t SF-DEFAULT:pymca
  * PyMca pymca([\d.]*)-src SF-DEFAULT:pymca
* pymol pymol-v([0-9.]*?).tar.bz2 SF-DEFAULT
  * PyMunin DEFAULT PYPI-DEFAULT
  * PyMunin DEFAULT PYPI-DEFAULT
  * pynac pynac-([\d.]+)\.spkg http://sagemath.org/packages/standard/
  * pynac pynac-([\d.]+)\.spkg http://sagemath.org/packages/standard/
  * pypar DEFAULT SF-DEFAULT
  * pypar DEFAULT SF-DEFAULT
  * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
  * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
  * pypy DEFAULT http://pypy.org/download/
* pyproj DEFAULT GOOGLE-DEFAULT
  * pypy DEFAULT https://bitbucket.org/pypy/pypy/downloads/
  * PyQuante DEFAULT SF-DEFAULT:pyquante
  * PyQuante DEFAULT SF-DEFAULT:pyquante
  * PyQwt DEFAULT SF-DEFAULT:pyqwt
  * PyQwt DEFAULT SF-DEFAULT:pyqwt
* pyrit DEFAULT GOOGLE-DEFAULT
  * pyroom DEFAULT LP-DEFAULT
  * pyroom DEFAULT LP-DEFAULT
* pyshp DEFAULT PYPI-DEFAULT
  * pytest DEFAULT PYPI-DEFAULT
  * pytest DEFAULT PYPI-DEFAULT
  * python-alembic DEFAULT:alembic PYPI-DEFAULT:alembic
  * python-alembic DEFAULT:alembic PYPI-DEFAULT:alembic
  * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
  * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
  * python-ansi2html DEFAULT:ansi2html http://pypi.python.org/pypi/ansi2html
* python-amqp DEFAULT:amqp PYPI-DEFAULT:amqp
  * python-ansi2html DEFAULT:ansi2html PYPI-DEFAULT:ansi2html
  * python-anykeystore DEFAULT:anykeystore PYPI-DEFAULT:anykeystore
  * python-anykeystore DEFAULT:anykeystore PYPI-DEFAULT:anykeystore
  * python-application DEFAULT PYPI-DEFAULT
  * python-application DEFAULT PYPI-DEFAULT
* python-apsw DEFAULT:apsw GOOGLE-DEFAULT:apsw
* python-argcomplete DEFAULT:argcomplete PYPI-DEFAULT:argcomplete
* python-ase DEFAULT PYPI-DEFAULT
  * python-askbot-fedmsg DEFAULT:askbot-fedmsg PYPI-DEFAULT:askbot-fedmsg
  * python-askbot-fedmsg DEFAULT:askbot-fedmsg PYPI-DEFAULT:askbot-fedmsg
* python-astropy DEFAULT:astropy PYPI-DEFAULT:astropy
* python-backlash DEFAULT:backlash PYPI-DEFAULT:backlash
  * python-beaker DEFAULT:Beaker PYPI-DEFAULT:Beaker
  * python-beaker DEFAULT:Beaker PYPI-DEFAULT:Beaker
* python-beautifulsoup4 DEFAULT:beautifulsoup4 PYPI-DEFAULT:beautifulsoup4
  * python-billiard DEFAULT:billiard PYPI-DEFAULT:billiard
  * python-billiard DEFAULT:billiard PYPI-DEFAULT:billiard
  * python-biopython biopython-([0-9].*?)\.tar\.gz http://biopython.org/DIST/
  * python-biopython DEFAULT:biopython PYPI-DEFAULT:biopython
  * python-bitlyapi DEFAULT:bitlyapi PYPI-DEFAULT:bitlyapi
  * python-bitlyapi DEFAULT:bitlyapi PYPI-DEFAULT:bitlyapi
  * python-blessings /archive/(?!terminator-)(.*?)\.tar\.gz https://github.com/erikrose/blessings/tags
  * python-blessings DEFAULT:blessings PYPI-DEFAULT:blessings
  * python-blist DEFAULT:blist PYPI-DEFAULT:blist
  * python-blist DEFAULT:blist PYPI-DEFAULT:blist
* python-blosc archive/Release-(.*?)\.zip https://github.com/FrancescAlted/python-blosc/releases
  * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
  * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
* python-cairosvg DEFAULT:CairoSVG PYPI-DEFAULT:CairoSVG
  * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
  * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
  * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
  * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
  * python-celery DEFAULT:celery PYPI-DEFAULT:celery
  * python-celery DEFAULT:celery PYPI-DEFAULT:celery
* python-chai DEFAULT:chai PYPI-DEFAULT:chai
  * python-chameleon DEFAULT:Chameleon PYPI-DEFAULT:Chameleon
  * python-chameleon DEFAULT:Chameleon PYPI-DEFAULT:Chameleon
  * python-cherrypy <a href="([0-9][^/]*)/"> http://download.cherrypy.org/cherrypy/
  * python-cherrypy <a href="([0-9][^/]*)/"> http://download.cherrypy.org/cherrypy/
Line 2,680: Line 3,128:
  * python-concurrentloghandler DEFAULT:ConcurrentLogHandler PYPI-DEFAULT:ConcurrentLogHandler
  * python-concurrentloghandler DEFAULT:ConcurrentLogHandler PYPI-DEFAULT:ConcurrentLogHandler
  * python-configobj DEFAULT:configobj PYPI-DEFAULT:configobj
  * python-configobj DEFAULT:configobj PYPI-DEFAULT:configobj
* python-couchdbkit DEFAULT:couchdbkit PYPI-DEFAULT:couchdbkit
  * python-coverage DEFAULT:coverage PYPI-DEFAULT:coverage
  * python-coverage DEFAULT:coverage PYPI-DEFAULT:coverage
  * python-coverage-test-runner DEFAULT http://code.liw.fi/debian/pool/main/p/python-coverage-test-runner/
  * python-coverage-test-runner DEFAULT http://code.liw.fi/debian/pool/main/p/python-coverage-test-runner/
  * python-cpio DEFAULT SF-DEFAULT:python-cpio.berlios
  * python-cpio DEFAULT SF-DEFAULT:python-cpio.berlios
* python-crank DEFAULT:crank PYPI-DEFAULT:crank
* python-crypto e/v(.*)\.tar\.gz http://github.com/dlitz/pycrypto/releases
  * python-daemon DEFAULT:daemon PYPI-DEFAULT:daemon
  * python-daemon DEFAULT:daemon PYPI-DEFAULT:daemon
  * python-datanommer-consumer DEFAULT:datanommer.consumer PYPI-DEFAULT:datanommer.consumer
  * python-datanommer-consumer DEFAULT:datanommer.consumer PYPI-DEFAULT:datanommer.consumer
Line 2,691: Line 3,142:
  * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
  * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
  * python-dingus DEFAULT:dingus PYPI-DEFAULT:dingus
  * python-dingus DEFAULT:dingus PYPI-DEFAULT:dingus
* python-dirq DEFAULT:dirq PYPI-DEFAULT:dirq
  * python-distutils-extra DEFAULT LP-DEFAULT
  * python-distutils-extra DEFAULT LP-DEFAULT
  * python-django DEFAULT:Django PYPI-DEFAULT:Django
  * python-django DEFAULT:Django PYPI-DEFAULT:Django
Line 2,700: Line 3,152:
  * python-django-debug-toolbar DEFAULT:django-debug-toolbar PYPI-DEFAULT:django-debug-toolbar
  * python-django-debug-toolbar DEFAULT:django-debug-toolbar PYPI-DEFAULT:django-debug-toolbar
  * python-django-devserver DEFAULT:django-devserver PYPI-DEFAULT:django-devserver
  * python-django-devserver DEFAULT:django-devserver PYPI-DEFAULT:django-devserver
* python-django-discover-runner DEFAULT:django-discover-runner PYPI-DEFAULT:django-discover-runner
* python-django-extensions DEFAULT:django-extensions PYPI-DEFAULT:django-extensions
  * python-django-longerusername DEFAULT:longerusername PYPI-DEFAULT:longerusername
  * python-django-longerusername DEFAULT:longerusername PYPI-DEFAULT:longerusername
  * python-django-openstack-auth DEFAULT:django_openstack_auth PYPI-DEFAULT:django_openstack_auth
  * python-django-openstack-auth DEFAULT:django_openstack_auth PYPI-DEFAULT:django_openstack_auth
Line 2,710: Line 3,164:
  * python-dns DEFAULT:dnspython http://www.dnspython.org/kits/*/
  * python-dns DEFAULT:dnspython http://www.dnspython.org/kits/*/
  * python-docutils DEFAULT:docutils PYPI-DEFAULT:docutils
  * python-docutils DEFAULT:docutils PYPI-DEFAULT:docutils
* python-dogpile-cache DEFAULT:dogpile.cache PYPI-DEFAULT:dogpile.cache
* python-dogpile-core DEFAULT:dogpile.core PYPI-DEFAULT:dogpile.core
* python-doit DEFAULT:doit PYPI-DEFAULT:doit
* python-dtopt DEFAULT:dtopt PYPI-DEFAULT:dtopt
  * python-elixir Elixir-(.*?).tar.gz PYPI-DEFAULT:Elixir
  * python-elixir Elixir-(.*?).tar.gz PYPI-DEFAULT:Elixir
  * python-enchant DEFAULT:pyenchant PYPI-DEFAULT:pyenchant
  * python-enchant DEFAULT:pyenchant PYPI-DEFAULT:pyenchant
  * python-execnet execnet-(.*?).(?:tar.gz|zip) PYPI-DEFAULT:execnet
  * python-execnet execnet-(.*?).(?:tar.gz|zip) PYPI-DEFAULT:execnet
* python-fabulous DEFAULT:fabulous PYPI-DEFAULT:fabulous
* python-falcon DEFAULT:falcon PYPI-DEFAULT:falcon
  * python-fastimport DEFAULT LP-DEFAULT
  * python-fastimport DEFAULT LP-DEFAULT
  * python-feedcache DEFAULT:feedcache http://pypi.python.org/pypi/feedcache/
* python-fedmsg-meta-fedora-infrastructure DEFAULT:fedmsg_meta_fedora_infrastructure PYPI-DEFAULT:fedmsg_meta_fedora_infrastructure
  * python-feedcache DEFAULT:feedcache PYPI-DEFAULT:feedcache
  * python-fedora DEFAULT PYPI-DEFAULT
  * python-fedora DEFAULT PYPI-DEFAULT
  * python-flask DEFAULT:Flask PYPI-DEFAULT:Flask
  * python-flask DEFAULT:Flask PYPI-DEFAULT:Flask
* python-flask-login DEFAULT:Flask-Login PYPI-DEFAULT:Flask-Login
* python-flask-mako DEFAULT:Flask-Mako PYPI-DEFAULT:Flask-Mako
* python-flask-principal DEFAULT:Flask-Principal PYPI-DEFAULT:Flask-Principal
  * python-flexmock DEFAULT:flexmock PYPI-DEFAULT:flexmock
  * python-flexmock DEFAULT:flexmock PYPI-DEFAULT:flexmock
  * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
  * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
* python-fn DEFAULT:fn PYPI-DEFAULT:fn
  * python-formencode DEFAULT:FormEncode PYPI-DEFAULT:FormEncode
  * python-formencode DEFAULT:FormEncode PYPI-DEFAULT:FormEncode
  * python-fuzzywuzzy DEFAULT:fuzzywuzzy PYPI-DEFAULT:fuzzywuzzy
  * python-fuzzywuzzy DEFAULT:fuzzywuzzy PYPI-DEFAULT:fuzzywuzzy
  * python-gdata DEFAULT:gdata GOOGLE-DEFAULT:gdata-python-client
  * python-gdata DEFAULT:gdata GOOGLE-DEFAULT:gdata-python-client
* python-gearbox DEFAULT:gearbox PYPI-DEFAULT:gearbox
  * python-glue DEFAULT:glue PYPI-DEFAULT:glue
  * python-glue DEFAULT:glue PYPI-DEFAULT:glue
* python-grapefruit DEFAULT:grapefruit GOOGLE-DEFAULT:grapefruit
* python-gstreamer1 DEFAULT:gst-python http://gstreamer.freedesktop.org/src/gst-python/
  * python-gunicorn DEFAULT:gunicorn PYPI-DEFAULT:gunicorn
  * python-gunicorn DEFAULT:gunicorn PYPI-DEFAULT:gunicorn
* python-GeoIP DEFAULT:GeoIP PYPI-DEFAULT:GeoIP
* python-gstreamer1 DEFAULT:gst-python http://gstreamer.freedesktop.org/src/gst-python/
* python-heatclient DEFAULT PYPI-DEFAULT
  * python-hghooks DEFAULT:hghooks PYPI-DEFAULT:hghooks
  * python-hghooks DEFAULT:hghooks PYPI-DEFAULT:hghooks
  * python-http-parser DEFAULT:http-parser PYPI-DEFAULT:http-parser
  * python-http-parser DEFAULT:http-parser PYPI-DEFAULT:http-parser
* python-imaging Imaging-([0-9.]*?)\.tar http://effbot.org/downloads/
  * python-irclib DEFAULT SF-DEFAULT
  * python-irclib DEFAULT SF-DEFAULT
* python-itsdangerous DEFAULT:itsdangerous PYPI-DEFAULT:itsdangerous
* python-jedi DEFAULT:jedi PYPI-DEFAULT:jedi
  * python-jinja2 Jinja2-(.*?).tar.gz PYPI-DEFAULT:Jinja2
  * python-jinja2 Jinja2-(.*?).tar.gz PYPI-DEFAULT:Jinja2
  * python-jinja DEFAULT:Jinja PYPI-DEFAULT:Jinja
  * python-jsonschema DEFAULT:jsonschema PYPI-DEFAULT:jsonschema
* python-kajiki DEFAULT:Kajiki PYPI-DEFAULT:Kajiki
* python-keyring keyring-([0-9.]*?).zip PYPI-DEFAULT:keyring
  * python-kid DEFAULT:kid PYPI-DEFAULT:kid
  * python-kid DEFAULT:kid PYPI-DEFAULT:kid
  * python-kitchen DEFAULT:kitchen PYPI-DEFAULT:kitchen
  * python-kitchen DEFAULT:kitchen PYPI-DEFAULT:kitchen
  * python-kombu DEFAULT:kombu PYPI-DEFAULT:kombu
  * python-kombu DEFAULT:kombu PYPI-DEFAULT:kombu
  * python-ladon DEFAULT:ladon PYPI-DEFAULT:ladon
  * python-ladon DEFAULT:ladon PYPI-DEFAULT:ladon
* python-lamson DEFAULT:lamson PYPI-DEFAULT:lamson
  * python-larch DEFAULT http://code.liw.fi/debian/pool/main/p/python-larch/
  * python-larch DEFAULT http://code.liw.fi/debian/pool/main/p/python-larch/
  * python-lettuce DEFAULT:lettuce PYPI-DEFAULT:lettuce
  * python-lettuce DEFAULT:lettuce PYPI-DEFAULT:lettuce
  * python-Levenshtein DEFAULT PYPI-DEFAULT
  * python-Levenshtein DEFAULT PYPI-DEFAULT
* python-llfuse DEFAULT:llfuse GOOGLE-DEFAULT
* python-logging-tree DEFAULT:logging_tree PYPI-DEFAULT:logging_tree
* python-logutils DEFAULT:logutils PYPI-DEFAULT:logutils
  * python-lxml DEFAULT:lxml http://lxml.de/
  * python-lxml DEFAULT:lxml http://lxml.de/
  * python-mako DEFAULT:Mako PYPI-DEFAULT:Mako
  * python-mako DEFAULT:Mako PYPI-DEFAULT:Mako
Line 2,742: Line 3,220:
  * python-markdown2 DEFAULT:markdown2 PYPI-DEFAULT:markdown2
  * python-markdown2 DEFAULT:markdown2 PYPI-DEFAULT:markdown2
  * python-markupsafe DEFAULT:MarkupSafe PYPI-DEFAULT:MarkupSafe
  * python-markupsafe DEFAULT:MarkupSafe PYPI-DEFAULT:MarkupSafe
* python-matplotlib DEFAULT:matplotlib PYPI-DEFAULT:matplotlib
  * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
  * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
* python-meliae DEFAULT:meliae LP-DEFAULT:meliae
* python-msgpack DEFAULT:msgpack-python PYPI-DEFAULT:msgpack-python
  * python-migrate0.5 sqlalchemy-migrate-(0.5.*).tar.gz" PYPI-DEFAULT:sqlalchemy-migrate
  * python-migrate0.5 sqlalchemy-migrate-(0.5.*).tar.gz" PYPI-DEFAULT:sqlalchemy-migrate
  * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
  * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
  * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
  * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
* python-modernize DEFAULT:modernize PYPI-DEFAULT:modernize
* python-moksha-common DEFAULT:moksha.common PYPI-DEFAULT:moksha.common
* python-moksha-hub DEFAULT:moksha.hub PYPI-DEFAULT:moksha.hub
* python-moksha-wsgi DEFAULT:moksha.wsgi PYPI-DEFAULT:moksha.wsgi
  * python-morbid DEFAULT:morbid PYPI-DEFAULT:morbid
  * python-morbid DEFAULT:morbid PYPI-DEFAULT:morbid
  * python-mpmath DEFAULT:mpmath GOOGLE-DEFAULT:mpmath
  * python-mpmath DEFAULT:mpmath GOOGLE-DEFAULT:mpmath
  * python-mutagen mutagen-(.*?).tar.gz http://www.sacredchao.net/~piman/software/
  * python-mutagen DEFAULT:mutagen PYPI-DEFAULT:mutagen
  * python-mwlib DEFAULT:mwlib PYPI-DEFAULT:mwlib
  * python-mwlib DEFAULT:mwlib PYPI-DEFAULT:mwlib
  * python-myghty DEFAULT:Myghty PYPI-DEFAULT:Myghty
  * python-myghty DEFAULT:Myghty PYPI-DEFAULT:Myghty
  * python-myhdl DEFAULT:myhdl SF-DEFAULT:myhdl
  * python-myhdl DEFAULT:myhdl SF-DEFAULT:myhdl
* python-nikola DEFAULT: nikola PYPI-DEFAULT:Nikola
  * python-nltk DEFAULT:nltk PYPI-DEFAULT:nltk
  * python-nltk DEFAULT:nltk PYPI-DEFAULT:nltk
  * python-nose DEFAULT:nose PYPI-DEFAULT:nose
  * python-nose DEFAULT:nose PYPI-DEFAULT:nose
Line 2,757: Line 3,243:
  * python-nose-exclude DEFAULT:nose-exclude PYPI-DEFAULT:nose-exclude
  * python-nose-exclude DEFAULT:nose-exclude PYPI-DEFAULT:nose-exclude
  * python-nose-progressive /archive/(.*?)\.tar\.gz https://github.com/erikrose/nose-progressive/tags
  * python-nose-progressive /archive/(.*?)\.tar\.gz https://github.com/erikrose/nose-progressive/tags
* python-ntplib DEFAULT:ntplib PYPI-DEFAULT:ntplib
* python-numexpr DEFAULT:numexpr GOOGLE-DEFAULT:numexpr
* python-offtrac DEFAULT:offtrac PYPI-DEFAULT:offtrac
  * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT:paida
  * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT:paida
  * python-paramiko DEFAULT:paramiko http://www.lag.net/paramiko/download/
  * python-paramiko DEFAULT:paramiko http://www.lag.net/paramiko/download/
Line 2,762: Line 3,251:
  * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
  * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
  * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
  * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
* python-patsy DEFAULT:patsy PYPI-DEFAULT:patsy
  * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
  * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
* python-pbr DEFAULT:pbr PYPI-DEFAULT:pbr
  * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
  * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
  * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
  * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
Line 2,769: Line 3,260:
  * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
  * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
  * python-pep8 DEFAULT:pep8 PYPI-DEFAULT:pep8
  * python-pep8 DEFAULT:pep8 PYPI-DEFAULT:pep8
* python-pgpdump DEFAULT:pgpdump PYPI-DEFAULT:pgpdump
* python-phyghtmap phyghtmap_(.*?).orig.tar.gz http://katze.tfiu.de/projects/phyghtmap/
* python-pkgwat-api DEFAULT:pkgwat.api PYPI-DEFAULT:pkgwat.api
  * python-plumbum DEFAULT:plumbum PYPI-DEFAULT:plumbum
  * python-plumbum DEFAULT:plumbum PYPI-DEFAULT:plumbum
* python-plyvel DEFAULT:plyvel PYPI-DEFAULT:plyvel
* python-praw DEFAULT:praw PYPI-DEFAULT:praw
  * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
  * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
  * python-profilehooks DEFAULT:profilehooks PYPI-DEFAULT:profilehooks
  * python-profilehooks DEFAULT:profilehooks PYPI-DEFAULT:profilehooks
* python-progressbar DEFAULT:progressbar GOOGLE-DEFAULT
  * python-protocols >PyProtocols-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
  * python-protocols >PyProtocols-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
  * python-psutil DEFAULT:psutil GOOGLE-DEFAULT:psutil
  * python-psutil DEFAULT:psutil PYPI-DEFAULT:psutil
* python-pudb DEFAULT:pudb PYPI-DEFAULT:pudb
  * python-py py-([0-9.]*?).(?:tar.gz|zip) PYPI-DEFAULT:py
  * python-py py-([0-9.]*?).(?:tar.gz|zip) PYPI-DEFAULT:py
* python-pybloomfiltermmap DEFAULT:pybloomfiltermmap PYPI-DEFAULT:pybloomfiltermmap
* python-pygal DEFAULT:pygal PYPI-DEFAULT:pygal
* python-pygments DEFAULT:Pygments PYPI-DEFAULT:Pygments
  * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
  * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
* python-PyGithub DEFAULT:PyGithub PYPI-DEFAULT:PyGithub
  * python-qserve DEFAULT:qserve PYPI-DEFAULT:qserve
  * python-qserve DEFAULT:qserve PYPI-DEFAULT:qserve
* python-q DEFAULT:q PYPI-DEFAULT:q
* python-redis DEFAULT:redis PYPI-DEFAULT:redis
* python-reportlab DEFAULT:reportlab PYPI-DEFAULT:reportlab
  * python-repoze-tm2 DEFAULT:repoze.tm2 PYPI-DEFAULT:repoze.tm2
  * python-repoze-tm2 DEFAULT:repoze.tm2 PYPI-DEFAULT:repoze.tm2
  * python-repoze-what DEFAULT:repoze.what PYPI-DEFAULT:repoze.what
  * python-repoze-what DEFAULT:repoze.what PYPI-DEFAULT:repoze.what
Line 2,786: Line 3,291:
  * python-repoze-who-plugins-sa DEFAULT:repoze.who.plugins.sa PYPI-DEFAULT:repoze.who.plugins.sa
  * python-repoze-who-plugins-sa DEFAULT:repoze.who.plugins.sa PYPI-DEFAULT:repoze.who.plugins.sa
  * python-repoze-who-testutil DEFAULT:repoze.who-testutil PYPI-DEFAULT:repoze.who-testutil
  * python-repoze-who-testutil DEFAULT:repoze.who-testutil PYPI-DEFAULT:repoze.who-testutil
* python-requests DEFAULT:requests PYPI-DEFAULT:requests
* python-requests-kerberos /archive/(.*?)\.tar\.gz https://github.com/requests/requests-kerberos/tags
  * python-restkit DEFAULT:restkit PYPI-DEFAULT:restkit
  * python-restkit DEFAULT:restkit PYPI-DEFAULT:restkit
  * python-restsh DEFAULT:restsh PYPI-DEFAULT:restsh
  * python-restsh DEFAULT:restsh PYPI-DEFAULT:restsh
* python-robofab DEFAULT http://download.robofab.com/
  * python-rope DEFAULT:rope PYPI-DEFAULT:rope
  * python-rope DEFAULT:rope PYPI-DEFAULT:rope
* python-rosdep ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros-infrastructure/rosdep/releases
* python-rosdistro ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros/rosdistro/releases
* python-rosinstall ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/vcstools/rosinstall/releases
* python-rosinstall_generator ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros-infrastructure/rosinstall_generator/releases
* python-rospkg DEFAULT:rospkg http://download.ros.org/downloads/rospkg/
* python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
  * python-rpyc DEFAULT:rpyc PYPI-DEFAULT:rpyc
  * python-rpyc DEFAULT:rpyc PYPI-DEFAULT:rpyc
* python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
  * python-ruledispatch >RuleDispatch-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
  * python-ruledispatch >RuleDispatch-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
  * python-setuptools DEFAULT:distribute PYPI-DEFAULT:distribute
  * python-scrapy DEFAULT:Scrapy PYPI-DEFAULT:Scrapy
* python-SecretStorage DEFAULT:SecretStorage PYPI-DEFAULT:SecretStorage
* python-setuptools DEFAULT:setuptools PYPI-DEFAULT:setuptools
* python-shapely DEFAULT:Shapely PYPI-DEFAULT:Shapely
  * python-shove DEFAULT:shove PYPI-DEFAULT:shove
  * python-shove DEFAULT:shove PYPI-DEFAULT:shove
  * python-simplegeneric DEFAULT:simplegeneric PYPI-DEFAULT:simplegeneric
  * python-simplegeneric DEFAULT:simplegeneric PYPI-DEFAULT:simplegeneric
Line 2,798: Line 3,314:
  * python-six DEFAULT:six PYPI-DEFAULT:six
  * python-six DEFAULT:six PYPI-DEFAULT:six
  * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
  * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
* python-social-auth DEFAULT PYPI-DEFAULT
  * python-socketpool DEFAULT:socketpool PYPI-DEFAULT:socketpool
  * python-socketpool DEFAULT:socketpool PYPI-DEFAULT:socketpool
  * python-sphinx DEFAULT:Sphinx PYPI-DEFAULT:Sphinx
  * python-sphinx DEFAULT:Sphinx PYPI-DEFAULT:Sphinx
* python-sphinxcontrib-adadomain DEFAULT:sphinxcontrib-adadomain PYPI-DEFAULT:sphinxcontrib-adadomain
  * python-sprox DEFAULT:sprox PYPI-DEFAULT:sprox
  * python-sprox DEFAULT:sprox PYPI-DEFAULT:sprox
  * python-sqlalchemy DEFAULT:SQLAlchemy PYPI-DEFAULT:SQLAlchemy
  * python-sqlalchemy DEFAULT:SQLAlchemy PYPI-DEFAULT:SQLAlchemy
Line 2,806: Line 3,324:
  * python-sqlite3dbm DEFAULT:sqlite3dbm PYPI-DEFAULT:sqlite3dbm
  * python-sqlite3dbm DEFAULT:sqlite3dbm PYPI-DEFAULT:sqlite3dbm
  * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
  * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
* python-statsmodels DEFAULT:statsmodels PYPI-DEFAULT:statsmodels
  * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
  * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
  * python-storm DEFAULT:storm LP-DEFAULT:storm
  * python-storm DEFAULT:storm LP-DEFAULT:storm
* python-subprocess32 DEFAULT:subprocess32 PYPI-DEFAULT:subprocess32
  * python-sure DEFAULT:sure PYPI-DEFAULT:sure
  * python-sure DEFAULT:sure PYPI-DEFAULT:sure
* python-tables GITHUB-TAGS GITHUB-TAGS:PyTables/PyTables
  * python-testtools DEFAULT:testtools LP-DEFAULT:testtools
  * python-testtools DEFAULT:testtools LP-DEFAULT:testtools
  * python-textile DEFAULT:textile PYPI-DEFAULT:textile
  * python-textile DEFAULT:textile PYPI-DEFAULT:textile
* python-tftpy DEFAULT:tftpy SF-DEFAULT:tftpy
  * python-tg-devtools DEFAULT:tg.devtools PYPI-DEFAULT:tg.devtools
  * python-tg-devtools DEFAULT:tg.devtools PYPI-DEFAULT:tg.devtools
  * python-tgcaptcha DEFAULT:TGCaptcha PYPI-DEFAULT:TGCaptcha
  * python-tgcaptcha DEFAULT:TGCaptcha PYPI-DEFAULT:TGCaptcha
Line 2,821: Line 3,343:
  * python-tracing DEFAULT http://code.liw.fi/debian/pool/main/p/python-tracing/
  * python-tracing DEFAULT http://code.liw.fi/debian/pool/main/p/python-tracing/
  * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
  * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
* python-trollius DEFAULT:trollius PYPI-DEFAULT:trollius
  * python-ttystatus DEFAULT http://code.liw.fi/debian/pool/main/p/python-ttystatus/
  * python-ttystatus DEFAULT http://code.liw.fi/debian/pool/main/p/python-ttystatus/
  * python-TurboMail DEFAULT:TurboMail PYPI-DEFAULT:TurboMail
  * python-TurboMail DEFAULT:TurboMail PYPI-DEFAULT:TurboMail
Line 2,831: Line 3,354:
  * python-tw2-core DEFAULT:tw2.core PYPI-DEFAULT:tw2.core
  * python-tw2-core DEFAULT:tw2.core PYPI-DEFAULT:tw2.core
  * python-twisted DEFAULT:Twisted http://twistedmatrix.com/trac/wiki/Downloads
  * python-twisted DEFAULT:Twisted http://twistedmatrix.com/trac/wiki/Downloads
  * python-txws DEFAULT:txWS http://pypi.python.org/pypi/txWS
  * python-txws DEFAULT:txWS PYPI-DEFAULT:txWS
  * python-txzmq DEFAULT:txZMQ http://pypi.python.org/pypi/txZMQ
  * python-txzmq DEFAULT:txZMQ PYPI-DEFAULT:txZMQ
  * python-uinput dist/([0-9.]+[0-9]) https://github.com/tuomasjjrasanen/python-uinput/tags
  * python-uinput dist/([0-9.]+[0-9]) https://github.com/tuomasjjrasanen/python-uinput/tags
* python-ujson DEFAULT:ujson PYPI-DEFAULT:ujson
  * python-unicodenazi DEFAULT:unicode-nazi PYPI-DEFAULT:unicode-nazi
  * python-unicodenazi DEFAULT:unicode-nazi PYPI-DEFAULT:unicode-nazi
  * python-urwid DEFAULT:urwid PYPI-DEFAULT:urwid
  * python-urwid DEFAULT:urwid PYPI-DEFAULT:urwid
  * python-versiontools DEFAULT:versiontools PYPI-DEFAULT:versiontools
  * python-versiontools DEFAULT:versiontools PYPI-DEFAULT:versiontools
  * python-virtualenvwrapper DEFAULT:virtualenvwrapper http://pypi.python.org/pypi/virtualenvwrapper
  * python-virtualenvwrapper DEFAULT:virtualenvwrapper PYPI-DEFAULT:virtualenvwrapper
  * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
  * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
* python-volatility DEFAULT:volatility GOOGLE-DEFAULT:volatility
  * python-waitress DEFAULT:waitress PYPI-DEFAULT:waitress
  * python-waitress DEFAULT:waitress PYPI-DEFAULT:waitress
* python-warlock DEFAULT:warlock PYPI-DEFAULT:warlock
  * python-weberror DEFAULT:WebError PYPI-DEFAULT:WebError
  * python-weberror DEFAULT:WebError PYPI-DEFAULT:WebError
  * python-webflash DEFAULT:WebFlash PYPI-DEFAULT:WebFlash
  * python-webflash DEFAULT:WebFlash PYPI-DEFAULT:WebFlash
Line 2,847: Line 3,373:
  * python-werkzeug DEFAULT:Werkzeug PYPI-DEFAULT:Werkzeug
  * python-werkzeug DEFAULT:Werkzeug PYPI-DEFAULT:Werkzeug
  * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
  * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
* python-wstool ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/vcstools/wstool/releases
* python-x2go python-x2go-(.*)\.tar\.gz http://code.x2go.org/releases/source/python-x2go/
  * python-xkit DEFAULT:x-kit LP-DEFAULT:xorgparser
  * python-xkit DEFAULT:x-kit LP-DEFAULT:xorgparser
  * python-xtermcolor DEFAULT:xtermcolor PYPI-DEFAULT:xtermcolor
  * python-xtermcolor DEFAULT:xtermcolor PYPI-DEFAULT:xtermcolor
Line 2,867: Line 3,395:
  * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.sqlalchemy
  * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.sqlalchemy
  * python-zope-testing zope\.testing-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.testing
  * python-zope-testing zope\.testing-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.testing
* python3-bsddb3 \bbsddb3-([0-9.]+?)\.tar\.gz\b PYPI-DEFAULT:bsddb3
  * python3-chardet DEFAULT http://chardet.feedparser.org/download/
  * python3-chardet DEFAULT http://chardet.feedparser.org/download/
  * python3-zope-fixers DEFAULT:zope.fixers PYPI-DEFAULT:zope.fixers
  * python3-zope-fixers DEFAULT:zope.fixers PYPI-DEFAULT:zope.fixers
* pyxdg DEFAULT http://people.freedesktop.org/~takluyver/
* pyxmlsec DEFAULT http://labs.libre-entreprise.org/frs/?group_id=17
  * PyYAML DEFAULT http://pyyaml.org/download/pyyaml/
  * PyYAML DEFAULT http://pyyaml.org/download/pyyaml/
</pre>
</pre>


=== Q - W ===
=== Q ===
<pre>
<pre>
  * qbzr DEFAULT LP-DEFAULT
  * qbzr DEFAULT LP-DEFAULT
* qemu DEFAULT http://wiki.qemu.org/Download
  * qiv DEFAULT http://spiegl.de/qiv/download/
  * qiv DEFAULT http://spiegl.de/qiv/download/
* qjackctl DEFAULT http://qjackctl.sourceforge.net/
  * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
  * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
  * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
  * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
Line 2,882: Line 3,413:
  * qof DEFAULT SF-DEFAULT
  * qof DEFAULT SF-DEFAULT
  * qrupdate DEFAULT SF-DEFAULT
  * qrupdate DEFAULT SF-DEFAULT
* qsstv DEFAULT http://users.telenet.be/on4qz/qsstv/downloads/
  * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
  * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
  * qt-creator DEFAULT http://releases.qt-project.org/qtcreator/current_stable/
  * qt-creator DEFAULT:qt-creator-opensource-src http://download.qt-project.org/official_releases/qtcreator/*/*/
  * qterm DEFAULT SF-DEFAULT
  * qterm DEFAULT SF-DEFAULT
* qtkeychain GITHUB-TAGS GITHUB-TAGS:frankosterfeld/qtkeychain
  * quagga DEFAULT http://download.savannah.gnu.org/releases/quagga/
  * quagga DEFAULT http://download.savannah.gnu.org/releases/quagga/
* quassel DEFAULT http://quassel-irc.org/pub/
  * quazip DEFAULT SF-DEFAULT
  * quazip DEFAULT SF-DEFAULT
  * qucs DEFAULT SF-DEFAULT
  * qucs qucs-([0-9]+\.[0-9]+\.[0-9]+).tar.gz SF-DEFAULT
  * quilt DEFAULT http://savannah.nongnu.org/files/?group=quilt
  * quilt DEFAULT http://download.savannah.gnu.org/releases/quilt/
  * quodlibet DEFAULT GOOGLE-DEFAULT
  * quodlibet DEFAULT https://bitbucket.org/lazka/quodlibet-files/src/default/releases/
  * quota DEFAULT SF-DEFAULT:linuxquota
  * quota DEFAULT SF-DEFAULT:linuxquota
* quotatool DEFAULT http://quotatool.ekenberg.se/index.php?node=download
  * qwt DEFAULT SF-DEFAULT
  * qwt DEFAULT SF-DEFAULT
</pre>
=== R - Ruby ===
<pre>
* R DEFAULT http://cran.rstudio.com/banner.shtml
* R-car DEFAULT http://cran.r-project.org/src/contrib/
* R-lmtest DEFAULT http://cran.r-project.org/src/contrib/
* R-multcomp DEFAULT http://cran.r-project.org/src/contrib/
* R-mvtnorm DEFAULT http://cran.r-project.org/src/contrib/
* R-zoo DEFAULT http://cran.r-project.org/src/contrib/
  * RackTables DEFAULT SF-DEFAULT:racktables
  * RackTables DEFAULT SF-DEFAULT:racktables
  * radvd DEFAULT http://www.litech.org/radvd/
  * radvd DEFAULT http://www.litech.org/radvd/
  * rakarrack rakarrack-(.[^-]*?).tar.(?:bz2|gz) SF-DEFAULT
  * rakarrack rakarrack-(.[^-]*?).tar.(?:bz2|gz) SF-DEFAULT
* ramond DEFAULT SF-DEFAULT
  * ranger DEFAULT http://download.savannah.gnu.org/releases/ranger/releases/
  * ranger DEFAULT http://download.savannah.gnu.org/releases/ranger/releases/
  * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
  * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
* raptor2 DEFAULT http://download.librdf.org/source/
  * rasterview DEFAULT http://www.easysw.com/~mike/rasterview/
  * rasterview DEFAULT http://www.easysw.com/~mike/rasterview/
  * ratproxy DEFAULT GOOGLE-DEFAULT
  * ratproxy DEFAULT GOOGLE-DEFAULT
  * rb_libtorrent DEFAULT:libtorrent-rasterbar GOOGLE-DEFAULT:libtorrent
  * rb_libtorrent DEFAULT:libtorrent-rasterbar GOOGLE-DEFAULT:libtorrent
  * rcs DEFAULT GNU-DEFAULT
  * rcs DEFAULT GNU-DEFAULT
  * rcsslogplayer \"([0-20]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcsslogplayer/
  * rcsslogplayer DEFAULT SF-DEFAULT:sserver
  * rcssmonitor \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssmonitor/
  * rcssmonitor \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssmonitor/
  * rcssserver \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssserver/
  * rcssserver \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssserver/
Line 2,907: Line 3,454:
  * rdesktop DEFAULT SF-DEFAULT
  * rdesktop DEFAULT SF-DEFAULT
  * readline DEFAULT GNU-DEFAULT
  * readline DEFAULT GNU-DEFAULT
* readosm DEFAULT http://www.gaia-gis.it/gaia-sins/readosm-sources/
* realmd DEFAULT http://www.freedesktop.org/software/realmd/releases/
  * recode v([.0-9]+)\.(?:tar|zip) https://github.com/pinard/Recode/tags
  * recode v([.0-9]+)\.(?:tar|zip) https://github.com/pinard/Recode/tags
  * recutils DEFAULT GNU-DEFAULT
  * recutils DEFAULT GNU-DEFAULT
* redet-doc redet_manual(.*?).tar.gz http://billposer.org/Software/redet.html
  * redet redet-(.*?).tar.gz http://billposer.org/Software/redet.html
  * redet redet-(.*?).tar.gz http://billposer.org/Software/redet.html
* redet-doc DEFAULT:redet_manual http://billposer.org/Software/redet.html
  * redis redis-(.*?).tar.gz http://redis.io/download
  * redis redis-(.*?).tar.gz http://redis.io/download
  * redshift DEFAULT LP-DEFAULT
  * redshift DEFAULT LP-DEFAULT
Line 2,919: Line 3,468:
  * remind DEFAULT http://www.roaringpenguin.com/files/download/
  * remind DEFAULT http://www.roaringpenguin.com/files/download/
  * remmina DEFAULT SF-DEFAULT
  * remmina DEFAULT SF-DEFAULT
* RemoteBox DEFAULT http://knobgoblin.org.uk/downloads.cgi
* reposurgeon DEFAULT http://www.catb.org/~esr/reposurgeon/
  * reptyr DEFAULT https://github.com/nelhage/reptyr/tags
  * reptyr DEFAULT https://github.com/nelhage/reptyr/tags
  * resource-agents archive/v(.*?)\.zip https://github.com/ClusterLabs/resource-agents/tags
  * resource-agents archive/v(.*?)\.zip https://github.com/ClusterLabs/resource-agents/tags
Line 2,925: Line 3,476:
  * rfkill DEFAULT http://kernel.org/pub/software/network/rfkill/
  * rfkill DEFAULT http://kernel.org/pub/software/network/rfkill/
  * riak (\d+\.\d+\.?\d+?)\.zip https://github.com/basho/riak/tags
  * riak (\d+\.\d+\.?\d+?)\.zip https://github.com/basho/riak/tags
* ripright DEFAULT http://www.mcternan.me.uk/ripright/index.html
  * rlwrap DEFAULT http://utopia.knoware.nl/~hlub/rlwrap/
  * rlwrap DEFAULT http://utopia.knoware.nl/~hlub/rlwrap/
  * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
  * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
Line 2,933: Line 3,485:
  * routino DEFAULT http://www.routino.org/download/
  * routino DEFAULT http://www.routino.org/download/
  * roxterm DEFAULT SF-DEFAULT
  * roxterm DEFAULT SF-DEFAULT
* robust-http-client DEFAULT https://github.com/kohsuke/robust-http-client/tags
  * rp-pppoe DEFAULT http://www.roaringpenguin.com/products/pppoe
  * rp-pppoe DEFAULT http://www.roaringpenguin.com/products/pppoe
  * rpl DEFAULT SF-DEFAULT
  * rpl DEFAULT SF-DEFAULT
  * rpmlint DEFAULT http://rpmlint.zarb.org/download/
  * rpmlint DEFAULT SF-DEFAULT
* rpcbind DEFAULT SF-DEFAULT
  * rpmorphan DEFAULT SF-DEFAULT
  * rpmorphan DEFAULT SF-DEFAULT
  * rrdtool rrdtool-([0-9\.]+).tar.gz http://oss.oetiker.ch/rrdtool/pub/
  * rrdtool rrdtool-([0-9\.]+).tar.gz http://oss.oetiker.ch/rrdtool/pub/
Line 2,945: Line 3,499:
  * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
  * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
  * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/
  * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/
  * ruby ruby-([0-9]+\.[0-9]+\.[0-9]+)-p([0-9]+)\.tar\.gz ftp://ftp.ruby-lang.org/pub/ruby/stable/
</pre>
* ruby-mysql mysql-ruby-(.*?).tar.gz http://tmtm.org/downloads/mysql/ruby/
 
  * rubygem-Ascii85 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
=== Ruby ===
* rubygem-POpen4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
<pre>
* rubygem-Platform RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
  * ruby DEFAULT http://ftp.ruby-lang.org/pub/ruby/stable/
* rubygem-ZenTest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
  * rubygem-* RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-abstract RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
</pre>
* rubygem-actionmailer RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
 
* rubygem-actionpack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
=== Ruby - S ===
* rubygem-activemodel RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
<pre>
  * rubygem-activerecord RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
  * rwhoisd DEFAULT http://projects.arin.net/rwhois/ftp/
* rubygem-activeresource RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
  * rxvt-unicode DEFAULT http://dist.schmorp.de/rxvt-unicode/
* rubygem-activesupport RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ammeter RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-archivist RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-arel RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-aruba RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-audited RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-audited-activerecord RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-aws RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-bacon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-bcrypt-ruby RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-bson RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-bson_ext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-builder RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-bundler RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-coderay RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-coffee-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-coffee-script RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-coffee-script-source RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-commander RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-compass-960-plugin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-crack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-cucumber-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-daemon_controller RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-database_cleaner RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-delayed_job RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-delorean RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-diff-lcs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ditz RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-dynect_rest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-erubis RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-eventmachine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-excon RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-execjs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-fakefs RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-fast_gettext RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-factory_girl RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-factory_girl_rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-file-tail RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-fog RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-formatador RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-fssm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-gem-patch RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-gem-nice-install RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-gem2rpm RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-gettext_i18n_rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-gherkin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-haml RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-haml-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-hashr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-heroku RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-heroku-api RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-hike RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-http_connection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-i18n RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-i18n_data RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-introspection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ipaddress RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-journey RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-jquery-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-json_pure RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-kgio RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-linode RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-listen RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-little-plugger RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-logging RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mail RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-map RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-metaclass RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-method_source RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-minitest RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mime-types RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mixlib-authentication RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mixlib-cli RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mixlib-config RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mixlib-log RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mixlib-shellout RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mocha RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-multi_json RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-multi_xml RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-multipart RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-multipart-post RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-mustache RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-net-ldap RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
  * rubygem-net-ping RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-net-scp RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-net-ssh-gateway RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-netrc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-oauth RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-open4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-openstack-compute RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-pdf-reader RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-pg RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-polyglot RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-pr_geohash RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-puppet-lint RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack-cache RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack-mount RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack-protection RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack-restful_submit RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack-ssl RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rack-test RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rails_warden RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-railties RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-raindrops RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rake RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rb-inotify RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rbovirt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rdoc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ref RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-regin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rerun RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rhc RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rsolr RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rspec RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rspec-core RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rspec-expectations RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rspec-mocks RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-rspec-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ruby-dbus RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ruby-libvirt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ruby-rc4 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ruby2ruby RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ruby_parser RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sass RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sass-rails RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-scruffy RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-scoped_search RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-session RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sexp_processor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-shindo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-simple-navigation RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sinatra RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-slop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sprockets RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sqlite3 RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-state_machine RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-sup RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-systemu RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-term-ansicolor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-test_declarative RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-text-format RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-therubyracer RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-thin RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-thor RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-tilt RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-transaction-simple RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-treetop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-trollop RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-ttfunk RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-typhoeus RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-tzinfo RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-uglifier RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-uuidtools RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-warden RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-webmock RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-will_paginate RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-xml-simple RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
* rubygem-yard RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT
  * rygel DEFAULT GNOME-DEFAULT
  * rygel DEFAULT GNOME-DEFAULT
</pre>
=== S ===
<pre>
  * s3cmd DEFAULT SF-DEFAULT:s3tools
  * s3cmd DEFAULT SF-DEFAULT:s3tools
* s3ql DEFAULT GOOGLE-DEFAULT
  * sage DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
  * sage DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
* sagemath DEFAULT:sage http://boxen.math.washington.edu/home/sagemath/sage-mirror/src/index.html
  * sakura DEFAULT LP-DEFAULT
  * sakura DEFAULT LP-DEFAULT
  * samba DEFAULT http://samba.org/ftp/samba/
  * samba DEFAULT http://samba.org/ftp/samba/
  * sane-backends sane-backends-([0-9]+\.[0-9]+\.[0-9]+) ftp://ftp2.sane-project.org/pub/sane/
  * sane-backends DEFAULT http://alioth.debian.org/frs/?group_id=30186
* saoimage DEFAULT http://tdc-www.harvard.edu/software/saoimage
* scanmem scanmem-([0-9.]*?) GOOGLE-DEFAULT:scanmem
  * scala DEFAULT http://www.scala-lang.org/downloads
  * scala DEFAULT http://www.scala-lang.org/downloads
  * scapy DEFAULT http://www.secdev.org/projects/scapy/files/
  * scapy DEFAULT http://www.secdev.org/projects/scapy/files/
Line 3,131: Line 3,532:
  * scim-m17n DEFAULT SF-DEFAULT:scim
  * scim-m17n DEFAULT SF-DEFAULT:scim
  * scim-pinyin DEFAULT SF-DEFAULT:scim
  * scim-pinyin DEFAULT SF-DEFAULT:scim
* scipy scipy-([0-9.]*?).tar.gz SF-DEFAULT
  * scitools DEFAULT GOOGLE-DEFAULT
  * scitools DEFAULT GOOGLE-DEFAULT
  * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
  * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
  * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
  * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
  * screen DEFAULT GNU-DEFAULT
  * screen DEFAULT GNU-DEFAULT
* scribus DEFAULT SF-DEFAULT
* scsi-target-utils archive/v(.*?)\.zip https://github.com/fujita/tgt/tags
* sddm archive/(.*?)\.zip https://github.com/sddm/sddm/tags
  * SDL DEFAULT http://www.libsdl.org/download-1.2.php
  * SDL DEFAULT http://www.libsdl.org/download-1.2.php
* SDL2 DEFAULT http://www.libsdl.org/download-2.0.php
  * sdcv DEFAULT SF-DEFAULT
  * sdcv DEFAULT SF-DEFAULT
  * sdparm DEFAULT http://sg.danny.cz/sg/p/
  * sdparm DEFAULT http://sg.danny.cz/sg/p/
Line 3,141: Line 3,547:
  * sed DEFAULT GNU-DEFAULT
  * sed DEFAULT GNU-DEFAULT
  * seed DEFAULT GNOME-DEFAULT
  * seed DEFAULT GNOME-DEFAULT
* seeker \bSeeker\s+v?([^,\s]+) http://smp.if.uj.edu.pl/~baryluk/seeker_baryluk.c
  * seekwatcher seekwatcher-(.*?).tar.bz2 http://oss.oracle.com/~mason/seekwatcher/
  * seekwatcher seekwatcher-(.*?).tar.bz2 http://oss.oracle.com/~mason/seekwatcher/
  * seivot DEFAULT http://code.liw.fi/debian/pool/main/s/seivot/
  * seivot DEFAULT http://code.liw.fi/debian/pool/main/s/seivot/
Line 3,147: Line 3,552:
  * senamirmir-washra-fonts DEFAULT:washra_fonts http://www.senamirmir.org/projects/typography/typeface.html
  * senamirmir-washra-fonts DEFAULT:washra_fonts http://www.senamirmir.org/projects/typography/typeface.html
  * sendmail \bsendmail[.-]([\d.]+).tar ftp://ftp.sendmail.org/pub/sendmail/
  * sendmail \bsendmail[.-]([\d.]+).tar ftp://ftp.sendmail.org/pub/sendmail/
  * sendxmpp DEFAULT http://sendxmpp.platon.sk/
  * sendxmpp archive/v(.*?)\.zip https://github.com/lhost/sendxmpp/releases
  * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
  * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
* sfk DEFAULT SF-DEFAULT:swissfileknife
  * sg3_utils DEFAULT http://sg.danny.cz/sg/sg3_utils.html
  * sg3_utils DEFAULT http://sg.danny.cz/sg/sg3_utils.html
  * shadow-utils DEFAULT:shadow http://pkg-shadow.alioth.debian.org/releases/
  * shadow-utils DEFAULT:shadow http://pkg-shadow.alioth.debian.org/releases/
  * sharutils DEFAULT GNU-DEFAULT
  * sharutils DEFAULT GNU-DEFAULT
  * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
  * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
  * shorewall /pub/shorewall/\d+\.\d+/shorewall-(\d+\.\d+\.\d+)/releasenotes.txt http://www.shorewall.net/shorewall_index.htm
  * shogun DEFAULT https://github.com/shogun-toolbox/shogun/releases
  * shotwell DEFAULT http://yorba.org/download/shotwell/*/
* shorewall DEFAULT http://www.shorewall.net/pub/shorewall/CURRENT_STABLE_VERSION_IS_*/shorewall-*/
  * shortrpm DEFAULT http://v3.sk/~lkundrak/shortrpm
* shotwell DEFAULT GNOME-DEFAULT
  * shtool DEFAULT GNU-DEFAULT
  * shtool DEFAULT GNU-DEFAULT
  * shutter DEFAULT http://shutter-project.org/wp-content/uploads/releases/tars/
  * shutter DEFAULT http://shutter-project.org/wp-content/uploads/releases/tars/
Line 3,163: Line 3,571:
  * sil-charis-compact-fonts DEFAULT:CharisSILCompact http://scripts.sil.org/CharisSIL_download
  * sil-charis-compact-fonts DEFAULT:CharisSILCompact http://scripts.sil.org/CharisSIL_download
  * sil-charis-fonts DEFAULT:CharisSIL http://scripts.sil.org/CharisSIL_download
  * sil-charis-fonts DEFAULT:CharisSIL http://scripts.sil.org/CharisSIL_download
  * sil-lateef-fonts \bLateefRegOT_([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=ArabicFonts_Download
  * sil-lateef-fonts \bLateefRegOT_([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?item_id=Lateef
  * sil-mingzat-fonts DEFAULT:Mingzat http://scripts.sil.org/Mingzat
  * sil-mingzat-fonts DEFAULT:Mingzat http://scripts.sil.org/Mingzat
  * sil-scheherazade-fonts DEFAULT:ScheherazadeRegOT http://scripts.sil.org/ArabicFonts_Download
  * sil-scheherazade-fonts DEFAULT:Scheherazade http://scripts.sil.org/cms/scripts/page.php?item_id=Scheherazade
  * simspark \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/simspark/
  * simspark \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/simspark/
* simulavr DEFAULT http://download.savannah.gnu.org/releases-noredirect/simulavr/
  * sipcalc DEFAULT http://www.routemeister.net/projects/sipcalc/download.html
  * sipcalc DEFAULT http://www.routemeister.net/projects/sipcalc/download.html
  * sipwitch DEFAULT GNU-DEFAULT
  * sipwitch DEFAULT GNU-DEFAULT
* sisu DEFAULT https://github.com/sonatype/sisu/tags
* sk2py DEFAULT SF-DEFAULT
  * skipfish DEFAULT GOOGLE-DEFAULT
  * skipfish DEFAULT GOOGLE-DEFAULT
  * sks DEFAULT GOOGLE-DEFAULT:sks-keyserver
  * sks DEFAULT https://bitbucket.org/skskeyserver/sks-keyserver/downloads
  * skstream DEFAULT SF-DEFAULT:worldforge
  * skstream DEFAULT SF-DEFAULT:worldforge
  * slang DEFAULT ftp://space.mit.edu/pub/davis/slang/*/
  * slang DEFAULT ftp://space.mit.edu/pub/davis/slang/*/
Line 3,183: Line 3,588:
  * smartmontools DEFAULT SF-DEFAULT
  * smartmontools DEFAULT SF-DEFAULT
  * smem smem-([0-9\.]+)\.tar\.gz http://www.selenic.com/smem/download/
  * smem smem-([0-9\.]+)\.tar\.gz http://www.selenic.com/smem/download/
* smokeping DEFAULT http://oss.oetiker.ch/smokeping/pub/
* smooks ve/v(.*).tar.gz https://github.com/smooks/smooks/releases
  * smp_utils DEFAULT http://sg.danny.cz/sg/smp_utils.html
  * smp_utils DEFAULT http://sg.danny.cz/sg/smp_utils.html
  * smstools smstools3-(.*).tar.gz http://smstools3.kekekasvi.com/packages/
  * smstools smstools3-(.*?)\.tar\.gz http://smstools3.kekekasvi.com/packages/
  * snakeyaml DEFAULT:SnakeYAML-all https://code.google.com/p/snakeyaml/downloads/list
  * snakeyaml DEFAULT:SnakeYAML-all GOOGLE-DEFAULT
* snapper DEFAULT ftp://ftp.suse.com/pub/projects/snapper
* snappy DEFAULT GOOGLE-DEFAULT
* snifflib "([^"]+)/" http://svn.code.sf.net/p/snifflib/code/tags/
  * snmp++ snmp\+\+v([0-9\.]+)\.tar http://www.agentpp.com/snmp_pp3_x/download_snmp_ppv3/body_download_snmp_ppv3.html
  * snmp++ snmp\+\+v([0-9\.]+)\.tar http://www.agentpp.com/snmp_pp3_x/download_snmp_ppv3/body_download_snmp_ppv3.html
  * socat DEFAULT http://www.dest-unreach.org/socat/
  * socat DEFAULT http://www.dest-unreach.org/socat/
  * soci soci-([0-9.]*)\.tar\.gz SF-DEFAULT
  * soci soci-([0-9.]*)\.tar\.gz SF-DEFAULT
* softhsm DEFAULT http://dist.opendnssec.org/source/
  * solfege DEFAULT GNU-DEFAULT
  * solfege DEFAULT GNU-DEFAULT
  * sombok ([0-9.]\.[0-9.]\.[0-9.].*)\.tar\.gz http://sourceforge.net/api/file/index/project-name/linefold/mtime/desc/limit/20/rss
  * sombok ([0-9.]\.[0-9.]\.[0-9.].*)\.tar\.gz http://sourceforge.net/api/file/index/project-name/linefold/mtime/desc/limit/20/rss
Line 3,197: Line 3,608:
  * soundtracker DEFAULT http://www.soundtracker.org/
  * soundtracker DEFAULT http://www.soundtracker.org/
  * sox DEFAULT SF-DEFAULT
  * sox DEFAULT SF-DEFAULT
* soxr DEFAULT SF-DEFAULT
  * spacechart DEFAULT GNU-DEFAULT
  * spacechart DEFAULT GNU-DEFAULT
  * spamassassin DEFAULT http://spamassassin.apache.org/downloads.cgi
  * spamassassin DEFAULT http://spamassassin.apache.org/downloads.cgi
  * sparse DEFAULT http://kernel.org/pub/software/devel/sparse/dist/
  * sparse DEFAULT http://kernel.org/pub/software/devel/sparse/dist/
  * sparsehash DEFAULT GOOGLE-DEFAULT
  * sparsehash DEFAULT GOOGLE-DEFAULT
* spatialite-gui DEFAULT http://www.gaia-gis.it/gaia-sins/spatialite-gui-sources/
* spatialite-tools DEFAULT http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/
* spectrwm spectrwm-(.*?).tgz https://opensource.conformal.com/snapshots/spectrwm/
  * spew DEFAULT ftp://ftp.berlios.de/pub/spew/Latest/
  * spew DEFAULT ftp://ftp.berlios.de/pub/spew/Latest/
  * sphinx \bsphinx-(.+?)-release http://sphinxsearch.com/downloads/release/
  * sphinx \bsphinx-(.+?)-release http://sphinxsearch.com/downloads/release/
* spice DEFAULT http://www.spice-space.org/download/releases/
  * spindown DEFAULT GOOGLE-DEFAULT
  * spindown DEFAULT GOOGLE-DEFAULT
  * splint DEFAULT http://www.splint.org/download.html
  * splint DEFAULT http://www.splint.org/download.html
  * sqlite Version\s+([\d.]+\d) http://www.sqlite.org/news.html
* spyder spyder-([\d.]+\d).zip GOOGLE-DEFAULT:spyderlib
* springframework-retry ([0-9.]+).RELEASE.tar.gz https://github.com/spring-projects/spring-retry/releases
  * sqlite ersion\s+([\d.]+\d) http://www.sqlite.org/news.html
  * sqlninja DEFAULT SF-DEFAULT
  * sqlninja DEFAULT SF-DEFAULT
  * squashfs-tools squashfs([\d.]+)\.t SF-DEFAULT:squashfs
  * squashfs-tools squashfs([\d.]+)\.t SF-DEFAULT:squashfs
  * squid squid-([0-9]+\.[0-9]+\.[1-9][0-9.]*)\. ftp://ftp.squid-cache.org/pub/squid/
  * squid DEFAULT ftp://ftp.squid-cache.org/pub/squid/
  * sshmenu DEFAULT SF-DEFAULT
  * sshmenu DEFAULT SF-DEFAULT
  * sslstrip DEFAULT http://www.thoughtcrime.org/software/sslstrip/
  * sslstrip DEFAULT http://www.thoughtcrime.org/software/sslstrip/
  * ssmtp DEFAULT DEBIAN-DEFAULT
  * ssmtp DEFAULT DEBIAN-DEFAULT
* st DEFAULT http://dl.suckless.org/st/
* stapler stapler-parent-([\d\.]+).tar.gz https://github.com/stapler/stapler/tags
* star DEFAULT ftp://ftp.berlios.de/pub/star
  * stardict DEFAULT GOOGLE-DEFAULT:stardict-3
  * stardict DEFAULT GOOGLE-DEFAULT:stardict-3
  * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
  * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
Line 3,219: Line 3,640:
  * stgit DEFAULT http://download.gna.org/stgit/
  * stgit DEFAULT http://download.gna.org/stgit/
  * stix-fonts \bSTIXv([\d.]+)\.zip SF-DEFAULT:stixfonts
  * stix-fonts \bSTIXv([\d.]+)\.zip SF-DEFAULT:stixfonts
* stjerm GITHUB-TAGS GITHUB-TAGS:stjerm/stjerm
  * stk DEFAULT https://ccrma.stanford.edu/software/stk/download.html
  * stk DEFAULT https://ccrma.stanford.edu/software/stk/download.html
* stompclt DEFAULT http://cons.web.cern.ch/cons/perl/stompclt/
  * strace DEFAULT SF-DEFAULT
  * strace DEFAULT SF-DEFAULT
  * strigi strigi version (.*?) \([2-9][0-9][0-9][0-9]-[0-1][0-9]-[0-3][0-9]\) http://www.vandenoever.info/software/strigi/
  * strigi DEFAULT http://www.vandenoever.info/software/strigi/
* strongswan DEFAULT http://download.strongswan.org/
  * stow DEFAULT GNU-DEFAULT
  * stow DEFAULT GNU-DEFAULT
* stunnel DEFAULT http://www.stunnel.org/downloads.html
  * subdownloader DEFAULT LP-DEFAULT
  * subdownloader DEFAULT LP-DEFAULT
  * subversion DEFAULT http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260
  * subnetcalc DEFAULT http://www.exp-math.uni-essen.de/~dreibh/subnetcalc/
* subversion DEFAULT https://www.apache.org/dist/subversion/
  * sudo DEFAULT http://www.sudo.ws/sudo/dist/
  * sudo DEFAULT http://www.sudo.ws/sudo/dist/
  * sugar-ruler DEFAULT:Ruler http://download.sugarlabs.org/sources/honey/Ruler/
  * sugar-ruler DEFAULT:Ruler http://download.sugarlabs.org/sources/honey/Ruler/
* suitesparse DEFAULT:SuiteSparse http://www.cise.ufl.edu/research/sparse/SuiteSparse/
  * summain DEFAULT http://code.liw.fi/debian/pool/main/s/summain/
  * summain DEFAULT http://code.liw.fi/debian/pool/main/s/summain/
  * sundials sundials-([0-9.]+)\.tar\.[gzb2]+ http://www.llnl.gov/CASC/sundials/download/download.html
  * sundials sundials-([0-9.]+)\.tar\.[gzb2]+ http://www.llnl.gov/CASC/sundials/download/download.html
  * supertux DEFAULT http://supertux.lethargik.org/download.html
  * supertux DEFAULT http://supertux.lethargik.org/download.html
  * supertuxkart DEFAULT SF-DEFAULT
  * supertuxkart DEFAULT SF-DEFAULT
* surf surf-(.*?).tar.gz http://dl.suckless.org/surf/
  * surfraw surfraw-(.*?).tar.gz http://surfraw.alioth.debian.org/dist/
  * surfraw surfraw-(.*?).tar.gz http://surfraw.alioth.debian.org/dist/
  * svn2cl DEFAULT http://arthurdejong.org/svn2cl/downloads.html
  * svn2cl DEFAULT http://arthurdejong.org/svn2cl/downloads.html
* svni DEFAULT SF-DEFAULT
* svxlink svxlink-(.*\..*)\.tar\.gz SF-DEFAULT
  * swarp DEFAULT http://www.astromatic.net/download/swarp/
  * swarp DEFAULT http://www.astromatic.net/download/swarp/
* swig swig-([0-9.]*?).tar.gz SF-DEFAULT
  * sxiv DEFAULT https://github.com/muennich/sxiv/downloads
  * sxiv DEFAULT https://github.com/muennich/sxiv/downloads
  * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
  * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
  * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
  * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
  * sympy DEFAULT GOOGLE-DEFAULT
  * sympy DEFAULT PYPI-DEFAULT
  * synapse DEFAULT LP-DEFAULT:synapse-project
  * synapse DEFAULT LP-DEFAULT:synapse-project
  * synfig DEFAULT SF-DEFAULT
  * synfig DEFAULT SF-DEFAULT
  * synfigstudio DEFAULT SF-DEFAULT:synfig
  * synfigstudio DEFAULT SF-DEFAULT:synfig
* syntastic "name":\s*"([\d\.]+)" https://api.github.com/repos/scrooloose/syntastic/tags
  * sysbench DEFAULT SF-DEFAULT
  * sysbench DEFAULT SF-DEFAULT
  * sysconftool DEFAULT SF-DEFAULT:courier
  * sysconftool DEFAULT SF-DEFAULT:courier
Line 3,247: Line 3,679:
  * syslog-ng >(\d[\w.]+)< http://www.balabit.com/downloads/files/syslog-ng/sources/
  * syslog-ng >(\d[\w.]+)< http://www.balabit.com/downloads/files/syslog-ng/sources/
  * sysstat DEFAULT http://sebastien.godard.pagesperso-orange.fr/download.html
  * sysstat DEFAULT http://sebastien.godard.pagesperso-orange.fr/download.html
* system-config-keyboard DEFAULT https://fedorahosted.org/releases/s/y/system-config-keyboard
* system-config-rootpassword system-config-rootpassword-([\d+\.]+)/ http://svn.fedorahosted.org/svn/system-config-rootpassword/tags/
  * systemtap DEFAULT http://sourceware.org/systemtap/ftp/releases
  * systemtap DEFAULT http://sourceware.org/systemtap/ftp/releases
  * sysvinit sysvinit-(.*?)dsf\.tar\.bz2 http://download.savannah.gnu.org/releases/sysvinit/
  * sysusage SysUsage-Sar-(.*?)\.tar\.gz SF-DEFAULT
</pre>
 
=== T ===
<pre>
* t-prot DEFAULT http://www.escape.de/~tolot/mutt/t-prot/downloads/
  * tack tack-(.*?)\.tgz ftp://invisible-island.net/ncurses/
  * tack tack-(.*?)\.tgz ftp://invisible-island.net/ncurses/
  * tango-icon-theme-extras DEFAULT http://tango.freedesktop.org/releases/
  * tango-icon-theme-extras DEFAULT http://tango.freedesktop.org/releases/
Line 3,257: Line 3,696:
  * tclap DEFAULT SF-DEFAULT
  * tclap DEFAULT SF-DEFAULT
  * tcllib DEFAULT SF-DEFAULT
  * tcllib DEFAULT SF-DEFAULT
  * tcsh DEFAULT http://ftp.funet.fi/pub/unix/shells/tcsh/
  * tcsh DEFAULT ftp://ftp.astron.com/pub/tcsh/
  * tcpdump DEFAULT http://www.tcpdump.org
* tcpcopy >v(.*?)< https://github.com/wangbin579/tcpcopy/releases
  * techne techne-([0-9.]*?)\.tar\.gz http://download.savannah.gnu.org/releases/techne/
  * tcpdump DEFAULT http://www.tcpdump.org/release/
  * techne DEFAULT http://download.savannah.gnu.org/releases/techne/
  * telepathy-mission-control DEFAULT http://telepathy.freedesktop.org/releases/telepathy-mission-control/
  * telepathy-mission-control DEFAULT http://telepathy.freedesktop.org/releases/telepathy-mission-control/
  * tellico tellico-(.*?)\.tar\.bz2 http://tellico-project.org/download
  * tellico DEFAULT http://tellico-project.org/download/archive
  * terminus-fonts DEFAULT:terminus-font SF-DEFAULT:terminus-font
  * terminus-fonts DEFAULT:terminus-font SF-DEFAULT:terminus-font
  * teseq DEFAULT GNU-DEFAULT
  * teseq DEFAULT GNU-DEFAULT
Line 3,274: Line 3,714:
  * thai-scalable-fonts fonts-tlwg-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-tlwg/
  * thai-scalable-fonts fonts-tlwg-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-tlwg/
  * thai-arundina-fonts fonts-sipa-arundina-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-sipa-arundina/
  * thai-arundina-fonts fonts-sipa-arundina-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-sipa-arundina/
* thermostat thermostat-([0-9]+\.[0-9]+(?:\.[0-9]+)?)\.tar\.[a-z]{2}(?!\.[a-z]{2,3}) http://icedtea.wildebeest.org/download/thermostat/
  * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
  * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
  * tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/
  * tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/
* tigervnc DEFAULT SF-DEFAULT
  * time DEFAULT GNU-DEFAULT
  * time DEFAULT GNU-DEFAULT
  * tin DEFAULT ftp://ftp.tin.org/pub/news/clients/tin/stable/
  * tin DEFAULT ftp://ftp.tin.org/pub/news/clients/tin/stable/
  * tint2 DEFAULT http://code.google.com/p/tint2/downloads/list
  * tint2 DEFAULT GOOGLE-DEFAULT
  * tintin DEFAULT SF-DEFAULT
  * tintin DEFAULT SF-DEFAULT
* tkabber DEFAULT http://files.jabber.ru/tkabber/
* tkabber-plugins DEFAULT http://files.jabber.ru/tkabber/
  * tmux DEFAULT SF-DEFAULT
  * tmux DEFAULT SF-DEFAULT
* tn5250 DEFAULT SF-DEFAULT
* tnftp DEFAULT ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
  * tntnet DEFAULT http://www.tntnet.org/download.html
  * tntnet DEFAULT http://www.tntnet.org/download.html
  * tokyocabinet DEFAULT http://fallabs.com/tokyocabinet/
  * tokyocabinet DEFAULT http://fallabs.com/tokyocabinet/
* tomahawk DEFAULT http://download.tomahawk-player.org/
  * tomboy DEFAULT GNOME-DEFAULT
  * tomboy DEFAULT GNOME-DEFAULT
  * tomcat DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-7/*/src/
  * tomcat DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-7/*/src/
  * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
  * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
  * tong DEFAULT http://www.nongnu.org/tong/
  * tong DEFAULT http://www.nongnu.org/tong/
* toped DEFAULT GOOGLE-DEFAULT
  * toppler DEFAULT SF-DEFAULT
  * toppler DEFAULT SF-DEFAULT
  * tor DEFAULT https://www.torproject.org/download/download.html.en
  * tor DEFAULT https://www.torproject.org/download/download.html.en
* torque DEFAULT http://www.adaptivecomputing.com/support/download-center/torque-download/
  * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
  * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
* touchcal DEFAULT SF-DEFAULT
* truezip truezip-(\d.*) https://hg.java.net/hg/truezip~v7/tags
  * towhee DEFAULT SF-DEFAULT
  * towhee DEFAULT SF-DEFAULT
* trustedqsl DEFAULT:tqsl SF-DEFAULT
  * trac-bazaar-plugin DEFAULT:TracBzr LP-DEFAULT:trac-bzr
  * trac-bazaar-plugin DEFAULT:TracBzr LP-DEFAULT:trac-bzr
  * trackballs DEFAULT SF-DEFAULT
  * trackballs DEFAULT SF-DEFAULT
Line 3,302: Line 3,752:
  * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
  * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
  * tremulous DEFAULT SF-DEFAULT
  * tremulous DEFAULT SF-DEFAULT
  * tudu DEFAULT SF-DEFAULT
  * trilead-putty-extension DEFAULT https://github.com/kohsuke/trilead-putty-extension/tags
* ttf2pt1 \bttf2pt1-(\d\.[\d.]+)\.tgz SF-DEFAULT
* ttfautohint DEFAULT http://download.savannah.gnu.org/releases/freetype/
  * tulrich-tuffy-fonts <th[^>]*>[ ]*Tuffy[ ]*([^< ]*)[ ]*</th> http://tulrich.com/fonts/
  * tulrich-tuffy-fonts <th[^>]*>[ ]*Tuffy[ ]*([^< ]*)[ ]*</th> http://tulrich.com/fonts/
  * tumbler DEFAULT http://git.xfce.org/apps/tumbler/
  * tumbler DEFAULT http://archive.xfce.org/src/xfce/tumbler/*/
  * tuna DEFAULT http://fedorapeople.org/~acme/tuna/
  * tuna DEFAULT http://fedorapeople.org/~acme/tuna/
* tunctl DEFAULT SF-DEFAULT
* tunneler DEFAULT http://users.jyu.fi/~tvkalvas/code/tunneler
  * TurboGears DEFAULT http://www.turbogears.org/1.0/downloads/current/
  * TurboGears DEFAULT http://www.turbogears.org/1.0/downloads/current/
  * TurboGears2 DEFAULT http://www.turbogears.org/2.1/downloads/current/
  * TurboGears2 DEFAULT http://www.turbogears.org/2.1/downloads/current/
  * typespeed DEFAULT SF-DEFAULT
  * typespeed DEFAULT SF-DEFAULT
  * tzdata tzdata(.*?)\.tar\.gz ftp://ftp.iana.org/tz/releases/
  * tzdata tzdata(.*?)\.tar\.gz http://www.iana.org/time-zones
</pre>
 
=== U ===
<pre>
  * uboot-tools DEFAULT:u-boot ftp://ftp.denx.de/pub/u-boot/
  * uboot-tools DEFAULT:u-boot ftp://ftp.denx.de/pub/u-boot/
  * uClibc DEFAULT http://uclibc.org/downloads/
  * uClibc DEFAULT http://uclibc.org/downloads/
  * ucommon DEFAULT http://www.gnutelephony.org/dist/tarballs/
  * ucommon DEFAULT http://dev.gnutelephony.org/dist/tarballs/
* uddi4j DEFAULT SF-DEFAULT
  * udis86 DEFAULT SF-DEFAULT
  * udis86 DEFAULT SF-DEFAULT
  * udisks DEFAULT http://hal.freedesktop.org/releases/
  * udisks DEFAULT http://hal.freedesktop.org/releases/
* udisks2 DEFAULT:udisks http://udisks.freedesktop.org/releases/
* udns DEFAULT http://www.corpit.ru/mjt/udns/
  * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
  * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
  * ufraw DEFAULT SF-DEFAULT
  * ufraw DEFAULT SF-DEFAULT
  * ugene DEFAULT http://ugene.unipro.ru/downloads/ugene_get_latest_source.html
  * ugene DEFAULT http://ugene.unipro.ru/downloads/ugene_get_latest_source.html
* uget DEFAULT SF-DEFAULT:urlget
* uhttpmock DEFAULT https://tecnocode.co.uk/downloads/uhttpmock/
  * uim DEFAULT GOOGLE-DEFAULT
  * uim DEFAULT GOOGLE-DEFAULT
  * ulogd DEFAULT http://ftp.netfilter.org/pub/ulogd/
  * ulogd DEFAULT http://ftp.netfilter.org/pub/ulogd/
  * un-core-fonts un-fonts-core-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
  * un-core-fonts un-fonts-core-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
  * un-extra-fonts un-fonts-extra-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
  * un-extra-fonts un-fonts-extra-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
  * unalz DEFAULT http://www.kippler.com/win/unalz/
  * unar unar(.*?)\.zip GOOGLE-DEFAULT:theunarchiver
  * unbound DEFAULT http://unbound.net/download.html
  * unbound DEFAULT http://unbound.net/download.html
  * uncrustify DEFAULT SF-DEFAULT
  * uncrustify DEFAULT SF-DEFAULT
* unetbootin unetbootin-source-(.*?)\.tar\.gz SF-DEFAULT
  * unicode-ucd ([0-9.]+)/ http://www.unicode.org/Public/zipped/
  * unicode-ucd ([0-9.]+)/ http://www.unicode.org/Public/zipped/
* unifdef DEFAULT http://dotat.at/prog/unifdef/
  * unison240 unison-(2\.40[.0-9]+) http://www.seas.upenn.edu/~bcpierce/unison/download/releases/
  * unison240 unison-(2\.40[.0-9]+) http://www.seas.upenn.edu/~bcpierce/unison/download/releases/
  * units DEFAULT GNU-DEFAULT
  * units DEFAULT GNU-DEFAULT
  * unlambda unlambda-(.*?).tar.gz http://hackage.haskell.org/package/unlambda
  * unlambda unlambda-(.*?).tar.gz http://hackage.haskell.org/package/unlambda
* unoconv DEFAULT http://dag.wieers.com/home-made/unoconv/
  * unrtf DEFAULT GNU-DEFAULT
  * unrtf DEFAULT GNU-DEFAULT
  * unuran unuran-([0-9.]*).tar.gz http://statmath.wu.ac.at/src/
  * unuran unuran-([0-9.]*).tar.gz http://statmath.wu.ac.at/src/
  * up-imapproxy DEFAULT:squirrelmail-imap_proxy SF-DEFAULT:squirrelmail
  * up-imapproxy DEFAULT:squirrelmail-imap_proxy SF-DEFAULT:squirrelmail
* uperf DEFAULT SF-DEFAULT
  * upower DEFAULT http://upower.freedesktop.org/releases/
  * upower DEFAULT http://upower.freedesktop.org/releases/
  * UpTools DEFAULT http://www.palermo.edu/ingenieria/uptools_ingles.html
  * UpTools DEFAULT http://www.palermo.edu/ingenieria/uptools_ingles.html
Line 3,339: Line 3,806:
  * usbutils DEFAULT http://kernel.org/pub/linux/utils/usb/usbutils/
  * usbutils DEFAULT http://kernel.org/pub/linux/utils/usb/usbutils/
  * uucp DEFAULT GNU-DEFAULT
  * uucp DEFAULT GNU-DEFAULT
</pre>
=== V ===
<pre>
  * vacation vacation-(.*?).tar.gz SF-DEFAULT
  * vacation vacation-(.*?).tar.gz SF-DEFAULT
  * vala DEFAULT GNOME-DEFAULT
  * vala DEFAULT GNOME-DEFAULT
  * valknut DEFAULT SF-DEFAULT:wxdcgui
  * valknut DEFAULT SF-DEFAULT:wxdcgui
  * vamp-plugin-sdk DEFAULT http://www.vamp-plugins.org/develop.html
  * vamp-plugin-sdk DEFAULT http://www.vamp-plugins.org/develop.html
* vanityhash DEFAULT http://www.finnie.org/software/vanityhash/
  * varconf DEFAULT SF-DEFAULT:worldforge
  * varconf DEFAULT SF-DEFAULT:worldforge
  * vifm DEFAULT SF-DEFAULT
  * vcsh ve/v([^-]+)\.tar\.gz https://github.com/RichiH/vcsh/tags
* vile DEFAULT ftp://invisible-island.net/vile/current/
  * vdr DEFAULT ftp://ftp.tvdr.de/vdr/
  * vdr DEFAULT ftp://ftp.tvdr.de/vdr/Developer/
  * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
  * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
  * vdr-femon DEFAULT http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/index.php
  * vdr-femon vdr-femon-(2\.0.*?)\.t http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/index.php
  * vdr-osdteletext DEFAULT http://projects.vdr-developer.org/projects/plg-osdteletext/files
  * vdr-osdteletext DEFAULT http://projects.vdr-developer.org/projects/plg-osdteletext/files
  * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
  * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
Line 3,356: Line 3,827:
  * vdr-streamdev DEFAULT http://projects.vdr-developer.org/projects/plg-streamdev/files
  * vdr-streamdev DEFAULT http://projects.vdr-developer.org/projects/plg-streamdev/files
  * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/plg-sudoku/files
  * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/plg-sudoku/files
* vdr-text2skin DEFAULT http://projects.vdr-developer.org/projects/plg-text2skin/files
  * vdr-ttxtsubs DEFAULT http://projects.vdr-developer.org/projects/plg-ttxtsubs/files
  * vdr-ttxtsubs DEFAULT http://projects.vdr-developer.org/projects/plg-ttxtsubs/files
* vdr-wapd DEFAULT http://www.heiligenmann.de/vdr/download/
  * vdradmin-am DEFAULT http://andreas.vdr-developer.org/vdradmin-am/download.html
  * vdradmin-am DEFAULT http://andreas.vdr-developer.org/vdradmin-am/download.html
  * vdrsymbol-fonts DEFAULT:vdrsymbols-ttf http://andreas.vdr-developer.org/fonts/download.html
  * vdrsymbol-fonts DEFAULT:vdrsymbols-ttf http://andreas.vdr-developer.org/fonts/download.html
  * velocity ([0-9.]+)/ http://www.apache.org/dist/velocity/engine/
  * velocity ([0-9.]+)/ http://www.apache.org/dist/velocity/engine/
* verilator DEFAULT http://www.veripool.org/projects/verilator/wiki/Installing
* vertica-python GITHUB-TAGS GITHUB-TAGS:uber/vertica-python
* vicious DEFAULT http://git.sysphere.org/vicious/refs/tags
  * vidalia DEFAULT http://www.torproject.org/vidalia/index.html.en
  * vidalia DEFAULT http://www.torproject.org/vidalia/index.html.en
  * viewnior DEFAULT http://xsisqox.github.com/Viewnior/download.html
  * viewnior DEFAULT http://xsisqox.github.com/Viewnior/download.html
* vifm DEFAULT SF-DEFAULT
* vile DEFAULT ftp://invisible-island.net/vile/current/
  * vim DEFAULT http://ftp.vim.org/pub/vim/unix/
  * vim DEFAULT http://ftp.vim.org/pub/vim/unix/
  * vim-command-t command-t-(.*?)\.vba http://www.vim.org/scripts/script.php?script_id=3025
  * vim-command-t command-t-(.*?)\.vba http://www.vim.org/scripts/script.php?script_id=3025
* vim-gtk-syntax GITHUB-TAGS GITHUB-TAGS:vim-scripts/gtk-vim-syntax
* vim-jedi archive/(.*?)\.zip https://github.com/davidhalter/jedi-vim/tags
  * vim-latex vim-latex-(.*?).tar.gz SF-DEFAULT
  * vim-latex vim-latex-(.*?).tar.gz SF-DEFAULT
* vips DEFAULT http://www.vips.ecs.soton.ac.uk/supported/current/
  * virtaal DEFAULT SF-DEFAULT:translate
  * virtaal DEFAULT SF-DEFAULT:translate
* ViTables DEFAULT GOOGLE-DEFAULT:vitables
  * vmmlib DEFAULT SF-DEFAULT
  * vmmlib DEFAULT SF-DEFAULT
  * vmpk DEFAULT SF-DEFAULT
  * vmpk DEFAULT SF-DEFAULT
  * vmpsd DEFAULT SF-DEFAULT:vmps
  * vmpsd DEFAULT SF-DEFAULT:vmps
* vmtouch DEFAULT https://github.com/hoytech/vmtouch/tags
  * vlgothic-fonts DEFAULT:VLGothic http://sourceforge.jp/projects/vlgothic/releases/
  * vlgothic-fonts DEFAULT:VLGothic http://sourceforge.jp/projects/vlgothic/releases/
  * vorbis-tools DEFAULT http://downloads.xiph.org/releases/vorbis/
  * vorbis-tools DEFAULT http://downloads.xiph.org/releases/vorbis/
Line 3,376: Line 3,855:
  * vsftpd DEFAULT https://security.appspot.com/vsftpd.html
  * vsftpd DEFAULT https://security.appspot.com/vsftpd.html
  * vttest DEFAULT ftp://invisible-island.net/vttest/
  * vttest DEFAULT ftp://invisible-island.net/vttest/
* vzctl vzctl-([0-9.]*?)\" http://git.openvz.org/?p=vzctl;a=tags
</pre>
=== W ===
<pre>
  * w3c-markup-validator validator-(\d.*?)\.t http://validator.w3.org/dist/
  * w3c-markup-validator validator-(\d.*?)\.t http://validator.w3.org/dist/
  * wdiff DEFAULT GNU-DEFAULT
  * wdiff DEFAULT GNU-DEFAULT
  * wv ">([0-9]\.[0-9]\.[0-9])/</a> http://www.abisource.com/downloads/wv/
  * wv ">([0-9]\.[0-9]\.[0-9])/</a> http://www.abisource.com/downloads/wv/
  * vym vym-([0-9.]*)-.*.src.rpm http://download.opensuse.org/repositories/home://insilmaril/openSUSE_Factory/src/
  * vym vym-([0-9.]*)-.*.src.rpm http://download.opensuse.org/repositories/home://insilmaril/openSUSE_Factory/src/
* w3m DEFAULT SF-DEFAULT
  * waf DEFAULT GOOGLE-DEFAULT
  * waf DEFAULT GOOGLE-DEFAULT
  * wannier90 DEFAULT http://www.wannier.org/download.html
  * wannier90 DEFAULT http://www.wannier.org/download.html
  * warzone2100 DEFAULT http://wz2100.net/download
  * warzone2100 DEFAULT SF-DEFAULT
  * wastesedge >wastesedge(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
  * wastesedge >wastesedge(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
  * wavemon DEFAULT http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/
  * wavemon DEFAULT http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/
  * wb_builder (\d+\.\d+\.\d+) http://sourceforge.net/projects/fpgalibre/files/Wishbone%20Builder/
  * wavpack GITHUB-TAGS GITHUB-TAGS:dbry/WavPack
* weechat DEFAULT http://weechat.org/files/src/
* wemux GITHUB-TAGS GITHUB-TAGS:zolrath/wemux
  * wfmath DEFAULT SF-DEFAULT:worldforge
  * wfmath DEFAULT SF-DEFAULT:worldforge
  * wget DEFAULT GNU-DEFAULT
  * wget DEFAULT GNU-DEFAULT
Line 3,392: Line 3,879:
  * which DEFAULT GNU-DEFAULT
  * which DEFAULT GNU-DEFAULT
  * whois DEFAULT DEBIAN-DEFAULT
  * whois DEFAULT DEBIAN-DEFAULT
  * WindowMaker DEFAULT http://windowmaker.org/pub/source/release/
* wicd DEFAULT http://launchpad.net/wicd/+download
* wildfly GITHUB-TAGS GITHUB-TAGS:wildfly/wildfly
* willie DEFAULT PYPI-DEFAULT
  * WindowMaker DEFAULT http://windowmaker.org/
  * wine DEFAULT SF-DEFAULT
  * wine DEFAULT SF-DEFAULT
  * wings v([\d+\.]+)\.zip https://github.com/dgud/wings/tags
  * wings GITHUB-TAGS GITHUB-TAGS:dgud/wings
  * wireshark DEFAULT http://www.wireshark.org/download/src/
* wireless-tools wireless_tools\.(.*?)\.tar\.gz http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
* wireshark wireshark-(\d+\.\d*[02468]\.\d+).tar.bz2 http://www.wireshark.org/download/src/all-versions/
  * wise DEFAULT http://www.jboss.org/wise/downloads
  * wol DEFAULT SF-DEFAULT:wake-on-lan
  * wol DEFAULT SF-DEFAULT:wake-on-lan
  * woodstox-core DEFAULT:woodstox-core-src http://wiki.fasterxml.com/WoodstoxDownload
  * woodstox-core DEFAULT:woodstox-core-src http://wiki.fasterxml.com/WoodstoxDownload
  * wordnet WordNet-([0-9.]*)\.[tz][ai][rp] http://wordnet.princeton.edu/wordnet/download/current-version/
  * wordnet WordNet-([0-9.]*)\.[tz][ai][rp] http://wordnet.princeton.edu/wordnet/download/current-version/
* wordpress DEFAULT http://wordpress.org/download/release-archive/
  * worker DEFAULT http://www.boomerangsworld.de/cms/worker/downloads/
  * worker DEFAULT http://www.boomerangsworld.de/cms/worker/downloads/
* workrave DEFAULT SF-DEFAULT
  * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
  * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
  * wpa_supplicant DEFAULT http://w1.fi/releases/
  * wpa_supplicant DEFAULT http://w1.fi/releases/
* writerperfect writerperfect-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
  * wsdl4j DEFAULT SF-DEFAULT
  * wsdl4j DEFAULT SF-DEFAULT
  * wqy-microhei-fonts DEFAULT:wqy-microhei SF-DEFAULT:wqy
  * wqy-microhei-fonts DEFAULT:wqy-microhei SF-DEFAULT:wqy
  * wqy-zenhei-fonts DEFAULT:wqy-zenhei SF-DEFAULT:wqy
  * wqy-zenhei-fonts DEFAULT:wqy-zenhei SF-DEFAULT:wqy
  * wxGTK DEFAULT http://www.wxwidgets.org/downloads/
  * wxGTK DEFAULT:wxWidgets ftp://ftp.wxwidgets.org/pub/*/
* wxsqlite3 DEFAULT http://sourceforge.net/projects/wxcode/files/Components/wxSQLite3/
</pre>
</pre>


=== X-Z ===
=== X ===
<pre>
<pre>
  * x3270 DEFAULT:suite3270 SF-DEFAULT
  * x3270 DEFAULT:suite3270 SF-DEFAULT
Line 3,423: Line 3,919:
  * xboard DEFAULT GNU-DEFAULT
  * xboard DEFAULT GNU-DEFAULT
  * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
  * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
* xcb-util-cursor DEFAULT http://xcb.freedesktop.org/dist/
  * xcb-util-image DEFAULT http://xcb.freedesktop.org/dist/
  * xcb-util-image DEFAULT http://xcb.freedesktop.org/dist/
  * xcb-util-keysyms DEFAULT http://xcb.freedesktop.org/dist/
  * xcb-util-keysyms DEFAULT http://xcb.freedesktop.org/dist/
Line 3,429: Line 3,926:
  * xchat Source: (.*?)</a> http://www.xchat.org/
  * xchat Source: (.*?)</a> http://www.xchat.org/
  * xchm DEFAULT SF-DEFAULT
  * xchm DEFAULT SF-DEFAULT
* xcircuit DEFAULT http://opencircuitdesign.com/xcircuit/
* xcm DEFAULT SF-DEFAULT:oyranos
  * xcompmgr DEFAULT http://xorg.freedesktop.org/archive/individual/app/
  * xcompmgr DEFAULT http://xorg.freedesktop.org/archive/individual/app/
  * xdelta xdelta(3\..*?)\.tar\.gz GOOGLE-DEFAULT
  * xdg-utils DEFAULT http://portland.freedesktop.org/download/
* xdelta DEFAULT:xdelta3 GOOGLE-DEFAULT
  * xdrawchem DEFAULT SF-DEFAULT
  * xdrawchem DEFAULT SF-DEFAULT
  * xdrfile DEFAULT ftp://ftp.gromacs.org/pub/contrib/
  * xdrfile DEFAULT ftp://ftp.gromacs.org/pub/contrib/
  * xerces-c DEFAULT http://www.apache.org/dist/xerces/c/*/sources/
  * xerces-c DEFAULT http://www.apache.org/dist/xerces/c/*/sources/
  * xerces-j2 (?i)xerces-j-src[-.]([\d.]+)\.(?:t|zip) http://www.apache.org/dist/xerces/j/source/
  * xerces-j2 (?i)xerces-j-src[-.]([\d.]+)\.(?:t|zip) http://www.apache.org/dist/xerces/j/source/
* xfce4-embed-plugin DEFAULT http://archive.xfce.org/src/panel-plugins/xfce4-embed-plugin/*/
* xfce4-equake-plugin DEFAULT http://archive.xfce.org/src/panel-plugins/xfce4-equake-plugin/*/
* xfdashboard "name":\s*"([\d\.]+)" https://api.github.com/repos/gmc-holle/xfdashboard/tags
  * xfsdump xfsdump-([0-9.]*).tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
  * 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/
  * xfsprogs xfsprogs-([0-9.]*).tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/
  * xgridfit DEFAULT SF-DEFAULT
  * xgridfit DEFAULT SF-DEFAULT
* xine-lib xine-lib-(1\.1\.[0-9.]+)\.tar\.xz SF-DEFAULT:xine
* xine-ui DEFAULT SF-DEFAULT:xine
  * xinetd DEFAULT http://www.xinetd.org/
  * xinetd DEFAULT http://www.xinetd.org/
  * xkbset DEFAULT http://www.math.missouri.edu/~stephen/software/xkbset/
  * xkbset DEFAULT http://www.math.missouri.edu/~stephen/software/xkbset/
  * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
  * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
* xlockmore xlockmore-([0-9\.]*?) http://www.tux.org/~bagleyd/xlock/
  * xl2tpd archive/v(\d+\..+?\..*?)\.zip https://github.com/xelerance/xl2tpd/tags
  * xl2tpd archive/v(\d+\..+?\..*?)\.zip https://github.com/xelerance/xl2tpd/tags
  * xlhtml DEFAULT SF-DEFAULT:chicago
  * xlhtml DEFAULT SF-DEFAULT:chicago
Line 3,453: Line 3,955:
  * xmltoman DEFAULT SF-DEFAULT
  * xmltoman DEFAULT SF-DEFAULT
  * xmlunit DEFAULT SF-DEFAULT
  * xmlunit DEFAULT SF-DEFAULT
* xmms DEFAULT http://www.xmms.org/download.php
  * xmobar HACKAGE-DEFAULT HACKAGE-DEFAULT
  * xmobar HACKAGE-DEFAULT HACKAGE-DEFAULT
  * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
  * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
  * xmonad-log-applet DEFAULT GOOGLE-DEFAULT
  * xmonad-log-applet DEFAULT GOOGLE-DEFAULT
  * xmoto DEFAULT http://download.tuxfamily.org/xmoto/xmoto/*/
  * xmoto DEFAULT http://download.tuxfamily.org/xmoto/xmoto/*/
* Xnee DEFAULT GNU-DEFAULT:xnee
  * xnoise DEFAULT https://bitbucket.org/shuerhaaken/xnoise/downloads
  * xnoise DEFAULT https://bitbucket.org/shuerhaaken/xnoise/downloads
  * xorg-sgml-doctools DEFAULT http://xorg.freedesktop.org/archive/individual/doc/
  * xorg-sgml-doctools DEFAULT http://xorg.freedesktop.org/archive/individual/doc/
  * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
  * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
  * xorg-x11-drv-apm xf86-video-apm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-apm xf86-video-apm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
* xorg-x11-drv-ast xf86-video-ast-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-ati xf86-video-ati-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-ati xf86-video-ati-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-cirrus xf86-video-cirrus-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-cirrus xf86-video-cirrus-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
Line 3,476: Line 3,979:
  * xorg-x11-drv-mach64 xf86-video-mach64-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-mach64 xf86-video-mach64-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-mga xf86-video-mga-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-mga xf86-video-mga-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
* xorg-x11-drv-modesetting xf86-video-modesetting-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-mouse xf86-input-mouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-mouse xf86-input-mouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-neomagic xf86-video-neomagic-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-neomagic xf86-video-neomagic-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
Line 3,498: Line 4,002:
  * xorg-x11-drv-voodoo xf86-video-voodoo-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-voodoo xf86-video-voodoo-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-drv-wacom xf86-input-wacom-(.*?)\.tar\.bz2 http://sf.net/projects/linuxwacom/files/
  * xorg-x11-drv-wacom xf86-input-wacom-(.*?)\.tar\.bz2 http://sf.net/projects/linuxwacom/files/
* xorg-x11-glamor glamor-egl-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
  * xorg-x11-server xorg-server-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/xserver/
  * xorg-x11-server xorg-server-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/xserver/
  * xorg-x11-twm twm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
  * xorg-x11-twm twm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
Line 3,511: Line 4,016:
  * xosd DEFAULT SF-DEFAULT:libxosd
  * xosd DEFAULT SF-DEFAULT:libxosd
  * xournal DEFAULT SF-DEFAULT
  * xournal DEFAULT SF-DEFAULT
* xpenguins DEFAULT http://xpenguins.seul.org/
  * xpp2 PullParser([0-9.]*?)\.tgz http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/
  * xpp2 PullParser([0-9.]*?)\.tgz http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/
  * xrestop DEFAULT http://downloads.yoctoproject.org/releases/xrestop/
  * xrestop DEFAULT http://downloads.yoctoproject.org/releases/xrestop/
  * xscreensaver DEFAULT http://www.jwz.org/xscreensaver/download.html
  * xscreensaver DEFAULT http://www.jwz.org/xscreensaver/download.html
* xstream <version>([^<]+)</version> https://nexus.codehaus.org/content/repositories/releases/com/thoughtworks/xstream/xstream-distribution/maven-metadata.xml
* xteddy DEFAULT http://webstaff.itn.liu.se/~stegu/xteddy
  * xterm DEFAULT ftp://invisible-island.net/xterm/
  * xterm DEFAULT ftp://invisible-island.net/xterm/
  * xz DEFAULT http://tukaani.org/xz/
* xvkbd DEFAULT http://homepage3.nifty.com/tsato/xvkbd/
* xwax DEFAULT http://xwax.org/releases/
* xxdiff DEFAULT SF-DEFAULT
  * xz xz-(.*?)\.tar\.gz http://tukaani.org/xz/
  * xz-java xz-java-([0-9.]*?).zip http://tukaani.org/xz/java.html
  * xz-java xz-java-([0-9.]*?).zip http://tukaani.org/xz/java.html
  * x-tile x-tile-(.*?)\.tar\..* http://www.giuspen.com/x-tile/
  * x-tile x-tile-(.*?)\.tar\..* http://www.giuspen.com/x-tile/
* yaboot DEFAULT http://yaboot.ozlabs.org/releases/
</pre>
  * yad DEFAULT GOOGLE-DEFAULT
 
=== Y ===
<pre>
  * yad DEFAULT SF-DEFAULT:yad-dialog
  * yadex DEFAULT http://www.teaser.fr/~amajorel/yadex/download.html
  * yadex DEFAULT http://www.teaser.fr/~amajorel/yadex/download.html
* yagf DEFAULT http://symmetrica.net/cuneiform-linux/yagf-en.html
* yajl DEFAULT http://lloyd.github.io/yajl/
  * yaml-cpp DEFAULT GOOGLE-DEFAULT
  * yaml-cpp DEFAULT GOOGLE-DEFAULT
* yapet DEFAULT http://www.guengel.ch/myapps/yapet/downloads/
  * yasm DEFAULT http://www.tortall.net/projects/yasm/releases/
  * yasm DEFAULT http://www.tortall.net/projects/yasm/releases/
  * yaz DEFAULT http://ftp.indexdata.dk/pub/yaz/
  * yaz DEFAULT http://ftp.indexdata.dk/pub/yaz/
  * yersinia DEFAULT http://www.yersinia.net/download/
  * yersinia DEFAULT http://www.yersinia.net/download/
  * ykpers DEFAULT GOOGLE-DEFAULT:yubikey-personalization
  * ykpers DEFAULT GOOGLE-DEFAULT:yubikey-personalization
* yoshimi DEFAULT SF-DEFAULT
* yourls GITHUB-TAGS GITHUB-TAGS:YOURLS/YOURLS
  * youtube-dl /youtube-dl">([\d.]+)</a> http://rg3.github.com/youtube-dl/download.html
  * youtube-dl /youtube-dl">([\d.]+)</a> http://rg3.github.com/youtube-dl/download.html
  * ypbind DEFAULT:ypbind-mt http://www.linux-nis.org/download/ypbind-mt/
  * ypbind DEFAULT:ypbind-mt http://www.linux-nis.org/download/ypbind-mt/
Line 3,531: Line 4,050:
  * yp-tools DEFAULT http://www.linux-nis.org/download/yp-tools/
  * yp-tools DEFAULT http://www.linux-nis.org/download/yp-tools/
  * ytree DEFAULT http://www.han.de/~werner/ytree.html
  * ytree DEFAULT http://www.han.de/~werner/ytree.html
</pre>
=== Z ===
<pre>
  * z88dk DEFAULT SF-DEFAULT
  * z88dk DEFAULT SF-DEFAULT
* zeroinstall-injector DEFAULT:0install SF-DEFAULT:zero-install
  * zidrav DEFAULT:zidrav4unix SF-DEFAULT
  * zidrav DEFAULT:zidrav4unix SF-DEFAULT
  * zile DEFAULT GNU-DEFAULT
  * zile DEFAULT GNU-DEFAULT
Line 3,538: Line 4,060:
  * zinnia DEFAULT SF-DEFAULT
  * zinnia DEFAULT SF-DEFAULT
  * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
  * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
  * znc DEFAULT https://github.com/znc/znc/tags
  * zmap v(.*?)\.tar.gz https://zmap.io/download.html
* znc GITHUB-TAGS GITHUB-TAGS:znc/znc
* zorba DEFAULT LP-DEFAULT
* zsh DEFAULT SF-DEFAULT
* zyGrib DEFAULT http://www.zygrib.org/
  * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf
  * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf
</pre>
</pre>
Line 3,551: Line 4,077:
* davidz
* davidz
* ensc
* ensc
* eseyman
* tgl
* tgl
* mclasen
* mclasen
Line 3,577: Line 4,104:
  Unplottable, fedora and upstream versions are incompatible.
  Unplottable, fedora and upstream versions are incompatible.
  * kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
  * kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
Package maintainer( https://fedoraproject.org/wiki/User:Ausil ) does not want any notice:
* snort


  Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=635372#c2 ) :
  Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=635372#c2 ) :
Line 3,596: Line 4,120:
  Those packages are handled as a whole and do not need individual bugs filed.
  Those packages are handled as a whole and do not need individual bugs filed.
  (Advance notification comes through the kde-packager mailing list.)
  (Advance notification comes through the kde-packager mailing list.)
No notice wanted:
https://bugzilla.redhat.com/show_bug.cgi?id=920611#c2
https://fedoraproject.org/w/index.php?title=Upstream_release_monitoring&diff=326643&oldid=326623
* gputils DEFAULT SF-DEFAULT
* ngspice (\d+[\d+]*) http://sourceforge.net/projects/ngspice/files/ng-spice-rework/
* piklab DEFAULT SF-DEFAULT
* pikloops DEFAULT SF-DEFAULT
Requested by Milan Crha to not be monitored:
* evolution DEFAULT GNOME-DEFAULT
* evolution-data-server
* evolution-ews
* evolution-mapi
* gtkhtml3


== Retired Packages ==
== Retired Packages ==
Line 3,610: Line 4,149:
* sublib sublib-(.*?).zip http://sourceforge.net/project/showfiles.php?group_id=138366&package_id=151898
* sublib sublib-(.*?).zip http://sourceforge.net/project/showfiles.php?group_id=138366&package_id=151898
* acoustid-fingerprinter DEFAULT https://github.com/lalinsky/acoustid-fingerprinter/downloads
* acoustid-fingerprinter DEFAULT https://github.com/lalinsky/acoustid-fingerprinter/downloads
* gxine DEFAULT SF-DEFAULT:xine
* kaffeine DEFAULT SF-DEFAULT
* xine-lib xine-lib-(1\.1\.[0-9.]+)\.tar\.xz SF-DEFAULT:xine
* xine-ui DEFAULT SF-DEFAULT:xine
* snort


== Related Projects ==
== Related Projects ==
* [http://dehs.alioth.debian.org/ Debian External Health Status]
* [http://dehs.alioth.debian.org/ Debian External Health Status] ([http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717834 offline] since August 2013)
* [http://people.redhat.com/caolanm/latestpackages/ Custom script for packages from Caolán McNamara]
* [http://people.redhat.com/caolanm/latestpackages/ Custom script for packages from Caolán McNamara]
* [http://oswatershed.org/ OSWatershed] - Monitors several distributions at once
* [http://oswatershed.org/ OSWatershed] - Monitors several distributions at once
Line 3,620: Line 4,164:
* [http://youri.zarb.org/ Youri] [http://check.mageia.org/ in action] [http://svnweb.mageia.org/adm/puppet/modules/youri-check/ puppet modules] A generic framework
* [http://youri.zarb.org/ Youri] [http://check.mageia.org/ in action] [http://svnweb.mageia.org/adm/puppet/modules/youri-check/ puppet modules] A generic framework
* [https://github.com/jness/ossvt ossvt] Developed for [https://launchpad.net/ius IUS]
* [https://github.com/jness/ossvt ossvt] Developed for [https://launchpad.net/ius IUS]
* [https://github.com/fedora-infra/cnucnuweb cnucnuweb] ([http://209.132.184.188/cnucnu/ Test instance]) - Web frontend and fedmsg service
[[Category:Package Maintainers]]
[[Category:Package Maintainers]]

Revision as of 15:43, 20 April 2014

Fedora Upstream Release Monitoring

General Information

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

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

Software

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

The Basics

How To Enable Version Checking for My Packages?

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

What Is The Format Of The List?

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

  • <package name> - the name of your package in Fedora. You can use globbing/wildcards supported by the python fnmatch module. It matches againsg source RPMS in Fedora Rawhide.
  • <version regex> - The regular expression used to find the upstream versions of a package. Examples can be found in the list. A default regex aliased DEFAULT usually works for packages distributed by sourceforge. An alternative value for the package name can be set using a colon: DEFAULT:foo, e.g. if the tarball is called pam-mount-1.33.tar.bz2, but the Fedora package is pam_mount.
  • <url> - contains an URL, where the upstream publishes release tarballs or mentions the latest version. For packages from sourceforge, https://sourceforge.net/projects/<package name>/files/ with the above example regular expression often works. An alias for this URL is SF-DEFAULT. This alias will be updated in case future changes to sourceforge require a change. The name override works here, too. An attempt to replace all occurrences of /*/ in the URL with the newest subdirectory at that level is made as well, which is useful for versioned subdirectories.

URL/regex Aliases

There are some aliases supported for URLs or regexes. A full list can be found in the source code. If no implicit regex is defined, the DEFAULT regex is assumed. For some aliases a prefix is removed from the name before evaluating it, for these one or more prefixes are defined. If the automatic name processing is inappropriate, the name can be overridden using a colon, for example as follows: gnuchess DEFAULT GNU-DEFAULT:chess.

How can I develop a regex?

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

Here is an example session for bugzilla:

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

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

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

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

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

Bugzilla bugs by upstream-release-monitoring

OPEN bugs

CLOSED bugs

Last output log

cnucnu-last.log

Feedback

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

NOTICES

Google Code does not allow to create new downloads starting on January 15, 2014: http://google-opensource.blogspot.com/2013/05/a-change-to-google-code-download-service.html

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
* gimp-paint-studio http://code.google.com/p/gps-gimp-paint-studio/
* campivisivi-titillium-fonts http://www.campivisivi.net/titillium/
* azureus(vuze) https://www.vuze.com/
* drupal6-features_extra http://drupal.org/project/features_extra
* arptables http://ebtables.sf.net
* ebtables http://ebtables.sf.net
* firebird http://www.firebirdsql.org/en/server-packages/
* lockdev http://alioth.debian.org/projects/lockdev/

* UPSTREAM SERVER DOWN
* ghasher http://asgaard.homelinux.org/code/ghasher/
* libmx http://source.clutter-project.org/sources/mx/
* six http://six.retes.hu/download/
* swing-layout https://swing-layout.dev.java.net/servlets/ProjectNewsList
* wvdial http://alumnit.ca/wiki/index.php?page=DownloadReleases
* latencytop http://latencytop.org
* bltk http://www.lesswatts.org/patches/bltk/

It would be terrific to monitor these, but many of their upstreams have bad release practices (archives without versions, stealth replace-in-place, or even multiple raw files outside an archive)

* aajohan-comfortaa-fonts http://aajohan.deviantart.com/art/Comfortaa-font-105395949
* aspell-af aspell-af-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/af/
* aspell-ar aspell6-ar-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ar/
* aspell-bg aspell6-bg-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bg/
* aspell-bn aspell6-bn-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/bn/
* aspell-br aspell-br-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/br/
* aspell-ca aspell6-ca-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ca/
* aspell-cs aspell6-cs-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cs/
* aspell-cy aspell-cy-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/cy/
* aspell-da aspell5-da-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/da/
* aspell-de aspell6-de-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/de/
* aspell-el aspell-el-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/el/
* aspell-en aspell6-en-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/en/
* aspell-es aspell6-es-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/es/
* aspell-fi aspell6-fi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fi/
* aspell-fo aspell5-fo-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fo/
* aspell-fr aspell-fr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/fr/
* aspell-ga aspell5-ga-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ga/
* aspell-gd aspell5-gd-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gd/
* aspell-gl aspell6-gl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gl/
* aspell-gu aspell6-gu-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/gu/
* aspell-he aspell6-he-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/he/
* aspell-hi aspell6-hi-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hi/
* aspell-hr aspell-hr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/hr/
* aspell-id aspell5-id-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/id/
* aspell-is aspell-is-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/is/
* aspell-it aspell6-it-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/it/
* aspell-ml aspell6-ml-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ml/
* aspell-mr aspell6-mr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/mr/
* aspell-nl aspell-nl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nl/
* aspell-no aspell-nb-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/nb/
* aspell-or aspell6-or-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/or/
* aspell-pa aspell6-pa-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pa/
* aspell-pl aspell6-pl-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pl/
* aspell-pt_BR aspell6-pt_BR-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_BR/
* aspell-pt_PT aspell6-pt_PT-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/pt_PT/
* aspell-ru aspell6-ru-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ru/
* aspell-sk aspell6-sk-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sk/
* aspell-sr aspell6-sr-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sr/
* aspell-sv aspell-sv-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/sv/
* aspell-ta aspell6-ta-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/ta/
* aspell-te aspell6-te-(.*?)\.tar\.bz2 http://ftp.gnu.org/gnu/aspell/dict/te/
* ecolier-court-fonts
* gfs-ambrosia-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-artemisia-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-baskerville-fonts http://www.greekfontsociety.gr/pages/en_typefaces18th.html
* gfs-bodoni-classic-fonts http://www.greekfontsociety.gr/pages/en_typefaces18th.html
* gfs-bodoni-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-complutum-fonts http://www.greekfontsociety.gr/pages/en_typefaces16th.html
* gfs-decker-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-didot-classic-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-didot-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-eustace-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-fleischman-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-garaldus-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-gazis-fonts http://www.greekfontsociety.gr/pages/en_typefaces18th.html
* gfs-jackson-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-neohellenic-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-nicefore-fonts http://www.greekfontsociety.gr/pages/en_typefaces_majuscules.html
* gfs-olga-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-porson-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-pyrsos-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* gfs-solomos-fonts http://www.greekfontsociety.gr/pages/en_typefaces19th.html
* gfs-theokritos-fonts http://www.greekfontsociety.gr/pages/en_typefaces20th.html
* google-droid-fonts http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts
* jabberpy http://downloads.sf.net/sourceforge/%{name}/%{name}-%{version}-0.tar.gz
* nawk http://www.cs.princeton.edu/~bwk/btl.mirror/index.html
* perl-Frontier-RPC http://search.cpan.org/CPAN/authors/id/R/RT/RTFIREFLY/Frontier-RPC-%{version}.tar.gz
* python-debian http://ftp.debian.org/debian/pool/main/p/python-debian/python-debian_%{version}.tar.gz
* superiotool http://www.coreboot.org/Superiotool
* yanone-kaffeesatz-fonts http://www.yanone.de/typedesign/kaffeesatz/

Packages need feedback from maintainers

Here I'll list some packages from my system that still need feedback from the maintainers if it's useful to monitor upstream. I am not the maintainer of any listed package!

A

B

C

Get a list of unmonitored installed packages

bash

Script:

#!/bin/bash

packages=`rpm -qa --qf "%{PACKAGER} %{SOURCERPM}\n" |awk '{ if ( $1 == "Fedora" ) { print $3 } }' |rev |cut -d- -f3- |rev |sort -u`
wget https://fedoraproject.org/wiki/Upstream_release_monitoring -O /tmp/urm.html -q
for p in $packages ; do if [ `grep -c $p /tmp/urm.html` == "0" ]; then echo -n $p ; repoquery -q $p --qf " %{URL}" |uniq ; fi ; done |grep -v "None"

python

#!/usr/bin/python -tt
# vim: fileencoding=utf8
# {{{ License header: GPLv2+
#    This file is part of cnucnu.
#
#    Cnucnu is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    Cnucnu is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with cnucnu.  If not, see <http://www.gnu.org/licenses/>.
# }}}

from collections import OrderedDict
import sys

import yum
from cnucnu.package_list import PackageList

if __name__ == "__main__":
    sys.stderr.write("Getting package list...")
    pl = PackageList()
    sys.stderr.write("done\n")

    yb = yum.YumBase()
    installed_pkgs = yb.rpmdb.returnPackages()
    srpms = OrderedDict()
    missing = OrderedDict()
    for package in sorted(installed_pkgs):
        if package.vendor == "Fedora Project":
            srpm = package.sourcerpm
            srpm_name = srpm.split(".src.rpm")[0].rsplit("-", 2)[0]
            if pl.get(srpm_name, None) is None:
                missing[srpm_name] = package.url

    print("Installed packages, that are not monitored")
    for package, url in missing.iteritems():
        print("{0} {1}".format(package, url))


Get a list of unmonitored packages you maintain

bash

You can put this in ~/.bash_profile and run unmonpkgs to get a list of your unmonitored packages.

function unmonpkgs {
  username='YOUR_FAS_USERNAME'
  f="$(mktemp)"
  curl -so "$f" "https://fedoraproject.org/wiki/Upstream_release_monitoring"
  for i in $(pkgdb-cli list --user "$username" | head -n -1 | awk "{print \$1}"); do
    grep "\* $i " "$f" >/dev/null || echo "Not found: $i"
  done
  rm "$f"
}

More accurate (but way slower) bash

Again, you can put this in ~/.bash_profile. This takes much longer than the above, but is more accurate because it (roughly) tries to match globbed package names such as "ghc-*". It could probably be made faster especially if some other language were used.

function unmonpkgs {
  username='YOUR_FAS_USERNAME'
  f="$(mktemp)"
  curl -s "https://fedoraproject.org/wiki/Upstream_release_monitoring" | grep '^ * ' | awk '{print $2}' > "$f"
  for i in $(pkgdb-cli list --user "$username" | head -n -1 | awk "{print \$1}"); do
    grep "^$i\$" "$f" > /dev/null
    if [ "$?" != "0" ]; then
        echo -e "\033[1;31m$i\033[0m"
        while read line; do
          [ "$line" == "" ] && continue
          [ "$line" == " " ] && continue
          (echo "$line" | grep '\*' > /dev/null) || continue
          (echo "$i" | grep "^$line" > /dev/null) &&
            echo -e " ...\033[1;33m   Possible match (\033[1;31m$i\033[0m): $line\033[0m"
        done < "$f"
    fi
  done
  rm "$f"
}

List Of Packages

0-9

 * 0install DEFAULT:0install SF-DEFAULT:zero-install
 * 2ping DEFAULT http://www.finnie.org/software/2ping/
 * 3proxy DEFAULT http://www.3proxy.ru/download/
 * 64tass DEFAULT SF-DEFAULT:tass64

A

 * a2ps DEFAULT GNU-DEFAULT
 * abcde DEFAULT GOOGLE-DEFAULT
 * abcm2ps abcm2ps-(.*)\.tar\.gz http://moinejf.free.fr/
 * abiword >([.0-9]+?)/< http://www.abisource.com/downloads/abiword/
 * abi-compliance-checker DEFAULT http://ispras.linuxbase.org/index.php/ABI_compliance_checker_Downloads
 * abi-dumper GITHUB-TAGS GITHUB-TAGS:lvc/abi-dumper
 * abook abook-(0.*?).tar.gz http://abook.sourceforge.net/
 * access-modifier-annotation GITHUB-TAGS GITHUB-TAGS:kohsuke/access-modifier
 * ack DEFAULT CPAN-DEFAULT
 * acl DEFAULT http://download.savannah.gnu.org/releases-noredirect/acl/
 * acpi DEFAULT SF-DEFAULT:acpiclient
 * acpica-tools DEFAULT:acpica-unix http://www.acpica.org/downloads
 * acpid DEFAULT http://sourceforge.net/projects/acpid2/
 * acpitool DEFAULT http://freeunix.dyndns.org:8000/site2/acpitool.shtml
 * adcli DEFAULT http://www.freedesktop.org/software/realmd/releases/
 * adf-accanthis-fonts (?s)>\s*Accanthis-Std.*?>(\d+\.\d+) http://arkandis.tuxfamily.org/adffonts.html
 * adjtimex DEFAULT DEBIAN-DEFAULT
 * adanaxisgpl DEFAULT http://www.mushware.com/files/
 * adns DEFAULT GNU-DEFAULT
 * adonthell >adonthell(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
 * advancecomp DEFAULT http://advancemame.sourceforge.net/comp-download.html
 * afpfs-ng DEFAULT SF-DEFAULT
 * Agda HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ahcpd ahcpd-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
 * aircrack-ng aircrack-ng-(.*?)\.tar.\gz http://download.aircrack-ng.org/
 * alltray DEFAULT https://edge.launchpad.net/alltray/old-maintenance
 * alpine DEFAULT http://patches.freeiz.com/alpine/release/index.html
 * alsa-utils DEFAULT ftp://ftp.alsa-project.org/pub/utils/
 * alsa-lib DEFAULT ftp://ftp.alsa-project.org/pub/lib/
 * alsa-tools DEFAULT ftp://ftp.alsa-project.org/pub/tools/
 * alsa-firmware DEFAULT ftp://ftp.alsa-project.org/pub/firmware/
 * alsa-plugins DEFAULT ftp://ftp.alsa-project.org/pub/plugins/
 * altermime DEFAULT http://www.pldaniels.com/altermime/
 * akuma GITHUB-TAGS GITHUB-TAGS:kohsuke/akuma
 * amavisd-new amavisd-new-([0-9.]*?).tar.xz http://www.ijs.si/software/amavisd/
 * amiri-fonts DEFAULT:amiri SF-DEFAULT:amiri
 * anet DEFAULT:libanet http://www.codelabs.ch/download/
 * animal-sniffer animal-sniffer-([0-9\.]+)\.jar http://repo1.maven.org/maven2/org/codehaus/mojo/animal-sniffer/*/
 * anki DEFAULT http://ankisrs.net/download/mirror/
 * ant DEFAULT:apache-ant http://www.apache.org/dist/ant/source/
 * ant-contrib DEFAULT SF-DEFAULT
 * ant-antunit DEFAULT:apache-ant-antunit http://www.apache.org/dist/ant/antlibs/antunit/source/
 * antlr-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/antlr-maven-plugin/
 * antlr3 GITHUB-TAGS GITHUB-TAGS:antlr/antlr3
 * antlrworks GITHUB-TAGS GITHUB-TAGS:antlr/antlrworks
 * annotation-indexer GITHUB-TAGS GITHUB-TAGS:jenkinsci/lib-annotation-indexer
 * apache-commons-beanutils DEFAULT:commons-beanutils http://www.apache.org/dist/commons/beanutils/source/
 * apache-commons-cli DEFAULT:commons-cli http://www.apache.org/dist/commons/cli/source/
 * apache-commons-codec DEFAULT:commons-codec http://www.apache.org/dist/commons/codec/source/
 * apache-commons-collections DEFAULT:commons-collections http://www.apache.org/dist/commons/collections/source/
 * apache-commons-compress DEFAULT:commons-compress http://www.apache.org/dist/commons/compress/source/
 * apache-commons-configuration DEFAULT:commons-configuration http://www.apache.org/dist/commons/configuration/source/
 * apache-commons-daemon DEFAULT:commons-daemon http://www.apache.org/dist/commons/daemon/source/
 * apache-commons-dbcp DEFAULT:commons-dbcp http://www.apache.org/dist/commons/dbcp/source/
 * apache-commons-dbutils DEFAULT:commons-dbutils http://www.apache.org/dist/commons/dbutils/source/
 * apache-commons-digester DEFAULT:commons-digester http://www.apache.org/dist/commons/digester/source/
 * apache-commons-discovery DEFAULT:commons-discovery http://www.apache.org/dist/commons/discovery/source/
 * apache-commons-el DEFAULT:commons-el http://www.apache.org/dist/commons/el/source/
 * apache-commons-exec DEFAULT:commons-exec http://www.apache.org/dist/commons/exec/source/
 * apache-commons-fileupload DEFAULT:commons-fileupload http://www.apache.org/dist/commons/fileupload/source/
 * apache-commons-io DEFAULT:commons-io http://www.apache.org/dist/commons/io/source/
 * apache-commons-jexl DEFAULT:commons-jexl http://www.apache.org/dist/commons/jexl/source/
 * apache-commons-jxpath DEFAULT:commons-jxpath http://www.apache.org/dist/commons/jxpath/source/
 * apache-commons-lang DEFAULT:commons-lang http://www.apache.org/dist/commons/lang/source/
 * apache-commons-lang3 DEFAULT:commons-lang3 http://archive.apache.org/dist/commons/lang/source/
 * apache-commons-launcher DEFAULT:commons-launcher http://www.apache.org/dist/commons/launcher/source/
 * apache-commons-logging DEFAULT:commons-logging http://www.apache.org/dist/commons/logging/source/
 * apache-commons-math DEFAULT:commons-math3 http://www.apache.org/dist/commons/math/source/
 * apache-commons-modeler DEFAULT:commons-modeler http://www.apache.org/dist/commons/modeler/source/
 * apache-commons-net DEFAULT:commons-net http://www.apache.org/dist/commons/net/source/
 * apache-commons-parent commons-parent-(\d+)[^-] http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/
 * apache-commons-pool DEFAULT:commons-pool http://www.apache.org/dist/commons/pool/source/
 * apache-commons-validator DEFAULT:commons-validator http://www.apache.org/dist/commons/validator/source/
 * apache-commons-vfs DEFAULT:commons-vfs http://archive.apache.org/dist/commons/vfs/source/
 * apache-james-project james-parent-([0-9\.]+)-source-release\.zip http://repo1.maven.org/maven2/org/apache/james/james-parent/*/
 * apache-juddi juddi-([^/]+)/ http://svn.apache.org/repos/asf/juddi/tags/
 * apache-mime4j DEFAULT http://james.apache.org/download.cgi
 * apache-rat DEFAULT http://www.apache.org/dist/creadur/*/
 * apache-resource-bundles <version>([^<]+)</version> http://repo1.maven.org/maven2/org/apache/apache-resource-bundles/maven-metadata.xml
 * apanov-edrip-fonts DEFAULT:edrip ftp://ftp.dvo.ru/pub/Font/edrip/
 * apanov-heuristica-fonts DEFAULT:heuristica GOOGLE-DEFAULT:evristika
 * apcupsd DEFAULT SF-DEFAULT
 * api-sanity-checker GITHUB-TAGS GITHUB-TAGS:lvc/api-sanity-checker
 * apr DEFAULT http://www.apache.org/dist/apr/
 * apr-util DEFAULT http://www.apache.org/dist/apr/
 * apvlv DEFAULT http://naihe2010.github.com/apvlv/
 * aqute-bnd \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bnd/
 * aqute-bndlib \"(\d+\.\d+[\.\d+]*)\/\" http://repo1.maven.org/maven2/biz/aQute/bndlib/
 * arch-install-scripts GITHUB-TAGS GITHUB-TAGS:falconindy/arch-install-scripts
 * archimedes DEFAULT GNU-DEFAULT
 * archivemount DEFAULT http://www.cybernoia.de/software/archivemount/
 * archlinux-keyring archlinux-keyring-([0-9]+)\.tar\..* https://projects.archlinux.org/archlinux-keyring.git/refs/
 * ardour3 [Aa]rdour\ (3\.(?:[0-9]+\.)[0-9]+)\ source\ code http://community.ardour.org/s/buy_anon
 * arduino DEFAULT GOOGLE-DEFAULT
 * args4j args4j-site-([0-9.]*?)\" https://github.com/kohsuke/args4j/tags
 * argus DEFAULT http://www.qosient.com/argus/
 * argyllcms DEFAULT:hargyllcms http://people.freedesktop.org/~hughsient/releases/
 * aria2 DEFAULT SF-DEFAULT
 * arp-scan DEFAULT http://www.nta-monitor.com/tools-resources/security-tools/arp-scan-archive
 * arpack DEFAULT:arpack-ng http://forge.scilab.org/index.php/p/arpack-ng/
 * arprec DEFAULT http://crd-legacy.lbl.gov/~dhbailey/mpdist/
 * asc DEFAULT SF-DEFAULT:asc-hq
 * ascii-design DEFAULT SF-DEFAULT
 * asciinema GITHUB-TAGS GITHUB-TAGS:sickill/asciinema
 * askbot DEFAULT PYPI-DEFAULT
 * aspell DEFAULT GNU-DEFAULT
 * ast DEFAULT http://www.starlink.ac.uk/download/ast/
 * astronomy-menus DEFAULT https://git.fedorahosted.org/git/astronomy.git
 * astyle astyle_(.*?)_linux\.tar\.gz SF-DEFAULT
 * asunder asunder-([0-9.]*?).tar.bz2 http://littlesvr.ca/asunder/releases/
 * async-http-client GITHUB-TAGS GITHUB-TAGS:AsyncHttpClient/async-http-client
 * at DEFAULT DEBIAN-DEFAULT
 * atari++ DEFAULT http://www.xl-project.com/downloads.html
 * atinject >(\d[^/]*)/< http://atinject.googlecode.com/svn/tags/
 * atk DEFAULT GNOME-DEFAULT
 * atlas atlas([0-9].\d*[0248].[0-9].*?).tar.bz2 SF-DEFAULT:math-atlas
 * atlascpp DEFAULT:Atlas-C++ SF-DEFAULT:worldforge
 * atomix DEFAULT GNOME-DEFAULT
 * atool DEFAULT http://download.savannah.gnu.org/releases/atool/
 * atop DEFAULT http://www.atoptool.nl/downloadatop.php
 * ATpy DEFAULT PYPI-DEFAULT
 * attr DEFAULT http://download.savannah.gnu.org/releases-noredirect/attr/
 * audacious DEFAULT http://audacious-media-player.org/downloads
 * audacity audacity-minsrc-(.*?)\.tar\.xz GOOGLE-DEFAULT
 * autofs DEFAULT http://kernel.org/pub/linux/daemons/autofs/v*/
 * autoconf DEFAULT GNU-DEFAULT
 * autoconf-archive DEFAULT GNU-DEFAULT
 * autogen "rel([^/]+)/" GNU-DEFAULT
 * automake DEFAULT GNU-DEFAULT
 * autossh autossh-(.+?)\.t.*z http://www.harding.motd.ca/autossh/
 * autokey DEFAULT GOOGLE-DEFAULT
 * avahi DEFAULT http://avahi.org/download/
 * avogadro avogadro-([0-9]\.[0-9]*[02468]\.[0-9.]*)\.tar.bz2 SF-DEFAULT
 * avra DEFAULT SF-DEFAULT
 * awesome DEFAULT http://awesome.naquadah.org/download/
 * awstats awstats-(.*?).tar.gz http://sourceforge.net/project/showfiles.php?group_id=13764&package_id=11481

B

 * b43-fwcutter DEFAULT http://bues.ch/b43/fwcutter/
 * babel DEFAULT:Babel http://ftp.edgewall.com/pub/babel/
 * babeld babeld-([0-9.]*?).tar.gz http://www.pps.univ-paris-diderot.fr/~jch/software/files/
 * backintime DEFAULT http://backintime.le-web.org/download_page/
 * BackupPC DEFAULT SF-DEFAULT:backuppc
 * bam DEFAULT http://matricks.github.io/bam/
 * bamf DEFAULT LP-DEFAULT
 * banner DEFAULT http://software.cedar-solutions.com/ftp/software/
 * banshee DEFAULT http://banshee.fm/download/
 * barcode DEFAULT GNU-DEFAULT
 * barman DEFAULT PYPI-DEFAULT
 * base64coder ([0-9]{4}-[0-9]{2}-[0-9]{2}) http://repo2.maven.org/maven2/biz/source_code/base64coder/
 * bash DEFAULT GNU-DEFAULT
 * batik "batik-src-([^"]+).zip" http://archive.apache.org/dist/xmlgraphics/batik/
 * batti DEFAULT GOOGLE-DEFAULT:batti-gtk
 * bc DEFAULT GNU-DEFAULT
 * bcel DEFAULT http://www.apache.org/dist/commons/bcel/source/
 * bcrypt DEFAULT SF-DEFAULT
 * be DEFAULT http://download.bugseverywhere.org/releases/
 * beecrypt DEFAULT SF-DEFAULT
 * bea-stax stax-src-([0-9.]*?)\.zip http://dist.codehaus.org/stax/distributions/
 * BEDTools \bBEDTools\.v(.*?)\.t GOOGLE-DEFAULT:bedtools
 * beep beep-([0-9\.]+).tar.gz http://www.johnath.com/beep/
 * beust-jcommander jcommander-([0-9.]*?)\" https://github.com/cbeust/jcommander/tags
 * bfast DEFAULT SF-DEFAULT
 * bibus DEFAULT SF-DEFAULT:bibus-biblio
 * bibutils DEFAULT SF-DEFAULT
 * bigloo Current version is <font color="red">(.*?)</font> http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html
 * bijiben DEFAULT GNOME-DEFAULT 
 * billiards DEFAULT http://download.savannah.gnu.org/releases/billiards/
 * bindfs DEFAULT http://bindfs.org/downloads/
 * biosdevname DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/biosdevname.git/
 * bip DEFAULT https://projects.duckcorp.org/projects/bip/files
 * bird DEFAULT http://bird.network.cz/?download
 * bison DEFAULT GNU-DEFAULT
 * bitbake DEFAULT SF-DEFAULT:bitbake.berlios
 * bitlyclip DEFAULT PYPI-DEFAULT
 * bitmap DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * bitstream-vera-fonts DEFAULT:ttf-bitstream-vera GNOME-DEFAULT:ttf-bitstream-vera
 * blackbox DEFAULT SF-DEFAULT:blackboxwm
 * bleachbit DEFAULT SF-DEFAULT
 * 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
 * blosc archive/v(.*?)\.zip https://github.com/FrancescAlted/blosc/releases
 * bluefish DEFAULT SF-DEFAULT
 * bluetile HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bmake DEFAULT http://www.crufty.net/ftp/pub/sjg/
 * bmon DEFAULT http://www.carisma.slowglass.com/~tgr/bmon/files/
 * bodr DEFAULT SF-DEFAULT
 * boinc-client boinc_([0-9.]*?)\_i686\-pc\-linux\-gnu.sh http://boinc.berkeley.edu/dl/
 * boswars DEFAULT http://www.boswars.org/dist/releases/
 * botan Botan-([0-9]*\.[0-9]*[02468]\.[0-9.]*)\.tbz http://botan.randombit.net/download.html
 * bouncycastle (?i)Java\s+Release\s+([\d.]+) http://www.bouncycastle.org/
 * brainfuck HACKAGE-DEFAULT HACKAGE-DEFAULT
 * bridge-utils DEFAULT SF-DEFAULT:bridge
 * bridge-method-injector bridge-method-injector.*-([\d+.]*) https://github.com/infradna/bridge-method-injector/releases
 * brise DEFAULT GOOGLE-DEFAULT:rimeime
 * brltty DEFAULT http://mielke.cc/brltty/download.html
 * bsd-games DEFAULT ftp://metalab.unc.edu/pub/Linux/games/
 * bsh DEFAULT http://www.beanshell.org/developer.html
 * bsf DEFAULT http://archive.apache.org/dist/jakarta/bsf/source/
 * bti (\d\d\d)\.zip https://github.com/gregkh/bti/tags
 * btkbdd \bv([\d+\.]+)\b https://github.com/lkundrak/virtkbd/tags
 * btrfs-progs btrfs-progs-v(.*?)\.tar http://kernel.org/pub/linux/kernel/people/mason/btrfs-progs/
 * buildbot archive/v(.*?)\.zip https://github.com/buildbot/buildbot/releases
 * buildnumber-maven-plugin buildnumber-maven-plugin-([0-9.]*?.*)\/\" http://svn.codehaus.org/mojo/tags/
 * busybox DEFAULT http://www.busybox.net/downloads/
 * bvi DEFAULT SF-DEFAULT
 * byacc DEFAULT ftp://invisible-island.net/byacc/
 * byaccj \bbyaccj([\d.]*?)_src\.t SF-DEFAULT
 * bygfoot DEFAULT SF-DEFAULT
 * byobu DEFAULT LP-DEFAULT
 * bzip2 DEFAULT http://www.bzip.org/downloads.html
 * bzr DEFAULT LP-DEFAULT
 * bzr-fastimport DEFAULT LP-DEFAULT
 * bzrtools DEFAULT http://wiki.bazaar.canonical.com/BzrTools

C

 * cab HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-dev HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabal-rpm HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cabextract DEFAULT http://www.cabextract.org.uk/
 * cacti DEFAULT http://www.cacti.net/downloads/
 * cairo DEFAULT http://cairographics.org/releases/
 * cal10n DEFAULT http://cal10n.qos.ch/dist/
 * calc DEFAULT SF-DEFAULT
 * calligra DEFAULT http://download.kde.org/stable/calligra-latest/
 * cantata DEFAULT https://code.google.com/p/cantata/wiki/Downloads
 * cardpeek DEFAULT http://pannetrat.com/Cardpeek/Install/
 * caribou DEFAULT GNOME-DEFAULT
 * carto NPM-DEFAULT NPM-DEFAULT
 * catfish DEFAULT LP-DEFAULT:catfish-search
 * ccache DEFAULT http://samba.org/ftp/ccache/
 * CCfits DEFAULT http://heasarc.gsfc.nasa.gov/fitsio/CCfits/
 * ccrtp DEFAULT GNU-DEFAULT
 * cd-discid DEFAULT http://linukz.org/cd-discid.shtml
 * cdk cdk-5.0-(.*?)\.tgz ftp://invisible-island.net/cdk/
 * cdlabelgen cdlabelgen-(.*?).tgz http://www.aczoom.com/tools/cdinsert/
 * cdrdao DEFAULT SF-DEFAULT
 * cdrkit DEFAULT http://cdrkit.org/releases/
 * celt DEFAULT http://downloads.us.xiph.org/releases/celt/
 * centerim centerim-(.*?).tar.gz http://www.centerim.org/download/releases/
 * ceph DEFAULT http://ceph.com/resources/downloads/
 * cfengine DEFAULT GNU-DEFAULT
 * cfitsio cfitsio([0-9.]*?).tar.gz http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/
 * cflow DEFAULT GNU-DEFAULT
 * cgnslib cgnslib_(.*?).tar.gz http://sourceforge.net/projects/cgns/
 * CGAL CGAL-([0-9.]*)\.tar.xz https://gforge.inria.fr/frs/?group_id=52
 * cgit DEFAULT http://git.zx2c4.com/cgit/refs/tags
 * checkstyle DEFAULT SF-DEFAULT
 * checkpolicy DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * chemical-mime-data DEFAULT SF-DEFAULT:chemical-mime
 * chemtool DEFAULT http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html
 * cherrytree DEFAULT http://www.giuspen.com/cherrytree/
 * chicken DEFAULT http://code.call-cc.org/
 * childsplay DEFAULT SF-DEFAULT
 * chinese-calendar DEFAULT LP-DEFAULT
 * chirp chirp-([0-9]+\.[0-9]+\.*[0-9]?).tar.gz http://chirp.danplanet.com/projects/chirp/wiki/Download
 * chmsee DEFAULT GOOGLE-DEFAULT
 * choqok DEFAULT SF-DEFAULT
 * chromaprint DEFAULT https://github.com/lalinsky/chromaprint/downloads
 * cifs-utils DEFAULT http://www.samba.org/ftp/linux-cifs/cifs-utils/
 * cjkuni-ukai-fonts DEFAULT:ttf-arphic-ukai DEBIAN-DEFAULT:ttf-arphic-ukai
 * cjkuni-uming-fonts DEFAULT:ttf-arphic-uming DEBIAN-DEFAULT:ttf-arphic-uming
 * ckeditor CKEditor\s([0-9.]*) http://download.cksource.com/CKEditor/CKEditor/
 * clamav DEFAULT SF-DEFAULT
 * ClanLib DEFAULT http://clanlib.org/download/releases-*/
 * claws-mail DEFAULT SF-DEFAULT:sylpheed-claws
 * clean clean([0-9.]*?)_boot.tar.gz http://wiki.clean.cs.ru.nl/Download_Clean
 * clementine DEFAULT GOOGLE-DEFAULT:clementine-player
 * clisp DEFAULT http://ftp.gnu.org/gnu/clisp/latest/
 * cloc DEFAULT SF-DEFAULT
 * clojure >(\d+\.\d+\.\d+)\/ http://repo1.maven.org/maven2/org/clojure/clojure/
 * clojure-maven-plugin DEFAULT https://github.com/talios/clojure-maven-plugin/tags
 * clusterPy DEFAULT GOOGLE-DEFAULT:clusterpy
 * clutter DEFAULT GNOME-DEFAULT
 * clutter-gtk DEFAULT GNOME-DEFAULT
 * clutter-gst DEFAULT GNOME-DEFAULT
 * cmake DEFAULT http://www.cmake.org/cmake/resources/software.html
 * cmdtest DEFAULT DEBIAN-DEFAULT
 * cmockery2 GITHUB-TAGS GITHUB-TAGS:lpabon/cmockery2
 * cmospwd cmospwd-([0-9\.]*?).tar.bz2 http://www.cgsecurity.org/wiki/CmosPwd
 * coan DEFAULT SF-DEFAULT:coan2
 * cobertura DEFAULT SF-DEFAULT
 * cobertura-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/cobertura-maven-plugin
 * coda DEFAULT http://www.coda.cs.cmu.edu/pub/coda/src/
 * codeblocks DEFAULT SF-DEFAULT
 * coccinelle Current\sversion:\s([^,]*), http://coccinelle.lip6.fr/download.php
 * cogl DEFAULT GNOME-DEFAULT
 * collada-dom GITHUB-TAGS GITHUB-TAGS:rdiankov/collada-dom
 * collectl DEFAULT SF-DEFAULT
 * colord-gtk DEFAULT http://www.freedesktop.org/software/colord/releases/
 * colordiff DEFAULT http://www.colordiff.org/
 * ColPack DEFAULT http://cscapes.cs.purdue.edu/download/ColPack/
 * compiz DEFAULT LP-DEFAULT
 * conduit DEFAULT GNOME-DEFAULT
 * connman DEFAULT https://www.kernel.org/pub/linux/network/connman/
 * conntrack-tools DEFAULT http://ftp.netfilter.org/pub/conntrack-tools/
 * console-setup DEFAULT DEBIAN-DEFAULT
 * ConsoleKit DEFAULT http://www.freedesktop.org/software/ConsoleKit/dist/
 * converseen DEFAULT SF-DEFAULT
 * convmv DEFAULT https://www.j3e.de/linux/convmv/
 * coreutils DEFAULT GNU-DEFAULT
 * corkscrew corkscrew-(.*?).tar.gz http://www.agroman.net/corkscrew/
 * corosync DEFAULT https://github.com/corosync/corosync/downloads
 * corrida DEFAULT http://corrida.pkim.org/releases
 * couchdb ([\d\.]+)(?=/") http://www.apache.org/dist/couchdb/source/
 * covered DEFAULT SF-DEFAULT
 * cowpatty DEFAULT http://www.willhackforsushi.com/?page_id=50
 * cowsay DEFAULT http://www.nog.net/~tony/warez/
 * cpdup DEFAULT http://apollo.backplane.com/FreeSrc/
 * cpl DEFAULT ftp://ftp.eso.org/pub/cpl/
 * cpio DEFAULT GNU-DEFAULT
 * cpphs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * cppi DEFAULT GNU-DEFAULT
 * cppcheck DEFAULT SF-DEFAULT
 * cproto DEFAULT ftp://invisible-island.net/cproto/
 * cptutils DEFAULT http://soliton.vm.bytemark.co.uk/pub/jjg/code/
 * cpuid cpuid-(.*?)\.src\.tar\.gz http://www.etallen.com/cpuid.html
 * cracklib DEFAULT SF-DEFAULT
 * crda DEFAULT http://kernel.org/pub/software/network/crda/
 * CriticalMass DEFAULT SF-DEFAULT:criticalmass
 * crm114 crm114-(.*?)-Blame.*?.tar.gz http://crm114.sourceforge.net/tarballs/
 * criu criu-(.*?)\.tar\.bz2 http://download.openvz.org/criu/
 * cscope DEFAULT SF-DEFAULT
 * csmith csmith-([0-9.]*)\.tar\.gz https://github.com/csmith-project/csmith/tags
 * cssparser DEFAULT SF-DEFAULT
 * cssed DEFAULT SF-DEFAULT
 * csslint archive/v(.*?)\.zip https://github.com/stubbornella/csslint/releases
 * cstream cstream-([0-9\.]+)\.tar\.gz http://www.cons.org/cracauer/download/
 * ctags DEFAULT SF-DEFAULT
 * ctdb DEFAULT http://www.samba.org/ftp/ctdb/
 * ctstream ctstream-([^-/_\s]+)(?:\.asc)\b http://xpisar.wz.cz/ctstream/
 * ctorrent ctorrent-dnh(.*?).tar.gz http://www.rahul.net/dholmes/ctorrent/
 * CUnit CUnit-(.*?).tar.bz2 http://sourceforge.net/projects/cunit/
 * cups cups-(\d\.\d\.\d)-source\.tar\.bz2 http://www.cups.org/software.php
 * curl DEFAULT http://curl.haxx.se/download/
 * curlpp DEFAULT GOOGLE-DEFAULT
 * cvs >(\d+(?:\.\d+)+)/< http://ftp.gnu.org/non-gnu/cvs/source/stable/
 * cvs2cl Revision:\s*([^\s$]+) http://www.red-bean.com/cvs2cl/cvs2cl.pl
 * cvsps DEFAULT http://www.cobite.com/cvsps/
 * cxxtools DEFAULT http://www.tntnet.org/download.html
 * cyphesis DEFAULT SF-DEFAULT:worldforge

D

 * darcs HACKAGE-DEFAULT HACKAGE-DEFAULT
 * darkhttpd DEFAULT http://unix4lyfe.org/darkhttpd/
 * darktable DEFAULT SF-DEFAULT
 * dash DEFAULT http://gondor.apana.org.au/~herbert/dash/files/
 * datanommer-commands DEFAULT:datanommer.commands PYPI-DEFAULT:datanommer.commands
 * dataquay DEFAULT http://breakfastquay.com/dataquay/
 * datefudge datefudge\_(.*?)\.(?:tar|t[bglx]z)\b http://packages.debian.org/testing/datefudge
 * datovka DEFAULT http://www.nic.cz/public_media/datove_schranky/releases/src/
 * dbench dbench-(.*?)\.tar http://samba.org/ftp/tridge/dbench/
 * dbh DEFAULT:libdbh2 SF-DEFAULT
 * dblatex DEFAULT SF-DEFAULT
 * dbus-python DEFAULT http://dbus.freedesktop.org/releases/dbus-python/
 * dbus-sharp e/v(.*?)\.zip http://github.com/mono/dbus-sharp/releases
 * dclib DEFAULT SF-DEFAULT:wxdcgui
 * dcraw DEFAULT http://www.cybercom.net/~dcoffin/dcraw/archive/
 * dd_rescue DEFAULT http://www.garloff.de/kurt/linux/ddrescue/
 * ddclient DEFAULT SF-DEFAULT
 * ddd DEFAULT GNU-DEFAULT
 * ddpt DEFAULT http://sg.danny.cz/sg/ddpt.html
 * ddrescue DEFAULT GNU-DEFAULT
 * debmirror debmirror_([0-9.]*).tar.gz DEBIAN-DEFAULT
 * debootstrap DEFAULT DEBIAN-DEFAULT
 * decentxml DEFAULT GOOGLE-DEFAULT
 * decibel-audio-player decibel-audio-player-([0-9]+\..+?).tar.gz http://decibel.silent-blade.org/index.php?n=Main.Download
 * deja-dup DEFAULT LP-DEFAULT
 * dejagnu DEFAULT GNU-DEFAULT
 * dejavu-fonts DEFAULT SF-DEFAULT:dejavu
 * deluge DEFAULT http://download.deluge-torrent.org/source/
 * denemo DEFAULT GNU-DEFAULT
 * desktop-file-utils DEFAULT http://www.freedesktop.org/software/desktop-file-utils/releases/
 * detox DEFAULT SF-DEFAULT
 * dev86 DEFAULT:Dev86src http://v3.sk/~lkundrak/dev86/
 * device-mapper-multipath multipath-tools-(.*?)\.tar\.bz2 http://christophe.varoqui.free.fr/multipath-tools/
 * demorse DEFAULT http://www.qsl.net/5b4az/pages/morse.html
 * devtodo devtodo-([0-9.]*).tar.gz http://swapoff.org/devtodo1.html
 * dexter DEFAULT LP-DEFAULT:dexter-rolodex
 * dgc dgc-(.*?).tar.gz http://sourceforge.net/projects/dgc/
 * dia DEFAULT GNOME-DEFAULT
 * dialog dialog-(.*?)\.tgz ftp://invisible-island.net/dialog/
 * diction DEFAULT GNU-DEFAULT
 * diffmark DEFAULT http://www.mangrove.cz/diffmark/
 * diffstat DEFAULT ftp://invisible-island.net/diffstat/
 * diffuse DEFAULT SF-DEFAULT
 * diffutils DEFAULT GNU-DEFAULT
 * digikam DEFAULT SF-DEFAULT
 * dillo DEFAULT http://www.dillo.org/download/
 * dirmngr DEFAULT ftp://ftp.gnupg.org/gcrypt/dirmngr/
 * dkms DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/dkms.git/
 * dmapd DEFAULT https://www.flyn.org/projects/dmapd/download.html
 * dmenu DEFAULT http://tools.suckless.org/dmenu/
 * dmidecode DEFAULT http://download.savannah.gnu.org/releases/dmidecode/
 * dnsmasq dnsmasq-([0-9]+.[0-9]+).tar.xz http://www.thekelleys.org.uk/dnsmasq/
 * dnsyo DEFAULT PYPI-DEFAULT
 * docco NPM-DEFAULT NPM-DEFAULT
 * docker-io v([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/dotcloud/docker/releases
 * docker-registry ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/dotcloud/docker-registry/releases
 * docky DEFAULT LP-DEFAULT
 * doodle doodle-(.*?).tar.gz http://gnunet.org/doodle/
 * dom4j DEFAULT SF-DEFAULT
 * dopewars DEFAULT SF-DEFAULT
 * dos2unix DEFAULT http://waterlan.home.xs4all.nl/dos2unix.html
 * dosbox DEFAULT SF-DEFAULT
 * dosfstools DEFAULT http://www.daniel-baumann.ch/software/dosfstools/
 * dovecot DEFAULT http://www.dovecot.org/download.html
 * doxygen doxygen-(.*?)\.src\.tar\.gz ftp://ftp.stack.nl/pub/users/dimitri/
 * dot2tex DEFAULT GOOGLE-DEFAULT
 * dpsearch dpsearch-([0-9\.]+\-[0-9]+\-.*?).tar.bz2 GOOGLE-DEFAULT:dataparksearch
 * drawtiming DEFAULT SF-DEFAULT
 * drbd DEFAULT http://oss.linbit.com/drbd/
 * dreampie DEFAULT PYPI-DEFAULT
 * drobo-utils DEFAULT SF-DEFAULT
 * dropbear DEFAULT https://matt.ucc.asn.au/dropbear/dropbear.html
 * drraw DEFAULT http://web.taranis.org/drraw/dist
 * drumstick DEFAULT SF-DEFAULT
 * drupal?-* DRUPAL-DEFAULT DRUPAL-DEFAULT
 * drupal6 (?s)Recommended releases.*?>(6.[^<]*) DRUPAL-DEFAULT:drupal
 * drupal7 (?s)Recommended releases.*?>(7.[^<]*) DRUPAL-DEFAULT:drupal
 * dsniff DEFAULT http://www.monkey.org/~dugsong/dsniff/
 * dstat latest <b>(.*?)<\/b> tarball http://dag.wieers.com/home-made/dstat/
 * dtach DEFAULT SF-DEFAULT
 * dtrx DEFAULT http://brettcsmith.org/2007/dtrx/
 * dtv-scan-tables DEFAULT http://linuxtv.org/downloads/dtv-scan-tables/
 * dumpasn1 version\s+(2\d{7})\b http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c
 * duplicity DEFAULT http://launchpad.net/duplicity/+download
 * duply DEFAULT SF-DEFAULT:ftplicity
 * dvb-apps DEFAULT:linuxtv-dvb-apps http://www.linuxtv.org/downloads/legacy/
 * dvd+rw-tools DEFAULT http://fy.chalmers.se/~appro/linux/DVD+RW/tools/
 * dvdauthor DEFAULT SF-DEFAULT
 * dvdbackup DEFAULT http://dvdbackup.sourceforge.net/
 * dvtm DEFAULT http://www.brain-dump.org/projects/dvtm/
 * dwb DEFAULT https://bitbucket.org/portix/dwb/downloads
 * dwdiff DEFAULT http://os.ghalkes.nl/dist/
 * dwm DEFAULT http://dwm.suckless.org/
 * dx The latest released version is (.*?)\. Check http://www.opendx.org/download.html

E

 * e2fsprogs DEFAULT SF-DEFAULT
 * e2tools e2tools-([0-9\.]+)\.tar\.gz http://home.earthlink.net/~k_sheff/sw/e2tools/
 * earcandy DEFAULT LP-DEFAULT
 * easymock DEFAULT SF-DEFAULT
 * easystroke DEFAULT SF-DEFAULT
 * easytag DEFAULT GNOME-DEFAULT
 * ecl DEFAULT SF-DEFAULT:ecls
 * eclipse >([0-9]\.[0-9])</a http://download.eclipse.org/eclipse/downloads/
 * eclipse-m2e-core releases/(.*?)/.*\.zip http://git.eclipse.org/c/m2e/m2e-core.git/refs/tags
 * eclipse-fedorapackager eclipse-fedorapackager-(\d.\d.\d).* https://fedorahosted.org/released/eclipse-fedorapackager/
 * eclipse-jbosstools DEFAULT:jbosstools https://github.com/jbosstools/jbosstools-build-sites/releases
 * eclipse-veditor VEditor (\d+\.\d+\.\d+) SF-DEFAULT:veditor
 * eclipse-wtp-jeetools R(\d_\d_\d)\.zip http://git.eclipse.org/c/jeetools/webtools.javaee.git/refs/tags
 * eclipse-wtp-jpa R(\d_\d_\d)\.zip http://git.eclipse.org/c/dali/webtools.dali.git/refs/tags
 * eclipse-wtp-jsf R(\d_\d_\d)\.zip http://git.eclipse.org/c/jsf/webtools.jsf.git/refs/tags
 * eclipse-wtp-webservices R(\d_\d_\d)\.zip http://git.eclipse.org/c/webservices/webtools.webservices.git/refs/tags
 * ecryptfs-utils ecryptfs-utils_(.*?).orig.tar.gz https://launchpad.net/ecryptfs/+download
 * ed DEFAULT GNU-DEFAULT
 * ed2k_hash DEFAULT SF-DEFAULT:ed2k-tools
 * edac-utils DEFAULT SF-DEFAULT
 * egd DEFAULT ftp://ftp.gnupg.org/gcrypt/egd/
 * efibootmgr e\/(.*?)\.tar\.gz http://github.com/vathpela/efibootmgr/releases
 * efivar e\/(.*?)\.tar\.gz http://github.com/vathpela/efivar/releases
 * efte DEFAULT SF-DEFAULT
 * eigen3 ([0-9]?\.[0-9.]+).tar.gz https://bitbucket.org/eigen/eigen/downloads
 * ejabberd v([\d+\.]+)\.zip https://github.com/processone/ejabberd/tags
 * ekg2 DEFAULT https://github.com/leafnode/ekg2/tags
 * ekg ekg-(.{3,5}?).tar.gz http://ekg.chmurka.net/download.php
 * electric DEFAULT GNU-DEFAULT
 * elektra DEFAULT http://www.libelektra.org/ftp/elektra/releases/
 * elinks DEFAULT http://elinks.or.cz/download/
 * elixir \"v([0-9.]*?)\" https://api.github.com/repos/elixir-lang/elixir/tags
 * elk DEFAULT SF-DEFAULT
 * emacs DEFAULT GNU-DEFAULT
 * emacs-auctex DEFAULT:auctex GNU-DEFAULT:auctex
 * emacs-auto-complete DEFAULT:auto-complete http://cx4a.org/pub/auto-complete/
 * emacs-bbdb DEFAULT:bbdb http://download.savannah.gnu.org/releases/bbdb/
 * emacs-common-ddskk ddskk-([0-9]+\.[0-9.]+)\.tar\.gz http://openlab.ring.gr.jp/skk/maintrunk/
 * emacs-common-ess ess-(.*?).tgz http://stat.ethz.ch/ESS/downloads/ess/
 * emacs-common-muse muse-(.*?).tar.gz http://download.gna.org/muse-el/
 * emacs-haskell-mode (\d_\d_\d)\.zip https://github.com/haskell/haskell-mode/tags
 * emacs-ibus DEFAULT:ibus-el LP-DEFAULT:ibus.el
 * emacs-identica-mode identica-mode.tar.gz http://download.savannah.gnu.org/releases/identica-mode/
 * emacs-irsim-mode irsim-mode-version\s+"([^"]+)" http://irsim-mode.googlecode.com/files/irsim-mode.el
 * emacs-mew DEFAULT:mew http://www.mew.org/Release/
 * emacs-pymacs archive/v(.*?)\.zip https://github.com/pinard/Pymacs/tags
 * emacs-rpm-spec-mode \bVersion:\s+([\w.]+) http://tihlde.org/~stigb/rpm-spec-mode.el
 * emacs-vm vm-(\d+\.\d+\.\d+)\.tgz LP-DEFAULT:vm
 * emacspeak DEFAULT GOOGLE-DEFAULT
 * email2trac DEFAULT ftp://ftp.sara.nl/pub/outgoing/
 * ember DEFAULT SF-DEFAULT:worldforge
 * ember-media DEFAULT SF-DEFAULT:worldforge
 * emelfm2 DEFAULT http://emelfm2.net/rel/
 * emesene v([.0-9]+)\.(?:tar|zip) https://github.com/emesene/emesene/tags
 * emma DEFAULT SF-DEFAULT
 * encuentro DEFAULT LP-DEFAULT
 * enet DEFAULT http://enet.bespin.org/download/
 * engine_pkcs11 DEFAULT https://github.com/OpenSC/engine_pkcs11/tags
 * enscript DEFAULT GNU-DEFAULT
 * environment-modules DEFAULT:modules SF-DEFAULT:modules
 * eot-utils >eot-utilities-(.*?)\.(?:tar) http://www.w3.org/Tools/eot-utils/
 * epic DEFAULT:epic4 http://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/
 * epic5 DEFAULT http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/
 * epydoc DEFAULT SF-DEFAULT
 * eqntott DEFAULT GOOGLE-DEFAULT
 * erfa DEFAULT http://liberfa.github.io/erfa/
 * eris DEFAULT SF-DEFAULT:worldforge
 * erlang otp_src_(.*?).tar\.gz http://www.erlang.org/download.html
 * erlang-basho_metrics (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_metrics/tags
 * erlang-basho_stats (\d+\.\d+\.\d+)\.zip https://github.com/basho/basho_stats/tags
 * erlang-bear (\d+\.\d+\.\d+)\.zip https://github.com/boundary/bear/tags
 * erlang-bitcask (\d+\.\d+\.\d+)\.zip https://github.com/basho/bitcask/tags
 * erlang-cluster_info ([\d+\.]+)\.zip https://github.com/basho/cluster_info/tags
 * erlang-ebloom (\d+\.\d+\.\d+)\.zip https://github.com/basho/ebloom/tags
 * erlang-edown ([\d+\.]+)\.zip https://github.com/esl/edown/tags
 * erlang-eleveldb (\d+\.\d+\.\d+)\.zip https://github.com/basho/eleveldb/tags
 * erlang-eradius (\d+\.\d+\.\d+)\.zip https://github.com/lemenkov/eradius/tags
 * erlang-erlando (\d+_\d+_\d+)\.zip https://github.com/rabbitmq/erlando/tags
 * erlang-erlsyslog (\d+\.\d+)\.zip https://github.com/lemenkov/erlsyslog/tags
 * erlang-esasl (\d+\.\d+)\.zip https://github.com/mikma/esasl/tags
 * erlang-esdl esdl-([\d+\.]+)\.zip https://github.com/dgud/esdl/tags
 * erlang-etap (\d+\.\d+\.\d+)\.zip https://github.com/ngerakines/etap/tags
 * erlang-folsom ([\d+\.]+)\.zip https://github.com/boundary/folsom/tags
 * erlang-getopt ([\d+\.]+)\.zip https://github.com/jcomellas/getopt/tags
 * erlang-gproc ([\d+\.]+)\.zip https://github.com/uwiger/gproc/tags
 * erlang-ibrowse ([\d+\.]+)\.zip https://github.com/cmullaparthi/ibrowse/tags
 * erlang-js (\d+\.\d+\.\d+)\.zip https://github.com/basho/erlang_js/tags
 * erlang-lager (\d+\.\d+\.\d+)\.zip https://github.com/basho/lager/tags
 * erlang-lfe ([\d+\.]+)\.zip https://github.com/rvirding/lfe/tags
 * erlang-luke (\d+\.\d+\.\d+)\.zip https://github.com/basho/luke/tags
 * erlang-meck (\d+\.\d+\.\d+)\.zip https://github.com/eproxus/meck/tags
 * erlang-merge_index (\d+\.\d+\.\d+)\.zip https://github.com/basho/merge_index/tags
 * erlang-misultin (\d+\.\d+\.\d+)\.zip https://github.com/ostinelli/misultin/tags
 * erlang-mochiweb (\d+\.\d+\.\d+)\.zip https://github.com/mochi/mochiweb/tags
 * erlang-mustache (\d+\.\d+\.\d+)\.zip https://github.com/mojombo/mustache.erl/tags
 * erlang-neotoma ([\d+\.]+)\.zip https://github.com/seancribbs/neotoma/tags
 * erlang-oauth (\d+\.\d+\.\d+)\.zip https://github.com/tim/erlang-oauth/tags
 * erlang-poolboy ([\d+\.]+)\.zip https://github.com/devinus/poolboy/tags
 * erlang-protobuffs (\d+\.\d+\.\d+)\.zip https://github.com/basho/erlang_protobuffs/tags
 * erlang-ranch ([\d+\.]+)\.zip https://github.com/extend/ranch/tags
 * erlang-rebar (\d+\.\d+\.\d+)\.zip https://github.com/basho/rebar/tags
 * erlang-riak_api ([\d+\.]+)\.zip https://github.com/basho/riak_api/tags
 * erlang-riak_client (?:riakc-|\/)([\d\.]+)\.tar.gz https://github.com/basho/riak-erlang-client/tags
 * erlang-riak_control (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_control/tags
 * erlang-riak_core (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_core/tags
 * erlang-riak_err riak_err-(\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_err/tags
 * erlang-riak_kv (?:riak_kv-|\/)([\d\.]+)\.tar.gz https://github.com/basho/riak_kv/tags
 * erlang-riak_pb ([\d\.]+)\.tar.gz https://github.com/basho/riak_pb/tags
 * erlang-riak_pipe (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_pipe/tags
 * erlang-riak_search (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_search/tags
 * erlang-riak_sysmon (\d+\.\d+\.\d+)\.zip https://github.com/basho/riak_sysmon/tags
 * erlang-riaknostic "name":\s*"*v([\d\.]+)" https://api.github.com/repos/basho/riaknostic/tags
 * erlang-rpm-macros ([\d+\.]+)\.zip https://github.com/lemenkov/erlang-rpm-macros/tags
 * erlang-sext ([\d+\.]+)\.zip https://github.com/uwiger/sext/tags
 * erlang-skerl (\d+\.\d+\.\d+)\.zip https://github.com/basho/skerl/tags
 * erlang-webmachine (\d+\.\d+\.\d+)\.zip https://github.com/basho/webmachine/tags
 * esniper http://sourceforge.net/projects/esniper/files/esniper/([0-9.]+)/ SF-DEFAULT
 * esound DEFAULT GNOME-DEFAULT
 * esorex DEFAULT ftp://ftp.eso.org/pub/cpl/
 * espeak DEFAULT http://espeak.sourceforge.net/download.html
 * espresso-ab DEFAULT GOOGLE-DEFAULT:eqntott
 * etcd GITHUB-TAGS GITHUB-TAGS:coreos/etcd
 * etckeeper DEFAULT DEBIAN-DEFAULT
 * etherape DEFAULT http://sf.net/projects/etherape/
 * ethtool DEFAULT http://kernel.org/pub/software/network/ethtool/
 * etoys DEFAULT http://download.sugarlabs.org/sources/sucrose/glucose/etoys/
 * ettercap DEFAULT SF-DEFAULT
 * exaile DEFAULT http://www.exaile.org/download/
 * exempi exempi-([0-9\.]*?)\.tar.gz http://libopenraw.freedesktop.org/download/
 * exim DEFAULT ftp://ftp.exim.org/pub/exim/exim4/
 * exiv2 DEFAULT http://www.exiv2.org/download.html
 * expat DEFAULT SF-DEFAULT
 * expect \bexpect([\d.]+)\.t SF-DEFAULT
 * exec-maven-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/codehaus/mojo/exec-maven-plugin/
 * expresso NPM-DEFAULT NPM-DEFAULT
 * extremetuxracer DEFAULT:etr SF-DEFAULT
 * eyesight /v([\d+\.]+)\.tar\.gz https://github.com/hawaii-desktop/eyesight/tags

F

 * Falcon Falcon-([0-9\.]*)\.t.*gz http://falconpl.org/project_dl/_official_rel/
 * fabric DEFAULT:Fabric PYPI-DEFAULT:Fabric
 * fatrace DEFAULT http://launchpad.net/fatrace/+download
 * fatrat fatrat-(.*?).tar.gz http://www.dolezel.info/download/data/fatrat/
 * fatsort DEFAULT SF-DEFAULT
 * fbreader fbreader-sources-(.*?).tgz http://fbreader.org/downloads.php
 * fbset DEFAULT http://users.telenet.be/geertu/Linux/fbdev/
 * fdm DEFAULT SF-DEFAULT
 * fdupes fdupes-(.*?).tar.gz http://netdial.caribe.net/~adrian2/programs/
 * fedfs-utils fedfs-utils-([0-9.]*?).tar.gz http://oss.oracle.com/projects/fedfs-utils/files/
 * fedmsg DEFAULT PYPI-DEFAULT
 * fedora-review GITHUB-TAGS GITHUB-TAGS:timlau/FedoraReview
 * feh DEFAULT http://feh.finalrewind.org/
 * felix-bundlerepository org.apache.felix.bundlerepository-([0-9.]*).jar http://felix.apache.org/downloads.cgi
 * felix-gogo-command >org.apache.felix.gogo.command-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
 * felix-osgi-core >org.osgi.core-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
 * felix-osgi-obr >org.osgi.service.obr-([^<]+)-project.tar.gz< http://archive.apache.org/dist/felix/
 * felix-framework org.apache.felix.main.distribution-([0-9.]*?).tar.gz http://felix.apache.org/site/downloads.cgi
 * felix-osgi-compendium org.osgi.compendium-([0-9.]*?)-project.tar.gz http://www.apache.org/dist/felix/
 * felix-osgi-foundation org.osgi.foundation-([0-9.]*?)-bin.tar.gz http://www.apache.org/dist/felix/
 * felix-shell org.apache.felix.shell-([0-9.]*?).jar http://www.apache.org/dist/felix/
 * felix-utils org.apache.felix.utils-([0-9.]*?)-project.tar.gz http://www.apache.org/dist/felix/
 * fetchlog DEFAULT SF-DEFAULT
 * fetchmail DEFAULT SF-DEFAULT
 * ffsb DEFAULT SF-DEFAULT
 * fftw DEFAULT http://www.fftw.org/download.html
 * fido fido-([0-9\.]+).tar.gz http://www.joedog.org/pub/fido/
 * fio fio-([0-9\.]*?).tar.bz2 http://brick.kernel.dk/snaps/
 * file DEFAULT ftp://ftp.astron.com/pub/file/
 * filebench DEFAULT SF-DEFAULT
 * filezilla FileZilla\_([0-9\.]+)\_src.tar.bz2 http://download.filezilla-project.org/
 * findbugs findbugs-([0-9\.]*?)-source\.zip SF-DEFAULT
 * findutils DEFAULT GNU-DEFAULT
 * firehol DEFAULT http://firehol.org/download/latest/
 * fish DEFAULT http://fishshell.com/
 * flac DEFAULT SF-DEFAULT
 * fldigi fldigi-(.*?).tar.gz http://www.w1hkj.com/downloads/fldigi/
 * flex DEFAULT SF-DEFAULT
 * flexdock DEFAULT http://forge.scilab.org/index.php/p/flexdock/downloads/
 * flickcurl DEFAULT http://download.dajobe.org/flickcurl/
 * flterm DEFAULT:Release https://github.com/milkymist/milkymist/tags
 * fltk DEFAULT http://www.fltk.org/software.php
 * fluxbox DEFAULT http://fluxbox.org/download/
 * focuswriter GITHUB-TAGS GITHUB-TAGS:gottcode/focuswriter
 * fontconfig DEFAULT http://www.fontconfig.org/release/
 * foomatic foomatic-db-engine-(.*?\.[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
 * fop DEFAULT http://archive.apache.org/dist/xmlgraphics/fop/source/
 * fotoxx fotoxx-(.*?).tar.gz http://www.kornelix.com/tarballs.html
 * foxtrotgps foxtrotgps-(.*?).tar.xz http://www.foxtrotgps.org/releases/
 * fparser fparser((?:[0-9]+\.){1,2}[0-9]+)\.zip http://warp.povusers.org/FunctionParser/
 * fpc The latest release is <b>([\d.]+)</b> http://www.freepascal.org/download.var
 * fping DEFAULT http://www.fping.org/dist/
 * fprintd DEFAULT http://people.freedesktop.org/~hadess/
 * freecode-submit DEFAULT http://www.catb.org/~esr/freecode-submit/
 * freecol DEFAULT SF-DEFAULT
 * freecolor DEFAULT http://www.rkeene.org/files/oss/freecolor/
 * freeDiameter http://www.freediameter.net/hg/freeDiameter/archive/(\d+\.\d+\.\d+).tar.gz http://www.freediameter.net/trac/blog?format=rss
 * freedink DEFAULT GNU-DEFAULT
 * freedoom DEFAULT:freedoom-iwad http://download.savannah.gnu.org/releases/freedoom/freedoom-iwad/
 * freedoom-freedm DEFAULT:freedm http://download.savannah.gnu.org/releases/freedoom/freedm/
 * freedroidrpg DEFAULT SF-DEFAULT:freedroid
 * freefem++ freefem\+\+-(.*?).tar.gz http://www.freefem.org/ff++/ftp/
 * freeglut DEFAULT SF-DEFAULT
 * freehoo DEFAULT http://download.savannah.gnu.org/releases/freehoo/
 * freeipmi DEFAULT GNU-DEFAULT
 * freenx-server DEFAULT SF-DEFAULT:freenx.berlios
 * freemarker DEFAULT SF-DEFAULT
 * freemedforms DEFAULT:freemedformsfullsources GOOGLE-DEFAULT
 * freemind DEFAULT SF-DEFAULT
 * freeradius DEFAULT:freeradius-server ftp://ftp.freeradius.org/pub/freeradius/
 * freetype DEFAULT http://download.savannah.gnu.org/releases/freetype/
 * freexl DEFAULT http://www.gaia-gis.it/gaia-sins/freexl-sources/
 * fribidi DEFAULT http://fribidi.org/download/
 * fritzing /source-tarball/fritzing-([0-9a-z\.]+)?.source.tar\.bz2 http://fritzing.org/download/
 * fs_mark DEFAULT SF-DEFAULT:fsmark
 * f-spot DEFAULT GNOME-DEFAULT
 * fuse DEFAULT SF-DEFAULT
 * fusecompress archive/(.*?)\.zip https://github.com/tex/fusecompress/tags
 * fwsnort DEFAULT http://www.cipherdyne.org/fwsnort/download/

G

 * gabedit GabeditSrc(.*?)\.tar\.gz SF-DEFAULT
 * game-music-emu DEFAULT GOOGLE-DEFAULT
 * ganymed-ssh2 >ganymed-ssh2-build([^<]+).zip< http://www.ganymed.ethz.ch/ssh2/
 * gawk DEFAULT GNU-DEFAULT
 * g2clib g2clib-([0-9.]*).tar http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/
 * gajim gajim-(.*?)\.tar\.bz2 http://gajim.org/downloads.php
 * gamazons DEFAULT http://www.yorgalily.org/gamazons/src/
 * gambit-c Download latest release \(v([0-9.]+)\): http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page
 * gauche DEFAULT:Gauche SF-DEFAULT
 * gausssum DEFAULT:GaussSum SF-DEFAULT
 * gc DEFAULT http://www.hpl.hp.com/personal/Hans_Boehm/gc/
 * gcin DEFAULT http://www.csie.nctu.edu.tw/~cp76/gcin/download/
 * gcl DEFAULT GNU-DEFAULT
 * gcompris DEFAULT http://gcompris.net/download/
 * gd DEFAULT https://bitbucket.org/libgd/gd-libgd/downloads
 * gdbm DEFAULT GNU-DEFAULT
 * gdcm gdcm-([0-9.]*?)\.tar SF-DEFAULT
 * gdesklets DEFAULT http://www.gdesklets.de/
 * gdisk gptfdisk-(.*?)\.tar\.gz SF-DEFAULT:gptfdisk
 * gdome2 DEFAULT http://gdome2.cs.unibo.it/
 * geary DEFAULT GNOME-DEFAULT
 * gedit-valencia DEFAULT:valencia GNOME-DEFAULT:valencia
 * geeqie DEFAULT SF-DEFAULT
 * genbackupdata DEFAULT http://code.liw.fi/debian/pool/main/g/genbackupdata/
 * gengetopt DEFAULT GNU-DEFAULT
 * genromfs DEFAULT SF-DEFAULT:romfs
 * gentoo DEFAULT SF-DEFAULT
 * getdata DEFAULT SF-DEFAULT
 * getmail DEFAULT http://pyropus.ca/software/getmail/old-versions/
 * gettext DEFAULT GNU-DEFAULT
 * geronimo-jaspic-spec >([^/]+)/< http://repo1.maven.org/maven2/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/
 * geronimo-jms >geronimo-jms_1.1_spec-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * geronimo-jpa >geronimo-jpa_3.0_spec-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * geronimo-jta >geronimo-jta_1.1_spec-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * geronimo-parent-poms >specs-parent-([^/]+)/< http://svn.apache.org/repos/asf/geronimo/specs/tags/
 * gforth DEFAULT GNU-DEFAULT
 * gftp DEFAULT http://gftp.seul.org/
 * ghc GHC (.*) Released! http://haskell.org/ghc/
 * ghc-* HACKAGE-DEFAULT HACKAGE-DEFAULT
 * ghostscript DEFAULT http://downloads.ghostscript.com/public/
 * giflib DEFAULT SF-DEFAULT
 * gifsicle gifsicle-(.*?).tar.gz http://www.lcdf.org/gifsicle/
 * giggle DEFAULT GNOME-DEFAULT
 * gimp DEFAULT ftp://ftp.gimp.org/pub/gimp/stable/
 * gimp-help DEFAULT ftp://ftp.gimp.org/pub/gimp/help/
 * gimp-separate+ DEFAULT:separate+ http://sourceforge.jp/projects/separate-plus/releases/?package_id=8879
 * git-annex HACKAGE-DEFAULT HACKAGE-DEFAULT
 * git-cola >v([0-9.]*)< https://github.com/git-cola/git-cola/releases
 * git-extras ([0-9.]*?)\.tar.* https://github.com/visionmedia/git-extras/tags
 * gitifyhg DEFAULT PYPI-DEFAULT
 * gkrellm DEFAULT http://www.gkrellm.net/
 * gkrellm-freq DEFAULT:gkrellm-gkfreq SF-DEFAULT:gkrellm-gkfreq
 * gkrellm-top DEFAULT:gkrelltop SF-DEFAULT:gkrelltop
 * glade DEFAULT GNOME-DEFAULT
 * glade3 DEFAULT GNOME-DEFAULT
 * glances /v(.+?)\.zip https://github.com/nicolargo/glances/tags
 * glassfish-jsp >javax.servlet.jsp-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
 * glassfish-jsp-api >javax.servlet.jsp-api-([^/]+)/< https://svn.java.net/svn/jsp~svn/tags/
 * gle \bgle-graphics-(.*?)f-src\.tar SF-DEFAULT:glx
 * glfw DEFAULT SF-DEFAULT
 * glm DEFAULT SF-DEFAULT:ogl-math
 * glogg DEFAULT http://glogg.bonnefon.org/files/
 * glpk glpk-([0-9]+\..+?).tar.gz GNU-DEFAULT
 * gmediaserver gmediaserver-(.*?).tar.gz http://download.savannah.gnu.org/releases/gmediaserver/
 * gmp DEFAULT http://gmplib.org/
 * gmpy DEFAULT GOOGLE-DEFAULT
 * gnash DIR-LISTING-DEFAULT GNU-DEFAULT
 * gnome-gmail DEFAULT SF-DEFAULT
 * gnome-icon-theme DEFAULT GNOME-DEFAULT
 * gnome-logs DEFAULT GNOME-DEFAULT
 * gnome-password-generator DEFAULT SF-DEFAULT:gnome-password
 * gnome-shell-extensions DEFAULT GNOME-DEFAULT
 * gnome-sound-recorder DEFAULT GNOME-DEFAULT
 * gnome-subtitles DEFAULT SF-DEFAULT
 * gnome-tweak-tool DEFAULT GNOME-DEFAULT
 * gnomeradio DEFAULT LP-DEFAULT
 * gnote DEFAULT GNOME-DEFAULT
 * gnotime DEFAULT SF-DEFAULT:gttr
 * gnu-efi DEFAULT SF-DEFAULT
 * gnu-getopt java-getopt-([0-9.]*?).tar.gz http://www.urbanophile.com/arenn/hacking/download.html
 * gnucap DEFAULT GNU-DEFAULT
 * gnucash DEFAULT SF-DEFAULT
 * gnuchess DEFAULT GNU-DEFAULT:chess
 * gnu-smalltalk DEFAULT:smalltalk GNU-DEFAULT:smalltalk
 * gnubik DEFAULT GNU-DEFAULT
 * gnugo DEFAULT GNU-DEFAULT
 * gnujump DEFAULT GNU-DEFAULT
 * gnumed gnumed-client\.(.*?)\.tgz http://www.gnumed.de/downloads/client/*/
 * gnumed-server gnumed-server\.(.*?)\.tgz http://www.gnumed.de/downloads/server/*/
 * gnumeric DEFAULT GNOME-DEFAULT
 * gnupg gnupg-(1.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnupg2 gnupg-(2.*?)\.tar\. ftp://ftp.gnupg.org/gcrypt/gnupg/
 * gnuplot DEFAULT SF-DEFAULT
 * gnuradio DEFAULT http://gnuradio.org/releases/gnuradio/
 * gnurobots DEFAULT GNU-DEFAULT
 * gnusim8085 gnusim8085-([0-9.]*).tar.gz http://gnusim8085.org/downloads.php
 * gnustep-make DEFAULT ftp://ftp.gnustep.org/pub/gnustep/core/
 * gnutls DEFAULT ftp://ftp.gnutls.org/gcrypt/gnutls/v*/
 * goaccess goaccess-([0-9.]*?).tar.gz SF-DEFAULT
 * gobject-introspection DEFAULT GNOME-DEFAULT
 * gocl ([0-9.]*?)\.tar.* https://github.com/elima/gocl/tags
 * gocr DEFAULT http://www-e.uni-magdeburg.de/jschulen/ocr/download.html
 * goffice DEFAULT GNOME-DEFAULT
 * golang go(\d+\.\d+.\d+)\.src\.tar\.gz https://code.google.com/p/go/downloads/list
 * gold DEFAULT http://www.clusterresources.com/downloads/gold/
 * gooddata-cl /([\d+\.]+)\.tar\.gz https://github.com/gooddata/gooddata-cl/tags
 * googlecl DEFAULT GOOGLE-DEFAULT
 * google-guice (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/sonatype/sisu/sisu-guice/
 * google-gson google-gson-([0-9.]*?)-release\.zip GOOGLE-DEFAULT
 * gource [^-]gource-([0-9.]+)\.tar GOOGLE-DEFAULT
 * gourmet GITHUB-TAGS GITHUB-TAGS:thinkle/gourmet
 * gparted DEFAULT SF-DEFAULT
 * gpaste gpaste-([0-9.]*?).tar.xz https://github.com/Keruspe/GPaste/downloads
 * gperf DEFAULT GNU-DEFAULT
 * gperftools DEFAULT GOOGLE-DEFAULT
 * gpgme DEFAULT ftp://ftp.gnupg.org/gcrypt/gpgme/
 * gpick DEFAULT GOOGLE-DEFAULT
 * gplcver gplcver-(.*?).tar.bz2 http://sourceforge.net/projects/gplcver/
 * gpm DEFAULT http://www.nico.schottelius.org/software/gpm/archives/
 * gpm gpm-(1\.20\..*?)\.tar\.gz http://www.nico.schottelius.org/software/gpm/archives/
 * gpodder DEFAULT http://gpodder.org/src/
 * gpredict DEFAULT SF-DEFAULT
 * gprolog DEFAULT GNU-DEFAULT
 * gpsbabel gpsbabel-([0-9.]+)\.tar\.gz http://www.gpsbabel.org/download.html
 * gpscorrelate /tag/([0-9.]*) https://github.com/freefoote/gpscorrelate/releases
 * GraphicsMagick DEFAULT SF-DEFAULT:graphicsmagick
 * graphviz DEFAULT http://www.graphviz.org/pub/graphviz/stable/SOURCES/
 * greybird GITHUB-TAGS GITHUB-TAGS:shimmerproject/Greybird
 * grep DEFAULT GNU-DEFAULT
 * grib_api DEFAULT http://software.ecmwf.int/wiki/display/GRIB/Releases
 * groff DEFAULT GNU-DEFAULT
 * gromacs DEFAULT ftp://ftp.gromacs.org/pub/gromacs/
 * groonga DEFAULT http://packages.groonga.org/source/groonga/
 * groovy groovy-src-([0-9].[0-9].[0-9]).zip http://groovy.codehaus.org/Download
 * grub2 DEFAULT:grub GNU-DEFAULT:grub
 * grub2 DEFAULT:grub http://alpha.gnu.org/gnu/grub/
 * gscan2pdf DEFAULT SF-DEFAULT
 * gspiceui gspiceui-(.*?).tar.gz http://sourceforge.net/projects/gspiceui/
 * gssdp DEFAULT GNOME-DEFAULT
 * gstreamer gstreamer-(0\.10\..*?)\.tar\.bz2 http://gstreamer.freedesktop.org/src/gstreamer/
 * gstreamer1 DEFAULT:gstreamer http://gstreamer.freedesktop.org/src/gstreamer/
 * gstreamer-rtsp DEFAULT:gst-rtsp http://gstreamer.freedesktop.org/src/gst-rtsp/
 * gstreamer1-vaapi DEFAULT:gstreamer-vaapi http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/
 * gsl DEFAULT GNU-DEFAULT
 * gtatool DEFAULT http://download.savannah.gnu.org/releases/gta/
 * gtkhash DEFAULT SF-DEFAULT
 * gthumb DEFAULT GNOME-DEFAULT
 * gtk-murrine-engine DEFAULT:murrine GNOME-DEFAULT:murrine
 * gtk-unico-engine DEFAULT:unico LP-DEFAULT:unico
 * gtk2hs-buildtools HACKAGE-DEFAULT HACKAGE-DEFAULT
 * gtranslator DEFAULT GNOME-DEFAULT
 * gtypist DEFAULT GNU-DEFAULT
 * gucharmap DEFAULT GNOME-DEFAULT
 * guile DEFAULT GNU-DEFAULT
 * guilt DEFAULT http://guilt.31bits.net/src/
 * guitone DEFAULT https://guitone.thomaskeller.biz/g/download
 * gupnp DEFAULT GNOME-DEFAULT
 * gupnp-av DEFAULT GNOME-DEFAULT
 * gupnp-dlna DEFAULT GNOME-DEFAULT
 * gupnp-tools DEFAULT GNOME-DEFAULT
 * gutenprint Gutenprint (.*?) is released http://gimp-print.sourceforge.net/
 * gv DEFAULT GNU-DEFAULT
 * gwsmhg DEFAULT SF-DEFAULT
 * gxmessage DEFAULT GNU-DEFAULT
 * gyachi DEFAULT SF-DEFAULT
 * gzip DEFAULT GNU-DEFAULT

H

 * haddock HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hamlib DEFAULT SF-DEFAULT
 * hamcrest DEFAULT GOOGLE-DEFAULT
 * hardening-check DEFAULT:hardening-wrapper DEBIAN-DEFAULT:hardening-wrapper
 * hawtjni DEFAULT https://github.com/fusesource/hawtjni/tags
 * hanazono-fonts DEFAULT:hanazono http://sourceforge.jp/projects/hanazono-font/releases/
 * haproxy DEFAULT http://haproxy.1wt.eu/download/1.4/src/
 * harfbuzz DEFAULT http://www.freedesktop.org/software/harfbuzz/release/
 * haskell-platform DEFAULT http://www.haskell.org/platform/linux.html
 * hawaii-widget-styles /v([\d+\.]+)\.tar\.gz https://github.com/hawaii-desktop/widget-styles/tags
 * hct hct-(.*?).tar.gz http://sourceforge.net/projects/hct/files/  
 * hdf5 DEFAULT http://www.hdfgroup.org/ftp/HDF5/current/src/
 * hdparm DEFAULT SF-DEFAULT
 * hdapsd DEFAULT SF-DEFAULT:hdaps
 * hedgewars hedgewars-src-(.*?).tar.bz2 http://download.gna.org/hedgewars/
 * help2man DEFAULT GNU-DEFAULT
 * herbstluftwm DEFAULT http://herbstluftwm.org/tarballs/
 * hercules DEFAULT http://www.hercules-390.eu/
 * hercstudio herculesstudio-(.*?)-src\.tar\.gz http://www.jacobdekel.com/hercstudio/
 * hexchat DEFAULT http://dl.hexchat.net/hexchat/
 * hg-git DEFAULT PYPI-DEFAULT
 * hgview DEFAULT http://download.logilab.org/pub/hgview/
 * hicolor-icon-theme DEFAULT http://icon-theme.freedesktop.org/releases/
 * hiredis GITHUB-TAGS GITHUB-TAGS:redis/hiredis
 * hledger HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hlint HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hoard Hoard-(.*?)-source\.tar\.gz http://www.hoard.org/download-hoard/
 * homebank DEFAULT http://homebank.free.fr/public/
 * hop DEFAULT ftp://ftp-sop.inria.fr/indes/fp/Hop
 * horde DEFAULT ftp://ftp.horde.org/pub/horde/
 * hostapd DEFAULT http://w1.fi/releases/
 * hping3 DEFAULT http://www.hping.org/download.php
 * hplip DEFAULT SF-DEFAULT
 * hscolour HACKAGE-DEFAULT HACKAGE-DEFAULT
 * hsqldb hsqldb-([0-9.]*?).zip SF-DEFAULT
 * html-xml-utils DEFAULT http://www.w3.org/Tools/HTML-XML-utils/
 * htmlcleaner DEFAULT SF-DEFAULT
 * htop DEFAULT SF-DEFAULT
 * httpcomponents-core DEFAULT http://www.apache.org/dist/httpcomponents/httpcore/source/
 * httpcomponents-client DEFAULT http://www.apache.org/dist/httpcomponents/httpclient/source/
 * httpd DEFAULT http://archive.apache.org/dist/httpd/
 * httperf DEFAULT GOOGLE-DEFAULT
 * httpie DEFAULT PYPI-DEFAULT
 * httptunnel DEFAULT GNU-DEFAULT
 * httrack httrack-(.*?).tar.gz http://www.httrack.com/page/2/en/index.html
 * hugin DEFAULT SF-DEFAULT
 * humanity-icon-theme DEFAULT:humanity LP-DEFAULT:humanity
 * hunspell DEFAULT SF-DEFAULT
 * hxtools DEFAULT http://jftp.inai.de/hxtools/
 * hydra DEFAULT http://www.thc.org/thc-hydra/
 * hyena DEFAULT GNOME-DEFAULT
 * hyperestraier DEFAULT http://fallabs.com/hyperestraier/

I

 * i3 DEFAULT http://i3wm.org/downloads/
 * i3lock DEFAULT http://i3wm.org/i3lock/
 * i3status DEFAULT http://i3wm.org/i3status/
 * ibus-handwrite DEFAULT GOOGLE-DEFAULT
 * ibus-hangul DEFAULT GOOGLE-DEFAULT:ibus
 * ibus-libpinyin DEFAULT SF-DEFAULT:libpinyin
 * ibus-m17n DEFAULT GOOGLE-DEFAULT:ibus
 * ibus-pinyin DEFAULT GOOGLE-DEFAULT:ibus
 * ibus-rime DEFAULT GOOGLE-DEFAULT:rimeime
 * ibus-unikey DEFAULT GOOGLE-DEFAULT
 * ibus-xkbc DEFAULT https://github.com/sun-im/ibus-xkbc/downloads
 * icecream DEFAULT:icecc http://ftp.suse.com/pub/projects/icecream/
 * icewm DEFAULT SF-DEFAULT
 * icon-naming-utils DEFAULT http://tango.freedesktop.org/releases/
 * icoutils DEFAULT http://download.savannah.gnu.org/releases/icoutils/
 * id3v2 DEFAULT SF-DEFAULT
 * idjc DEFAULT SF-DEFAULT
 * idris HACKAGE-DEFAULT HACKAGE-DEFAULT
 * idzebra DEFAULT http://ftp.indexdata.dk/pub/zebra/
 * iec16022 DEFAULT http://www.datenfreihafen.org/~stefan/iec16022/
 * iftop DEFAULT http://www.ex-parrot.com/pdw/iftop/download/
 * ignuit DEFAULT http://homepages.ihug.co.nz/~trmusson/stuff/
 * ikarus DEFAULT http://ikarus-scheme.org/
 * ike \bike-(.*?)-release\.t https://www.shrew.net/download/ike
 * ikiwiki DEFAULT DEBIAN-DEFAULT
 * ImageMagick ImageMagick-([0-9]\.[0-9]\.[0-9]-.*?[0-9]).tar.bz2 ftp://ftp.imagemagick.org/pub/ImageMagick/
 * imake DEFAULT http://xorg.freedesktop.org/archive/individual/util/
 * imp DEFAULT:imp-h3 ftp://ftp.horde.org/pub/imp/
 * impressive DEFAULT:Impressive SF-DEFAULT
 * imvirt DEFAULT SF-DEFAULT
 * indent DEFAULT GNU-DEFAULT
 * infiniband-diags DEFAULT http://www.openfabrics.org/downloads/management/
 * iniparser iniparser-([0-9.]*)\.tar\.gz http://ndevilla.free.fr/iniparser/
 * inkscape DEFAULT http://www.inkscape.org/en/download/source/
 * innotop DEFAULT GOOGLE-DEFAULT
 * InsightToolkit DEFAULT http://sourceforge.net/api/file/index/project-name/itk/mtime/desc/limit/20/rss
 * intltool DEFAULT LP-DEFAULT
 * iotop DEFAULT http://guichaz.free.fr/iotop/
 * iperf DEFAULT SF-DEFAULT
 * iperf3 DEFAULT:iperf http://stats.es.net/software/
 * ipmitool DEFAULT SF-DEFAULT
 * ipmiutil DEFAULT SF-DEFAULT
 * iproute DEFAULT:iproute2 http://kernel.org/pub/linux/utils/net/iproute2/
 * ipset DEFAULT http://ftp.netfilter.org/pub/ipset/
 * iptables DEFAULT http://ftp.netfilter.org/pub/iptables/
 * iputils iputils-s(.*?)\.tar\.bz2 SF-DEFAULT
 * ipv6calc DEFAULT ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc
 * ipvsadm DEFAULT http://www.kernel.org/pub/linux/utils/kernel/ipvsadm/
 * ipython DEFAULT https://github.com/ipython/ipython/downloads
 * ircd-ratbox DEFAULT http://www.ratbox.org/download/
 * ircp-tray DEFAULT LP-DEFAULT
 * irqbalance ve/v(.*).tar.gz http://github.com/Irqbalance/irqbalance/releases
 * irrlicht DEFAULT SF-DEFAULT
 * irssi DEFAULT http://irssi.org/files
 * isic DEFAULT SF-DEFAULT
 * iso-codes DEFAULT http://pkg-isocodes.alioth.debian.org/downloads/
 * isomaster isomaster-([0-9.]*?).tar.bz2 http://littlesvr.ca/isomaster/releases/
 * isync DEFAULT SF-DEFAULT
 * iverilog v(\d_\d_\d)\.tar.gz https://github.com/steveicarus/iverilog/tags
 * iw DEFAULT http://kernel.org/pub/software/network/iw/

J

 * jacoco DEFAULT http://www.eclemma.org/jacoco/
 * jakarta-oro DEFAULT http://archive.apache.org/dist/jakarta/oro/source/
 * jakarta-taglibs-standard DEFAULT http://archive.apache.org/dist/jakarta/taglibs/standard/source/
 * jansi jansi-([0-9.]*?).jar http://jansi.fusesource.org/download.html
 * jansson DEFAULT http://www.digip.org/jansson/releases/
 * jarjar DEFAULT:jarjar-src GOOGLE-DEFAULT
 * jasmine NPM-DEFAULT NPM-DEFAULT
 * jasmine-node NPM-DEFAULT NPM-DEFAULT
 * jasper DEFAULT http://www.ece.uvic.ca/~frodo/jasper/
 * javacc javacc-([0-9.]*?).tar.gz http://java.net/projects/javacc/downloads/download/
 * javacc-maven-plugin javacc-maven-plugin-([0-9.]*?)/ http://svn.codehaus.org/mojo/tags/
 * java_cup Source.code.\(CUP.(.*)\) http://www.cs.princeton.edu/~appel/modern/java/CUP/
 * java-gnome DEFAULT GNOME-DEFAULT
 * java-service-wrapper yaja-wrapper-(.*?)-dist https://bitbucket.org/ivertex/yaja-wrapper/downloads
 * javaewah DEFAULT https://github.com/lemire/javaewah/releases
 * javamail JavaMail.API.([^<]+).Release http://www.oracle.com/technetwork/java/javamail/index.html
 * javasqlite DEFAULT http://www.ch-werner.de/javasqlite/overview-summary.html
 * jaxen jaxen-(\d+\.\d+[\.\d+]*)-src.tar.gz http://dist.codehaus.org/jaxen/distributions/
 * jbig2dec DEFAULT SF-DEFAULT
 * jbigkit DEFAULT http://www.cl.cam.ac.uk/~mgk25/jbigkit/
 * jblas jblas-(.*?)\.tar\.gz https://github.com/mikiobraun/jblas/releases
 * jcifs DEFAULT http://jcifs.samba.org/src/
 * jdependency DEFAULT https://github.com/tcurdt/jdependency/tags
 * jdns DEFAULT http://delta.affinix.com/jdns/
 * jdom jdom-([0-9.]*?)\.tar.gz https://github.com/hunterhacker/jdom/tags
 * jdepend ([0-9.]*?)\.zip https://github.com/clarkware/jdepend/tags
 * jdf-stacks-client (\d\.\d\.\d).*.tar.gz https://github.com/jboss-jdf/jdf-stacks-client/releases
 * jed jed-(.*?)\.tar\.gz ftp://space.mit.edu/pub/davis/jed/*/
 * jemalloc DEFAULT http://www.canonware.com/download/jemalloc/
 * jenkins-crypto-util crypto-util-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-crypto-util/tags
 * jenkins-extras-memory-monitor memory-monitor-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/extras-memory-monitor/tags
 * jenkins-remoting remoting-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/remoting/tags
 * jenkins-task-reactor task-reactor-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-task-reactor/tags
 * jenkins-version-number version-number-(\d+[\d\.]*).tar.gz https://github.com/jenkinsci/lib-version-number/tags
 * jetty (9\.\d+\.\d+\.v\d+) http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-project/
 * jettison jettison-([0-9.]*?)-sources.jar http://jettison.codehaus.org/Download
 * jflex jflex-([0-9.]*?)\.zip http://jflex.de/download.html
 * jfsutils DEFAULT http://jfs.sf.net/source.html
 * jgoodies-animation jgoodies-animation-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-common jgoodies-common-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-forms jgoodies-forms-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgoodies-looks jgoodies-looks-([0-9_]*)\.zip http://www.jgoodies.com/downloads/libraries/
 * jgraphx jgraphx-(.*?).zip http://downloads.jgraph.com/downloads/jgraphx/archive/
 * jhdf5 DEFAULT:hdf-java http://www.hdfgroup.org/ftp/HDF5/hdf-java/src/
 * jhighlight >release-(.*)/< http://svn.rifers.org/jhighlight/tags/
 * jibx jibx-([0-9].[0-9].[0-9]) http://sourceforge.net/projects/jibx/files/jibx/
 * jimtcl e/(.*?)\.tar\.gz http://github.com/msteveb/jimtcl/releases
 * jing-trang DEFAULT:jing GOOGLE-DEFAULT
 * jlatexmath jlatexmath-src-all-(.*).zip http://forge.scilab.org/index.php/p/jlatexmath/downloads/
 * jline DEFAULT SF-DEFAULT
 * jmol Jmol-([^-]+?\.[02468]+\.[^-]+?)-full.tar.gz SF-DEFAULT
 * jna ([0-9.]*?).tar.gz https://github.com/twall/jna/tags
 * joda-convert v([0-9.]*?).tar.gz https://github.com/JodaOrg/joda-convert/tags
 * joda-time DEFAULT SF-DEFAULT
 * joe DEFAULT SF-DEFAULT:joe-editor
 * john DEFAULT http://www.openwall.com/john/
 * joni ([0-9]+\.[0-9\.]+)/ http://svn.codehaus.org/jruby/joni/tags/
 * jpathwatch jpathwatch-([0-9\-]*?).zip SF-DEFAULT
 * jpegoptim DEFAULT http://www.kokkonen.net/tjko/src/
 * jpilot DEFAULT http://www.jpilot.org/download.html
 * jsch DEFAULT http://www.jcraft.com/jsch/
 * jsl jsl-([\d+\.]+)-src\.tar\.gz http://javascriptlint.com/download.htm
 * json-c DEFAULT https://github.com/json-c/json-c/downloads
 * json-parser archive/v(.*?)\.tar.gz https://github.com/udp/json-parser/releases 
 * jsoup jsoup-([0-9.]*)\.jar http://jsoup.org/download
 * junit r([0-9.]+).tar.gz https://github.com/junit-team/junit/tags
 * jvyamlb DEFAULT GOOGLE-DEFAULT
 * jwhois DEFAULT GNU-DEFAULT
 * jwm DEFAULT http://joewing.net/projects/jwm/releases/
 * jython jython(?:_installer)-([0-9.]+)\.jar SF-DEFAULT
 * jzlib DEFAULT http://www.jcraft.com/jzlib/

K

 * k3b DEFAULT SF-DEFAULT
 * kakasi DEFAULT http://kakasi.namazu.org/stable/
 * kannel DEFAULT:gateway http://redmine.kannel.org/projects/kannel/files
 * kasumi DEFAULT http://sourceforge.jp/projects/kasumi/releases/
 * kawa DEFAULT GNU-DEFAULT
 * kbd DEFAULT http://ftp.altlinux.org/pub/people/legion/kbd/
 * kBuild DEFAULT ftp://ftp.netlabs.org/pub/kbuild
 * kbibtex DEFAULT http://home.gna.org/kbibtex/download.html
 * kchmviewer DEFAULT SF-DEFAULT
 * kcm-gtk DEFAULT LP-DEFAULT
 * kdbg DEFAULT SF-DEFAULT
 * kde-partitionmanager DEFAULT:partitionmanager SF-DEFAULT:partitionman
 * kdesrc-build >([.0-9]+?)/< http://download.kde.org/stable/kdesrc-build/
 * kdesvn DEFAULT http://kdesvn.alwins-world.de/downloads/
 * kdevelop \s(\d+\.[\d.]+\d+) ftp://ftp.kde.org/pub/kde/stable/kdevelop/
 * kdiff3 DEFAULT SF-DEFAULT
 * keepalived DEFAULT http://www.keepalived.org/software/
 * keybinder DEFAULT http://kaizer.se/publicfiles/keybinder/
 * keychain DEFAULT http://www.funtoo.org/wiki/Keychain
 * keytool-maven-plugin keytool-maven-plugin-([0-9.]*?)\/ http://svn.codehaus.org/mojo/tags/
 * kid3 DEFAULT SF-DEFAULT
 * kile Latest available stable version for KDE4: <a href="download.php">(.*?)</a>\. http://kile.sourceforge.net/
 * kio_gopher stable/extragear/kio-gopher-([0-9.]*)\.tar\.bz2 http://userbase.kde.org/Kio_gopher
 * kmetronome DEFAULT SF-DEFAULT
 * kmid2 DEFAULT:kmid SF-DEFAULT
 * kmymoney DEFAULT SF-DEFAULT:kmymoney2
 * kohsuke-pom pom-(\d+).tar.gz https://github.com/kohsuke/pom/tags
 * kmod DEFAULT http://kernel.org/pub/linux/utils/kernel/kmod/
 * komparator DEFAULT SF-DEFAULT
 * koules koules(.*?)-src.tar.gz http://www.ucw.cz/~hubicka/koules/English/distribution.html
 * krename the last stable release is: <.*?> (.*?) </a> http://www.krename.net/
 * ksh ast-ksh\.([0-9]*\-[0-9]*-[0-9]*)\.tgz http://www2.research.att.com/~astopen/cgi-bin/download.cgi?action=list&name=ast-ksh
 * kshutdown kshutdown-source-(.*?).zip SF-DEFAULT
 * ksshaskpass (?i)\(\s*ksshaskpass\s+([^)]+)\s*\) http://www.kde-apps.org/content/show.php?content=50971
 * ktechlab DEFAULT SF-DEFAULT
 * ktikz ktikz[_-](.*?)\.tar\.gz http://www.hackenberger.at/ktikz/
 * ktorrent DEFAULT http://ktorrent.pwsp.net/?q=downloads
 * kwooty DEFAULT SF-DEFAULT
 * kyotocabinet DEFAULT http://fallabs.com/kyotocabinet/pkg/
 * kxml DEFAULT:kxml2 SF-DEFAULT

L

 * LabPlot DEFAULT:labplot SF-DEFAULT:labplot
 * ladvd DEFAULT GOOGLE-DEFAULT
 * lapack DEFAULT http://www.netlib.org/lapack/
 * latex2rtf DEFAULT SF-DEFAULT
 * latex-mk DEFAULT SF-DEFAULT
 * lazarus /Lazarus ([0-9.-]*)/ http://sourceforge.net/projects/lazarus/files/Lazarus%20Zip%20_%20GZip/
 * lbrickbuster2 DEFAULT:lbreakout2 http://sourceforge.net/api/file/index/project-name/lgames/mtime/desc/limit/50/rss
 * lbzip2 DEFAULT http://lbzip2.org/download
 * lcms2 DEFAULT SF-DEFAULT:lcms
 * ldtp DEFAULT http://ldtp.freedesktop.org/wiki/Download
 * leafpad DEFAULT http://download.savannah.gnu.org/releases/leafpad/
 * ledger GITHUB-TAGS GITHUB-TAGS:ledger/ledger
 * leksah HACKAGE-DEFAULT HACKAGE-DEFAULT
 * leksah-server HACKAGE-DEFAULT HACKAGE-DEFAULT
 * lensfun DEFAULT http://developer.berlios.de/project/showfiles.php?group_id=9034
 * less DEFAULT http://www.greenwoodsoftware.com/less/download.html
 * libpam4j DEFAULT https://github.com/kohsuke/libpam4j/tags
 * localizer localizer-parent-([\d\.]+).tar.gz https://github.com/kohsuke/localizer/tags
 * lftp lftp-([0-9.]*?).tar.xz http://lftp.yar.ru/get.html
 * libabw libabw-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libaio DEFAULT http://git.fedorahosted.org/cgit/libaio.git/
 * libarchive DEFAULT http://www.libarchive.org/downloads/
 * libassuan DEFAULT ftp://ftp.gnupg.org/gcrypt/libassuan/
 * libass DEFAULT GOOGLE-DEFAULT
 * libavc1394 DEFAULT SF-DEFAULT
 * libgsasl DEFAULT GNU-DEFAULT:gsasl
 * libgta DEFAULT http://download.savannah.gnu.org/releases/gta/
 * libbluray DEFAULT http://www.videolan.org/developers/libbluray.html
 * libbs2b DEFAULT SF-DEFAULT:bs2b
 * libbsd DEFAULT http://libbsd.freedesktop.org/releases/
 * libburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libcap DEFAULT http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/
 * libcap-ng DEFAULT http://people.redhat.com/sgrubb/libcap-ng/
 * libcddb DEFAULT SF-DEFAULT
 * libcdio DEFAULT GNU-DEFAULT
 * libcdio-paranoia DEFAULT GNU-DEFAULT:libcdio
 * libcdr libcdr-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libcgroup DEFAULT SF-DEFAULT:libcg
 * libchamplain DEFAULT GNOME-DEFAULT
 * libchewing GITHUB-TAGS GITHUB-TAGS:chewing/libchewing
 * libclaw DEFAULT SF-DEFAULT
 * libcmis DEFAULT SF-DEFAULT
 * libconfig DEFAULT http://www.hyperrealm.com/libconfig/
 * libconfuse DEFAULT:confuse http://download.savannah.gnu.org/releases/confuse/
 * libcss libcss-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libcss/
 * libcue DEFAULT SF-DEFAULT
 * libcutl DEFAULT:libcutl http://codesynthesis.com/download/libcutl/*/
 * libdb DEFAULT:db http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html
 * libdb4 DB (4[0-9.]*).tar.gz< http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index-082944.html
 * libdbi DEFAULT SF-DEFAULT
 * libdbi-drivers DEFAULT SF-DEFAULT
 * libdc1394 DEFAULT SF-DEFAULT
 * libdiscid DEFAULT http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/
 * libdivecomputer DEFAULT http://www.libdivecomputer.org/releases/
 * libdmx DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libdrm DEFAULT http://dri.freedesktop.org/libdrm/
 * libdwarf libdwarf-([0-9]+)\.tar\.gz http://www.prevanders.net/dwarf.html
 * libe-book DEFAULT SF-DEFAULT:libebook
 * libedit libedit-[0-9]+-([0-9]+\..+?).tar.gz http://www.thrysoee.dk/editline/
 * libEMF DEFAULT SF-DEFAULT:libemf
 * libetonyek libetonyek-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libetpan DEFAULT SF-DEFAULT
 * libev DEFAULT http://dist.schmorp.de/libev/
 * libevent libevent-([^-]*?)(?:-stable)?.tar SF-DEFAULT:levent
 * libexif DEFAULT SF-DEFAULT
 * libextractor DEFAULT GNU-DEFAULT
 * libexttextcat libexttextcat-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/libexttextcat
 * libfap DEFAULT http://pakettiradio.net/downloads/libfap/*/
 * libffi DEFAULT ftp://sourceware.org/pub/libffi/
 * libflatarray DEFAULT http://www.libgeodecomp.org/archive/
 * libfontenc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libfplll DEFAULT http://perso.ens-lyon.fr/damien.stehle/fplll/index.html
 * libfprint DEFAULT http://people.freedesktop.org/~hadess/
 * libfreehand libfreehand-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libFS DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libgadu DEFAULT http://libgadu.net/
 * libgaiagraphics DEFAULT http://www.gaia-gis.it/gaia-sins/gaiagraphics-sources/
 * libgcal DEFAULT GOOGLE-DEFAULT
 * libgcroots DEFAULT GOOGLE-DEFAULT:sigscheme
 * libgcrypt DEFAULT ftp://ftp.gnupg.org/gcrypt/libgcrypt/
 * libgdl DEFAULT:gdl GNOME-DEFAULT:gdl
 * libgee DEFAULT GNOME-DEFAULT
 * libgexiv2 DEFAULT http://yorba.org/download/gexiv2/*/
 * libgpg-error DEFAULT ftp://ftp.gnupg.org/gcrypt/libgpg-error/
 * libgxps DEFAULT GNOME-DEFAULT
 * libhangul DEFAULT GOOGLE-DEFAULT
 * libharu Latest stable release: <a href="https://github.com/libharu/libharu/archive/[^"]*">([^<]*)</a> http://libharu.org/
 * libhubbub libhubbub-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/hubbub/
 * libHX DEFAULT SF-DEFAULT:libhx
 * libibmad DEFAULT http://www.openfabrics.org/downloads/management/
 * libibumad DEFAULT http://www.openfabrics.org/downloads/management/
 * libical DEFAULT SF-DEFAULT:freeassociation
 * libICE DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libidn DEFAULT GNU-DEFAULT
 * libiec61883 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
 * libinfinity DEFAULT http://releases.0x539.de/libinfinity/
 * libint DEFAULT SF-DEFAULT
 * libisds DEFAULT http://xpisar.wz.cz/libisds/dist/
 * libisoburn DEFAULT http://libburnia-project.org/wiki/Releases
 * libisofs DEFAULT http://libburnia-project.org/wiki/Releases
 * libjpeg-turbo DEFAULT SF-DEFAULT
 * libksba DEFAULT ftp://ftp.gnupg.org/gcrypt/libksba/
 * liblangtag DEFAULT https://bitbucket.org/tagoh/liblangtag/downloads
 * libldb DEFAULT:ldb http://www.samba.org/ftp/pub/ldb/
 * liblinebreak DEFAULT SF-DEFAULT:vimgadgets
 * libltc ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/x42/libltc/releases
 * libmatheval DEFAULT GNU-DEFAULT
 * libmatroska libmatroska-([.0-9]*?).tar.bz2 http://dl.matroska.org/downloads/libmatroska/
 * libmicrohttpd DEFAULT GNU-DEFAULT
 * libmimedir DEFAULT SF-DEFAULT
 * libmirage DEFAULT http://sourceforge.net/projects/cdemu/files/libmirage/
 * libmng DEFAULT SF-DEFAULT
 * libmnl DEFAULT http://ftp.netfilter.org/pub/libmnl/
 * libmodelfile DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
 * libmodplug DEFAULT SF-DEFAULT:modplug-xmms
 * libmpc DEFAULT:mpc http://www.multiprecision.org/index.php?prog=mpc&page=download
 * libmspub libmspub-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libmusicbrainz3 DEFAULT:libmusicbrainz http://musicbrainz.org/doc/libmusicbrainz
 * libmwaw DEFAULT SF-DEFAULT
 * libnet DEFAULT SF-DEFAULT:libnet-dev
 * libnetfilter_acct DEFAULT http://ftp.netfilter.org/pub/libnetfilter_acct/
 * libnetfilter_conntrack DEFAULT http://ftp.netfilter.org/pub/libnetfilter_conntrack/
 * libnetfilter_cttimeout DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cttimeout/
 * libnetfilter_cthelper DEFAULT http://ftp.netfilter.org/pub/libnetfilter_cthelper/
 * libnetfilter_log DEFAULT http://ftp.netfilter.org/pub/libnetfilter_log/
 * libnetfilter_queue DEFAULT http://ftp.netfilter.org/pub/libnetfilter_queue/
 * libnfc DEFAULT http://bintray.com/nfc-tools/sources/libnfc
 * libnftnl DEFAULT http://ftp.netfilter.org/pub/libnftnl/
 * libnfnetlink DEFAULT http://ftp.netfilter.org/pub/libnfnetlink/
 * libnice DEFAULT http://nice.freedesktop.org/releases/
 * libnl3 DEFAULT:libnl http://www.infradead.org/~tgr/libnl/files/
 * libntlm DEFAULT http://nongnu.org/libntlm/releases/
 * liboauth DEFAULT SF-DEFAULT
 * libodb DEFAULT:libodb http://codesynthesis.com/download/odb/*/
 * libodb-boost DEFAULT:libodb-boost http://codesynthesis.com/download/odb/*/
 * libodb-mysql DEFAULT:libodb-mysql http://codesynthesis.com/download/odb/*/
 * libodb-pgsql DEFAULT:libodb-pgsql http://codesynthesis.com/download/odb/*/
 * libodb-qt DEFAULT:libodb-qt http://codesynthesis.com/download/odb/*/
 * libodb-sqlite DEFAULT:libodb-sqlite http://codesynthesis.com/download/odb/*/
 * libodfgen libodfgen-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
 * liboping DEFAULT http://verplant.org/liboping/files
 * liborcus liborcus_(\d+\.\d+\.\d+)\.tar\.bz2 http://gitorious.org/orcus/pages/Download
 * liborigin DEFAULT SF-DEFAULT
 * libotf DEFAULT http://download.savannah.gnu.org/releases/m17n/
 * libp11 DEFAULT https://github.com/OpenSC/libp11/tags
 * libparserutils libparserutils-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libparserutils/
 * libpcap DEFAULT http://www.tcpdump.org/release/
 * libpciaccess DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libpinyin DEFAULT:libpinyin/libpinyin SF-DEFAULT
 * libpipeline DEFAULT http://download.savannah.gnu.org/releases/libpipeline/
 * libpng DEFAULT http://www.libpng.org/pub/png/libpng.html
 * libpng10 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng10/
 * libpng15 DEFAULT:libpng ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng15/
 * librasterlite DEFAULT http://www.gaia-gis.it/gaia-sins/librasterlite-sources/
 * LibRaw DEFAULT http://www.libraw.org/download
 * libraw1394 DEFAULT http://kernel.org/pub/linux/libs/ieee1394/
 * libreadline-java DEFAULT SF-DEFAULT:java-readline
 * librecad DEFAULT https://github.com/LibreCAD/LibreCAD/releases
 * libreoffice-gallery-vrt-network-equipment VRTnetworkequipment_(\d+\.\d+\.\d+)\.oxt http://www.vrt.com.au/downloads/vrt-network-equipment
 * libreswan DEFAULT http://download.libreswan.org/
 * librime DEFAULT GOOGLE-DEFAULT:rimeime
 * libsamplerate DEFAULT http://www.mega-nerd.com/SRC/download.html
 * libselinux DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * libsemanage DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * libsepol DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * libserf DEFAULT:serf http://serf.googlecode.com/svn/src_releases/
 * libsidplayfp DEFAULT:libsidplayfp SF-DEFAULT:sidplay-residfp
 * libsigsegv DEFAULT GNU-DEFAULT
 * libspatialite DEFAULT http://www.gaia-gis.it/gaia-sins/libspatialite-sources/
 * libspectre DEFAULT http://libspectre.freedesktop.org/releases/
 * libspiro v(.*?)\.tar.gz https://github.com/fontforge/libspiro/
 * libSM DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libsmbios DEFAULT http://linux.dell.com/cgi-bin/cgit.cgi/libsmbios.git/
 * libssh DEFAULT https://red.libssh.org/projects/libssh/files
 * libssh2 DEFAULT http://www.libssh2.org/download/
 * libtaginfo DEFAULT https://bitbucket.org/shuerhaaken/libtaginfo/downloads
 * libtalloc talloc-(.*?)\.tar\.gz http://samba.org/ftp/talloc/
 * libtasn1 DEFAULT GNU-DEFAULT
 * libtdb DEFAULT:tdb http://www.samba.org/ftp/tdb/
 * libtevent DEFAULT:tevent http://www.samba.org/ftp/tevent/
 * libthai DEFAULT http://linux.thai.net/pub/thailinux/software/libthai/
 * libtiff DEFAULT:tiff http://download.osgeo.org/libtiff/
 * libtirpc DEFAULT SF-DEFAULT
 * libtool DEFAULT GNU-DEFAULT
 * libtorrent DEFAULT http://libtorrent.rakshasa.no/downloads/
 * libtsm DEFAULT http://freedesktop.org/software/kmscon/releases/
 * libumberlog DEFAULT https://github.com/deirf/libumberlog/tags
 * libunicap DEFAULT http://unicap-imaging.org/download.htm
 * libuninameslist (0\.*?)\.tar.* https://github.com/fontforge/libuninameslist/releases
 * libunistring DEFAULT GNU-DEFAULT
 * libunwind DEFAULT http://www.nongnu.org/libunwind/download.html
 * libusb DEFAULT:libusb-compat SF-DEFAULT
 * libusbx DEFAULT SF-DEFAULT
 * libutempter libutempter-(.*?)\.tar ftp://ftp.altlinux.org/pub/people/ldv/utempter
 * libva DEFAULT http://cgit.freedesktop.org/libva/
 * libvdpau DEFAULT http://people.freedesktop.org/~aplattner/vdpau/
 * libvncserver DEFAULT:LibVNCServer SF-DEFAULT
 * libvisio libvisio-(\d+\.\d+\.\d+)\.tar\.xz http://dev-www.libreoffice.org/src/
 * libvorbis DEFAULT http://downloads.xiph.org/releases/vorbis/
 * libwapcaplet libwapcaplet-(\d+\.\d+\.\d+)-src\.tar\.gz http://www.netsurf-browser.org/projects/libwapcaplet/
 * libwbxml DEFAULT SF-DEFAULT
 * libwebp DEFAULT GOOGLE-DEFAULT
 * libwfut DEFAULT SF-DEFAULT:worldforge
 * libwpd DEFAULT SF-DEFAULT
 * libwpg DEFAULT SF-DEFAULT
 * libwps DEFAULT SF-DEFAULT
 * libX11 DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXau DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXaw DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxcb DEFAULT http://xcb.freedesktop.org/dist/
 * libXcm DEFAULT SF-DEFAULT:oyranos
 * libXcomposite DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXcursor DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXdamage DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXdmcp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXevie DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXext DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfixes DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXfont DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXft DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXi DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXinerama DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxkbcommon DEFAULT http://xkbcommon.org/download/
 * libxkbfile DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libxklavier DEFAULT GNOME-DEFAULT
 * libxml2 DEFAULT ftp://xmlsoft.org/libxml2/
 * libxmp DEFAULT SF-DEFAULT:xmp
 * libXmu DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXp DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXpm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrandr DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXrender DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXres DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXScrnSaver DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXt DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXtst DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXv DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXvMC DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86dga DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86misc DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libXxf86vm DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * libyaml DEFAULT:yaml http://pyyaml.org/download/libyaml/
 * libykneomgr DEFAULT http://opensource.yubico.com/libykneomgr/releases.html
 * libyubikey DEFAULT GOOGLE-DEFAULT:yubico-c
 * libyui libyui/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui/tags
 * libyui-bindings libyui-bindings/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-bindings/tags
 * libyui-gtk libyui-gtk/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-gtk/tags
 * libyui-ncurses libyui-ncurses/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-ncurses/tags
 * libyui-qt libyui-qt/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-qt/tags
 * libyui-qt-graph libyui-qt-graph/master/([0-9.]*?)\.tar.* https://github.com/libyui/libyui-qt-graph/tags
 * libzdb DEFAULT http://www.tildeslash.com/libzdb/dist/
 * libzen libzen_([0-9.]*?).tar.bz2 SF-DEFAULT:zenlib
 * licq DEFAULT SF-DEFAULT
 * light-themes DEFAULT https://launchpad.net/ubuntu/quantal/+source/light-themes
 * lightdm DEFAULT LP-DEFAULT
 * lightdm-gtk DEFAULT:lightdm-gtk-greeter LP-DEFAULT:lightdm-gtk-greeter
 * lightdm-kde lightdm-kde-([0-9.]+) http://download.kde.org/unstable/lightdm-kde/src/
 * lightning DEFAULT GNU-DEFAULT
 * lighttpd DEFAULT http://www.lighttpd.net/download/
 * linbox DEFAULT http://www.linalg.org/download.html
 * lingot DEFAULT http://download.savannah.gnu.org/releases/lingot/
 * linkchecker DEFAULT http://wummel.github.io/linkchecker/
 * links DEFAULT http://links.twibright.com/download/
 * linpsk DEFAULT SF-DEFAULT
 * linsmith DEFAULT SF-DEFAULT
 * linux-libertine-fonts LinLibertineSRC-(.*?).tgz SF-DEFAULT:linuxlibertine
 * linuxconsoletools DEFAULT SF-DEFAULT:linuxconsole
 * liquibase liquibase-(.*?)-bin\.tar\.gz http://www.liquibase.org/download/index.html
 * lis DEFAULT http://www.ssisc.org/lis/index.en.html
 * llvm llvm-(.*?).src.tar.gz http://www.llvm.org/releases/download.html
 * lm_sensors DEFAULT http://dl.lm-sensors.org/lm-sensors/releases/
 * lmms DEFAULT SF-DEFAULT
 * lnav GITHUB-TAGS GITHUB-TAGS:tstack/lnav
 * log4cplus DEFAULT SF-DEFAULT
 * log4j (1.[0-9.]+)/ http://www.apache.org/dist/logging/log4j
 * loggerhead DEFAULT LP-DEFAULT
 * logserial DEFAULT http://www.ibiblio.org/pub/Linux/system/serial/
 * logstalgia DEFAULT https://github.com/acaudwell/Logstalgia/releases
 * lonote DEFAULT https://bitbucket.org/civalin/lonote/downloads
 * lrmi DEFAULT SF-DEFAULT
 * lrzip DEFAULT http://lrzip.kolivas.org/
 * lsnipes DEFAULT http://www.ugcs.caltech.edu/~boultonj/snipes/
 * lsof DEFAULT ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
 * lsscsi DEFAULT http://sg.danny.cz/scsi/lsscsi.html
 * lsyncd DEFAULT GOOGLE-DEFAULT
 * lua DEFAULT http://www.lua.org/ftp/
 * lua-alt-getopt DEFAULT SF-DEFAULT
 * lua-filesystem DEFAULT:luafilesystem http://luarocks.org/repositories/rocks/
 * lua-ldoc GITHUB-TAGS GITHUB-TAGS:stevedonovan/LDoc
 * lua-lgi GITHUB-TAGS GITHUB-TAGS:pavouk/lgi
 * lua-lpeg DEFAULT:lpeg http://www.inf.puc-rio.br/~roberto/lpeg/
 * lua-moonscript archive/v(.*?)\.zip https://github.com/leafo/moonscript/tags
 * lua-penlight GITHUB-TAGS GITHUB-TAGS:stevedonovan/Penlight
 * lua-rex \brel-([\d+\-]+)\b https://github.com/rrthomas/lrexlib/tags
 * luarocks DEFAULT http://luarocks.org/releases/
 * luckybackup DEFAULT SF-DEFAULT
 * luma DEFAULT SF-DEFAULT
 * lxc DEFAULT SF-DEFAULT
 * lxsplit DEFAULT SF-DEFAULT
 * lynis lynis-(.*)\.tar\.gz http://cisofy.com/downloads/
 * lynx lynx(.*?)/index http://lynx.isc.org/
 * lyx DEFAULT http://www.lyx.org/Download
 * lzip DEFAULT http://download.savannah.gnu.org/releases/lzip/
 * lziprecover DEFAULT http://download.savannah.gnu.org/releases/lzip/
 * lzo DEFAULT http://www.oberhumer.com/opensource/lzo/download/

M

 * m17n-db DEFAULT http://download.savannah.gnu.org/releases/m17n/
 * m17n-lib DEFAULT http://download.savannah.gnu.org/releases/m17n/
 * m4 DEFAULT GNU-DEFAULT
 * maatkit DEFAULT GOOGLE-DEFAULT
 * macchanger DEFAULT GNU-DEFAULT
 * MagicPoint DEFAULT:magicpoint ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/
 * mailman DEFAULT GNU-DEFAULT
 * mailx DEFAULT SF-DEFAULT:heirloom
 * make DEFAULT GNU-DEFAULT
 * makeself release-([0-9.]+) https://github.com/megastep/makeself/releases
 * manchu-fonts DEFAULT:Manchu_Font_2005 SF-DEFAULT:manchufont
 * man-db DEFAULT http://download.savannah.gnu.org/releases-noredirect/man-db/
 * man-pages DEFAULT http://kernel.org/pub/linux/docs/man-pages/
 * man-pages-fr man-pages-fr[^0-9]*([0-9]+\.[0-9]+-[0-9]+) http://alioth.debian.org/projects/perkamon/
 * man-pages-pl DEFAULT:manpages-pl SF-DEFAULT:manpages-pl
 * maradns DEFAULT http://maradns.samiam.org/download.html
 * marked NPM-DEFAULT NPM-DEFAULT
 * mate-desktop DEFAULT http://pub.mate-desktop.org/releases/*/
 * matio /matio/([0-9.]*?)/matio-[0-9.]*.tar.gz SF-DEFAULT:matio
 * maven DEFAULT:apache-maven http://www.apache.org/dist/maven/maven-3/*/source/
 * maven-archiver (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/maven-archiver/
 * maven-artifact-resolver (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/shared/maven-artifact-resolver/
 * maven-dependency-analyzer (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/
 * maven-assembly-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/
 * maven-archetype (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/archetype/maven-archetype/
 * maven-changes-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-changes-plugin/
 * maven-checkstyle-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-checkstyle-plugin/
 * maven-dependency-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/
 * maven-doxia (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/doxia/doxia
 * maven-downloader maven-downloader-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-doxia-sitetools (\d+\.\d+[\.\d+]*) http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/
 * maven-doxia-tools maven-doxia-tools-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-ear-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-ear-plugin/ 
 * maven-eclipse-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-eclipse-plugin/
 * maven-enforcer (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/enforcer/enforcer/
 * maven-gpg-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-gpg-plugin/
 * maven-help-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-help-plugin/
 * maven-file-management file-management-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-idea-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-idea-plugin/
 * maven-indexer (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/indexer/maven-indexer/
 * maven-install-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-install-plugin/
 * maven-invoker-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-invoker-plugin/
 * maven-jar-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-jar-plugin/
 * maven-javadoc-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/
 * maven-jarsigner-plugin maven-jarsigner-plugin-([0-9.]*?)\/ http://svn.apache.org/viewvc/maven/plugins/tags/
 * maven-jxr (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/jxr/jxr/
 * maven-pmd-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-pmd-plugin/
 * maven-plugin-bundle (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/felix/maven-bundle-plugin/
 * maven-verifier (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-verifier/
 * maven-plugin-testing maven-plugin-testing-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/plugin-testing/tags/
 * maven-plugin-tools (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/
 * maven-plugin-build-helper build-helper-maven-plugin-([0-9.]*?.*)\/\" https://svn.codehaus.org/mojo/tags/
 * maven-project-info-reports-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-project-info-reports-plugin/
 * maven-release maven-release-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/release/tags/
 * maven-antrun-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/
 * maven-reporting-exec (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-exec/
 * maven-reporting-api (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-api/
 * maven-reporting-impl (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-impl/
 * maven-resources-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/
 * maven-scm (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/scm/maven-scm/
 * maven-script-interpreter (\d+\.\d+[\.\d+]*) http://central.maven.org/maven2/org/apache/maven/shared/maven-script-interpreter/
 * maven-shade-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-shade-plugin/
 * maven-site-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-site-plugin/
 * maven-shared maven-shared-components-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-shared-jar maven-shared-jar-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-shared-utils (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-utils/
 * maven-shared-incremental (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-incremental/
 * maven-shared-io maven-shared-io-([0-9.]*?)\/ http://svn.apache.org/repos/asf/maven/shared/tags/
 * maven-source-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-source-plugin/
 * maven-surefire (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/surefire/surefire/
 * maven-war-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/
 * maven-toolchains-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-toolchains-plugin/
 * maven-wagon (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/apache/maven/wagon/wagon/
 * maven-wagon-ahc DEFAULT:wagon-ahc https://github.com/sonatype/wagon-ahc/releases
 * maven-clean-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/
 * maven-compiler-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/
 * maven-deploy-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/
 * maven-docck-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-docck-plugin/
 * maven-remote-resources-plugin (\d+\.\d+[\.\d+]*) http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/
 * mawk DEFAULT ftp://invisible-island.net/mawk/
 * mc DEFAULT http://ftp.midnight-commander.org/
 * mcabber DEFAULT http://mcabber.com/
 * mcollective DEFAULT http://downloads.puppetlabs.com/mcollective/
 * mcu8051ide DEFAULT SF-DEFAULT
 * mdadm DEFAULT http://kernel.org/pub/linux/utils/raid/mdadm/
 * mediawiki DEFAULT http://www.mediawiki.org/wiki/Download
 * media-player-info DEFAULT http://www.freedesktop.org/software/media-player-info/
 * methane DEFAULT SF-DEFAULT
 * mdds mdds_(\d+\.\d+.\d+)\.tar\.bz2 http://code.google.com/p/multidimalgorithm/wiki/Downloads
 * mdk DEFAULT http://ftp.gnu.org/gnu/mdk/*/
 * medusa DEFAULT http://www.foofus.net/~jmk/medusa/medusa.html
 * memcached DEFAULT GOOGLE-DEFAULT
 * memtest86+ memtest86\+-(.*?)\.tar\.gz http://www.memtest.org/download/*/
 * memtester DEFAULT http://pyropus.ca/software/memtester/
 * mercator DEFAULT SF-DEFAULT:worldforge
 * mercurial DEFAULT http://mercurial.selenic.com/release/
 * mesa DEFAULT:MesaLib ftp://ftp.freedesktop.org/pub/mesa/current/
 * mg href="mg-(.*?).tar.gz" http://homepage.boetes.org/software/mg/
 * mgetty \bmgetty([^-]+) ftp://mgetty.greenie.net/pub/mgetty/source/*.*/
 * mhddfs DEFAULT http://mhddfs.uvw.ru/downloads/
 * midori DEFAULT https://launchpad.net/midori
 * min12xxw DEFAULT http://hinterbergen.de/mala/min12xxw/
 * minetest archive/(.*?)\.tar.gz https://github.com/minetest/minetest/tags
 * mingw-dbus-glib DEFAULT:dbus-glib http://dbus.freedesktop.org/releases/dbus-glib/
 * mingw-libgsf DEFAULT:libgsf GNOME-DEFAULT:libgsf
 * mingw-libltdl DEFAULT:libtool GNU-DEFAULT:libtool
 * mingw-nsis DEFAULT:nsis http://nsis.sourceforge.net/Download
 * minicom DEFAULT http://alioth.debian.org/frs/?group_id=30018
 * minimodem DEFAULT http://www.whence.com/minimodem/
 * minised DEFAULT http://www.exactcode.de/site/open_source/minised/
 * miniupnpc miniupnpc-([0-9\.]*?) http://miniupnp.free.fr/files/
 * mirall DEFAULT http://owncloud.org/sync-clients/
 * mj DEFAULT http://mahjong.julianbradfield.org/Source/
 * mkvtoolnix DEFAULT http://www.bunkus.org/videotools/mkvtoolnix/sources/
 * mldonkey DEFAULT SF-DEFAULT
 * mmapper DEFAULT SF-DEFAULT
 * mocha NPM-DEFAULT NPM-DEFAULT
 * mod_perl DEFAULT CPAN-DEFAULT
 * mod_qos DEFAULT http://sourceforge.net/projects/mod-qos/files/
 * mod_suphp DEFAULT:suphp http://www.suphp.org/Home.html
 * mod_wsgi DEFAULT GOOGLE-DEFAULT:modwsgi
 * modplugtools DEFAULT SF-DEFAULT:modplug-xmms
 * modello "(\d[^/]*)/" http://repo1.maven.org/maven2/org/codehaus/modello/modello/
 * moe DEFAULT GNU-DEFAULT
 * mojomojo DEFAULT:MojoMojo CPAN-DEFAULT:MojoMojo
 * mojo-parent (\d+)/ http://repo2.maven.org/maven2/org/codehaus/mojo/mojo-parent/
 * moksha DEFAULT PYPI-DEFAULT
 * mon DEFAULT ftp://ftp.kernel.org/pub/software/admin/mon
 * monkeysphere monkeysphere_([0-9.]*).orig.tar.gz http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/
 * monitorix DEFAULT http://www.monitorix.org/downloads.html
 * monochrome-icon-theme DEFAULT:ubuntu-mono https://launchpad.net/ubuntu/quantal/+source/ubuntu-mono
 * monotone DEFAULT http://monotone.ca/downloads.php?type=Tarball
 * most DEFAULT ftp://space.mit.edu/pub/davis/most/*/
 * mot-adms DEFAULT:adms SF-DEFAULT
 * motif motif-(.*?)\-src.tgz SF-DEFAULT
 * mozc DEFAULT GOOGLE-DEFAULT
 * mozilla-adblockplus DEFAULT:adblockplus http://hg.adblockplus.org/downloads/raw-file/tip/
 * mozilla-noscript v (\d+\.\d+\.\d+\.\d+) http://noscript.net/changelog
 * mpfr DEFAULT GNU-DEFAULT
 * mpi4py DEFAULT GOOGLE-DEFAULT
 * mpir DEFAULT http://www.mpir.org/
 * mrbs DEFAULT SF-DEFAULT
 * mrtg DEFAULT http://oss.oetiker.ch/mrtg/pub/
 * msmtp DEFAULT SF-DEFAULT
 * msr-tools DEFAULT http://01.org/msr-tools/downloads
 * mtd-utils DEFAULT ftp://ftp.infradead.org/pub/mtd-utils/
 * mtn-browse DEFAULT SF-DEFAULT
 * mtools DEFAULT GNU-DEFAULT
 * mtr DEFAULT ftp://ftp.bitwizard.nl/mtr/
 * mtx DEFAULT SF-DEFAULT
 * multitail DEFAULT http://www.vanheusden.com/multitail/download.php
 * mumble DEFAULT SF-DEFAULT
 * muParser Version ([0-9]\.[0-9.]*).*muparser SF-DEFAULT:muparser
 * mupdf DEFAULT http://mupdf.com/download/
 * mutt DEFAULT ftp://ftp.mutt.org/mutt/
 * mypaint mypaint-([0-9]\.[0-9]\.[0-9]).tar.bz2 http://download.gna.org/mypaint/
 * mysqltuner archive/v(.*?)\.zip https://github.com/rackerhacker/MySQLTuner-perl/tags
 * mysql-connector-java DEFAULT http://dev.mysql.com/downloads/connector/j/?os=26
 * mysql-proxy DEFAULT http://dev.mysql.com/downloads/mysql-proxy/?os=src
 * mysql-workbench DEFAULT:mysql-workbench-community http://dev.mysql.com/downloads/workbench/?os=src
 * maven-hpi-plugin DEFAULT https://github.com/jenkinsci/maven-hpi-plugin/tags
 * metainf-services DEFAULT https://github.com/kohsuke/metainf-services/tags

N - NodeJS

 * nagios DEFAULT SF-DEFAULT
 * nagios-plugins DEFAULT http://www.monitoring-plugins.org/download.html
 * nano DEFAULT GNU-DEFAULT
 * nas DEFAULT SF-DEFAULT
 * nasm DEFAULT http://www.nasm.us/pub/nasm/releasebuilds/*/
 * NaturalDocs DEFAULT SF-DEFAULT:naturaldocs
 * nautilus DEFAULT GNOME-DEFAULT
 * nautilus-open-terminal DEFAULT GNOME-DEFAULT
 * nbd DEFAULT SF-DEFAULT
 * ncdu DEFAULT http://dev.yorhel.nl/ncdu
 * ncftp ncftp-([0-9.]*?)-src.tar.bz2 ftp://ftp.ncftp.com/ncftp/
 * ncompress DEFAULT SF-DEFAULT
 * ncurses DEFAULT GNU-DEFAULT
 * ncview DEFAULT ftp://cirrus.ucsd.edu/pub/ncview/
 * neap "name":\s*"v([\d\.]+)" https://api.github.com/repos/10sr/neap/tags
 * nekohtml DEFAULT SF-DEFAULT
 * nesc nesc-(.*?).tar.gz http://sourceforge.net/projects/nescc/
 * net-snmp /files/net-snmp/([\d.]+)/ http://net-snmp.sourceforge.net/download.html
 * netatalk netatalk-([0-9.]*?)\.tar SF-DEFAULT
 * netbsd-iscsi DEFAULT http://www.alistaircrooks.co.uk/src/
 * nethogs DEFAULT SF-DEFAULT
 * netlabel_tools DEFAULT SF-DEFAULT:netlabel
 * netmask DEFAULT DEBIAN-DEFAULT
 * netmonitor DEFAULT SF-DEFAULT
 * netpbm DEFAULT SF-DEFAULT
 * netsed DEFAULT http://silicone.homelinux.org/release/netsed/
 * netsniff-ng DEFAULT http://www.netsniff-ng.org/pub/netsniff-ng/
 * netsurf-buildsystem buildsystem-(\d+\.\d+).tar.gz http://download.netsurf-browser.org/libs/releases/
 * nettle DEFAULT http://www.lysator.liu.se/~nisse/archive/
 * netty netty-([0-9.]*?).Final https://github.com/netty/netty/tags
 * newlisp DEFAULT http://www.newlisp.org/downloads/
 * newsbeuter DEFAULT http://newsbeuter.org/download.html
 * newsx DEFAULT ftp://ftp.tin.org/pub/news/utils/newsx/
 * nfacct DEFAULT http://ftp.netfilter.org/pub/nfacct/
 * nfs-utils DEFAULT SF-DEFAULT:nfs
 * nftables DEFAULT http://ftp.netfilter.org/pub/nftables/
 * ngircd DEFAULT http://ngircd.barton.de/download.php.en
 * ngrep DEFAULT SF-DEFAULT
 * nickle DEFAULT http://nickle.org/release/
 * nicotine+ DEFAULT SF-DEFAULT:nicotine-plus
 * nifti2dicom GITHUB-TAGS GITHUB-TAGS:biolab-unige/nifti2dicom
 * nightview DEFAULT ftp://integral.physics.muni.cz/pub/nightview
 * njam DEFAULT SF-DEFAULT
 * nilfs-utils nilfs-utils-(.*?).tar.bz2 http://www.nilfs.org/download/
 * nip2 DEFAULT http://www.vips.ecs.soton.ac.uk/supported/current/
 * nkf DEFAULT http://sourceforge.jp/projects/nkf/releases/
 * nload DEFAULT http://www.roland-riegel.de/nload/
 * nmap DEFAULT http://nmap.org/dist/
 * nmon lmon(.*?)\.c http://nmon.sourceforge.net/pmwiki.php?n=Site.CompilingNmon

NodeJS

 * nodejs-* NPM-DEFAULT NPM-DEFAULT

NodeJS - O

 * nomacs nomacs-(.*?)-source\.tar\.bz2 SF-DEFAULT
 * notmuch DEFAULT http://notmuchmail.org/releases/
 * npush DEFAULT SF-DEFAULT
 * nsd DEFAULT http://www.nlnetlabs.nl/downloads/nsd/
 * nspluginwrapper DEFAULT http://nspluginwrapper.org/download/
 * nss DEFAULT http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/*/src/
 * ntfs-3g >ntfs-3g_ntfsprogs-(.*?)</a> http://www.tuxera.com/community/ntfs-3g-download/
 * npth DEFAULT ftp://ftp.gnupg.org/gcrypt/npth/
 * ntop DEFAULT SF-DEFAULT
 * ntopng DEFAULT SF-DEFAULT:ntop
 * ntp http://www.ntp.org/downloads.html
 * numactl DEFAULT ftp://oss.sgi.com/projects/libnuma/download
 * numatop numatop_linux_(.*?)\.tar\.gz http://01.org/numatop
 * numlockx DEFAULT http://home.kde.org/~seli/numlockx/
 * numpy numpy-([0-9.]*?).tar.gz SF-DEFAULT
 * nut DEFAULT http://www.networkupstools.org/download.html
 * nuttcp DEFAULT http://lcp.nrl.navy.mil/nuttcp/
 * nwchem Nwchem-([0-9.]*?)\.revision([0-9]*?)-src\..*\.tar\.gz http://www.nwchem-sw.org/images/
 * nx-libs nx-libs-(.*?)-full\.tar\.gz http://code.x2go.org/releases/source/nx-libs/
 * nzbget DEFAULT SF-DEFAULT

O

 * oath-toolkit DEFAULT http://download.savannah.gnu.org/releases/oath-toolkit/
 * obexftp DEFAULT SF-DEFAULT:openobex
 * obnam DEFAULT http://code.liw.fi/debian/pool/main/o/obnam/
 * ocaml DEFAULT http://caml.inria.fr/download.en.html
 * ocaml-biniou DEFAULT:biniou http://mjambon.com/releases/biniou/
 * ocaml-cppo DEFAULT:cppo http://mjambon.com/releases/cppo/
 * ocaml-easy-format DEFAULT:easy-format http://mjambon.com/releases/easy-format/
 * ocaml-xmlm DEFAULT:xmlm http://erratique.ch/software/xmlm/releases/
 * ocaml-yojson DEFAULT:yojson http://mjambon.com/releases/yojson/
 * ocrad DEFAULT GNU-DEFAULT
 * ocserv DEFAULT ftp://ftp.infradead.org/pub/ocserv/
 * octave DEFAULT GNU-DEFAULT
 * octave-audio DEFAULT:audio SF-DEFAULT:octave
 * octave-control control-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-image image-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-miscellaneous miscellaneous-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-octcdf octcdf-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-optim optim-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-quaternion DEFAULT:quaternion SF-DEFAULT:octave
 * octave-signal signal-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-specfun specfun-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-struct struct-(.*?).tar.gz http://sourceforge.net/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/
 * octave-symbolic DEFAULT:symbolic SF-DEFAULT:octave
 * odb DEFAULT:odb http://codesynthesis.com/download/odb/*/
 * odt2txt odt2txt-(.*?).tar.gz http://stosberg.net/odt2txt/
 * offlineimap v([0-9.]+).zip https://github.com/OfflineIMAP/offlineimap/tags
 * OmegaT DEFAULT SF-DEFAULT:omegat
 * open-mtools \bmtools\.([^-/_\s]+?)(?i)(?:[-_])?\.(?:tar|t[bglx]z|tbz2|zip)\b https://code.google.com/p/open-mtools/downloads/list
 * openarena download.php.list[0-9.]*.>([0-9.]*)< http://openarena.ws/download.php
 * openbabel openbabel-([0-9].*?)\.tar\.gz SF-DEFAULT
 * openblas archive/v(.*?)\.zip https://github.com/xianyi/OpenBLAS/tags
 * openbox DEFAULT http://openbox.org/wiki/Openbox:Download
 * opencc DEFAULT GOOGLE-DEFAULT
 * opencsg OpenCSG-([0-9.]*?).tar.gz http://www.opencsg.org/
 * opendkim \bopendkim[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?(?<!Beta\d)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * opendnssec DEFAULT http://dist.opendnssec.org/source/
 * opengrok DEFAULT http://opengrok.github.io/OpenGrok/
 * OpenImageIO Release-([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/OpenImageIO/oiio/releases
 * OpenIPMI DEFAULT SF-DEFAULT:openipmi
 * openjpeg2 DEFAULT SF-DEFAULT:openjpeg.mirror
 * openjpeg openjpeg-(1\.[0-9]\.[0-9])\.tar\.gz SF-DEFAULT:openjpeg.mirror
 * openldap DEFAULT ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release
 * openlierox OpenLieroX_(.*?).src.tar.bz2 SF-DEFAULT
 * openmpi DEFAULT http://www.open-mpi.org/software/
 * openmsx DEFAULT SF-DEFAULT
 * openobex trees/(\d[\d.]+)\W http://gitorious.org/openobex/mainline/trees/master
 * openocd DEFAULT SF-DEFAULT
 * openrdate DEFAULT SF-DEFAULT
 * opensc archive/v?(.*?)\.zip https://github.com/OpenSC/OpenSC/tags
 * openscad openscad-(.*?).src.tar.gz http://files.openscad.org/
 * opensips (?<=\<a href=")(\d+\.\d*[02468]\.\d+)(?=/"\>) https://opensips.org/pub/opensips/
 * openshift-java-client (\d+\.\d+\.\d+.*).tar.gz https://github.com/openshift/openshift-java-client/releases
 * opensm DEFAULT http://www.openfabrics.org/downloads/management/
 * opensp DEFAULT:OpenSP SF-DEFAULT:openjade
 * openssh DEFAULT http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/
 * openssl openssl-(.*?[a-z])\.tar\.gz http://www.openssl.org/source/
 * openvpn DEFAULT http://www.openvpn.net/index.php/open-source/downloads.html
 * openvswitch DEFAULT http://openvswitch.org/releases/
 * ophcrack DEFAULT http://ophcrack.sf.net/download.php
 * oprofile DEFAULT SF-DEFAULT
 * optipng DEFAULT SF-DEFAULT
 * orbited DEFAULT PYPI-DEFAULT
 * orc DEFAULT http://cgit.freedesktop.org/gstreamer/orc/refs/tags
 * os-prober DEFAULT DEBIAN-DEFAULT
 * osmo DEFAULT SF-DEFAULT:osmo-pim
 * osslsigncode DEFAULT SF-DEFAULT
 * ovaldi DEFAULT SF-DEFAULT
 * owasp-java-html-sanitizer owasp-java-html-sanitizer-r([0-9\.]*).zip GOOGLE-DEFAULT
 * owncloud Version ([0-9.]+) http://owncloud.org/changelog/
 * oyranos DEFAULT SF-DEFAULT

P - Perl

 * p0f DEFAULT http://lcamtuf.coredump.cx/p0f3/releases/
 * p11-kit DEFAULT http://p11-glue.freedesktop.org/releases/
 * p7zip p7zip_([0-9.]*?)_src_all.tar.bz2 SF-DEFAULT
 * pacemaker DEFAULT https://github.com/ClusterLabs/pacemaker/tags
 * paco DEFAULT SF-DEFAULT
 * pal DEFAULT SF-DEFAULT:palcal
 * pam_mount DEFAULT SF-DEFAULT:pam-mount
 * pam_yubico ([0-9.]+).zip https://github.com/Yubico/yubico-pam/releases
 * pandoc HACKAGE-DEFAULT HACKAGE-DEFAULT
 * paprefs DEFAULT http://freedesktop.org/software/pulseaudio/paprefs/
 * paps DEFAULT SF-DEFAULT
 * parcellite DEFAULT SF-DEFAULT
 * pari DEFAULT http://pari.math.u-bordeaux.fr/download.html
 * parrot DEFAULT http://www.parrot.org/release/developer
 * parted DEFAULT GNU-DEFAULT
 * patch DEFAULT GNU-DEFAULT
 * patchutils DEFAULT http://cyberelk.net/tim/data/patchutils/stable/
 * pastebinit DEFAULT https://launchpad.net/pastebinit/+download
 * pax-utils \bpax-utils-([\w.]+)\.ebuild http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/pax-utils/
 * pbzip2 DEFAULT http://www.compression.ca/pbzip2/
 * pcb DEFAULT SF-DEFAULT
 * pcc DEFAULT http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/
 * pciutils DEFAULT ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
 * pcllib DEFAULT:pcl http://xmailserver.org/libpcl.html
 * pcmanfm DEFAULT SF-DEFAULT
 * pcmanx-gtk2 DEFAULT GOOGLE-DEFAULT
 * pcmciautils DEFAULT http://kernel.org/pub/linux/utils/kernel/pcmcia/
 * pcre DEFAULT SF-DEFAULT
 * pcsc-lite DEFAULT http://alioth.debian.org/frs/?group_id=30105
 * pcsc-lite-ccid DEFAULT:ccid http://alioth.debian.org/frs/?group_id=30105
 * pcsc-perl DEFAULT http://ludovic.rousseau.free.fr/softwares/pcsc-perl/
 * pdfchain DEFAULT SF-DEFAULT
 * pdfmerge DEFAULT SF-DEFAULT:pdfmerge4unix
 * pdftk DEFAULT http://www.pdflabs.com/tools/pdftk-server/
 * pem DEFAULT GNU-DEFAULT
 * pen DEFAULT http://siag.nu/pub/pen/
 * pencil DEFAULT GOOGLE-DEFAULT:evoluspencil

Perl

 * perl-accessors CPAN-DEFAULT CPAN-DEFAULT
 * perl-Ace DEFAULT:AcePerl CPAN-DEFAULT:AcePerl
 * perl-Acme-PlayCode CPAN-DEFAULT CPAN-DEFAULT
 * perl-AI-DecisionTree DEFAULT:AI-DecisionTree CPAN-DEFAULT:AI-DecisionTree
 * perl-Algorithm-Annotate DEFAULT:Algorithm-Annotate CPAN-DEFAULT
 * perl-Algorithm-CheckDigits CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-CurveFit DEFAULT:Algorithm-CurveFit CPAN-DEFAULT
 * perl-Algorithm-FastPermute CPAN-DEFAULT CPAN-DEFAULT
 * perl-Algorithm-SVM DEFAULT:Algorithm-SVM CPAN-DEFAULT
 * perl-Alien-ROOT DEFAULT:Alien-ROOT CPAN-DEFAULT
 * perl-Alien-SDL DEFAULT:Alien-SDL CPAN-DEFAULT
 * perl-Any-Moose DEFAULT:Any-Moose CPAN-DEFAULT
 * perl-AnyEvent-AIO DEFAULT:AnyEvent-AIO CPAN-DEFAULT
 * perl-AnyEvent-BDB DEFAULT:AnyEvent-BDB CPAN-DEFAULT
 * perl-AnyEvent-DBus DEFAULT:AnyEvent-DBus CPAN-DEFAULT:AnyEvent-DBus
 * perl-AnyEvent-I3 DEFAULT:AnyEvent-I3 CPAN-DEFAULT:AnyEvent-I3
 * perl-AnyEvent-XMPP DEFAULT:AnyEvent-XMPP CPAN-DEFAULT
 * perl-Apache-Htpasswd DEFAULT:Apache-Htpasswd CPAN-DEFAULT
 * perl-App-cpanminus DEFAULT:App-cpanminus CPAN-DEFAULT
 * perl-App-FatPacker DEFAULT:App-FatPacker CPAN-DEFAULT
 * perl-App-grindperl DEFAULT:App-grindperl CPAN-DEFAULT
 * perl-App-mymeta_requires DEFAULT:App-mymeta_requires CPAN-DEFAULT
 * perl-App-Nopaste DEFAULT:App-Nopaste CPAN-DEFAULT
 * perl-App-p DEFAULT:App-p CPAN-DEFAULT
 * perl-App-SVN-Bisect DEFAULT:App-SVN-Bisect CPAN-DEFAULT
 * perl-Archive-Extract DEFAULT:Archive-Extract CPAN-DEFAULT
 * perl-Archive-RPM DEFAULT:Archive-RPM CPAN-DEFAULT
 * perl-Archive-Tar DEFAULT:Archive-Tar CPAN-DEFAULT
 * perl-Archive-Zip DEFAULT:Archive-Zip CPAN-DEFAULT
 * perl-Array-Base DEFAULT:Array-Base CPAN-DEFAULT
 * perl-Array-Diff DEFAULT:Array-Diff CPAN-DEFAULT
 * perl-Array-RefElem DEFAULT:Array-RefElem CPAN-DEFAULT
 * perl-Async-MergePoint DEFAULT:Async-MergePoint CPAN-DEFAULT
 * perl-AuthCAS DEFAULT:AuthCAS CPAN-DEFAULT
 * perl-Authen-OATH DEFAULT:Authen-OATH CPAN-DEFAULT
 * perl-autodie DEFAULT:autodie CPAN-DEFAULT
 * perl-AutoXS-Header DEFAULT:AutoXS-Header CPAN-DEFAULT
 * perl-B-Hooks-OP-Check-StashChange DEFAULT:B-Hooks-OP-Check-StashChange CPAN-DEFAULT
 * perl-B-Hooks-OP-PPAddr DEFAULT:B-Hooks-OP-PPAddr CPAN-DEFAULT
 * perl-B-Keywords DEFAULT:B-Keywords CPAN-DEFAULT
 * perl-B-Lint DEFAULT:B-Lint CPAN-DEFAULT
 * perl-Beanstalk-Client DEFAULT:Beanstalk-Client CPAN-DEFAULT
 * perl-Best DEFAULT:Best CPAN-DEFAULT
 * perl-Bio-SamTools DEFAULT:Bio-SamTools CPAN-DEFAULT
 * perl-Bisect-Perl-UsingGit DEFAULT:Bisect-Perl-UsingGit CPAN-DEFAULT
 * perl-Bit-Vector DEFAULT:Bit-Vector CPAN-DEFAULT
 * perl-Boost-Geometry-Utils DEFAULT:Boost-Geometry-Utils CPAN-DEFAULT
 * perl-BSD-Resource DEFAULT:BSD-Resource CPAN-DEFAULT
 * perl-Business-CreditCard DEFAULT:Business-CreditCard CPAN-DEFAULT
 * perl-Business-ISBN DEFAULT:Business-ISBN CPAN-DEFAULT
 * perl-Business-ISBN-Data DEFAULT:Business-ISBN-Data CPAN-DEFAULT
 * perl-Capture-Tiny DEFAULT:Capture-Tiny CPAN-DEFAULT
 * perl-Carp DEFAULT:Carp CPAN-DEFAULT
 * perl-Carp-Clan DEFAULT:Carp-Clan CPAN-DEFAULT
 * perl-Catalyst-Engine-PSGI DEFAULT:Catalyst-Engine-PSGI CPAN-DEFAULT
 * perl-CDB_File DEFAULT:CDB_File CPAN-DEFAULT
 * perl-CDDB_get DEFAULT:CDDB_get CPAN-DEFAULT
 * perl-CGI DEFAULT:CGI.pm CPAN-DEFAULT
 * perl-Chatbot-Eliza DEFAULT:Chatbot-Eliza CPAN-DEFAULT
 * perl-Check-ISA DEFAULT:Check-ISA CPAN-DEFAULT
 * perl-CLASS DEFAULT:CLASS CPAN-DEFAULT
 * perl-Class-Adapter DEFAULT:Class-Adapter CPAN-DEFAULT
 * perl-Class-Can DEFAULT:Class-Can CPAN-DEFAULT
 * perl-Class-CSV DEFAULT:Class-CSV CPAN-DEFAULT
 * perl-Class-Data-Accessor DEFAULT:Class-Data-Accessor CPAN-DEFAULT
 * perl-Class-Exporter DEFAULT:Class-Exporter CPAN-DEFAULT
 * perl-Class-Factory DEFAULT:Class-Factory CPAN-DEFAULT
 * perl-Class-Field DEFAULT:Class-Field CPAN-DEFAULT
 * perl-Class-Inner DEFAULT:Class-Inner CPAN-DEFAULT
 * perl-Class-ISA DEFAULT:Class-ISA CPAN-DEFAULT
 * perl-Class-Iterator DEFAULT:Class-Iterator CPAN-DEFAULT
 * perl-Class-MethodMaker DEFAULT:Class-MethodMaker CPAN-DEFAULT
 * perl-Class-Prototyped DEFAULT:Class-Prototyped CPAN-DEFAULT
 * perl-Class-Tiny DEFAULT:Class-Tiny CPAN-DEFAULT
 * perl-Class-Unload DEFAULT:Class-Unload CPAN-DEFAULT
 * perl-Class-XSAccessor DEFAULT:Class-XSAccessor CPAN-DEFAULT
 * perl-Classic-Perl DEFAULT:Classic-Perl CPAN-DEFAULT
 * perl-Compress-Bzip2 DEFAULT:Compress-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Bzip2 DEFAULT:Compress-Raw-Bzip2 CPAN-DEFAULT
 * perl-Compress-Raw-Zlib DEFAULT:Compress-Raw-Zlib CPAN-DEFAULT
 * perl-Config-Any DEFAULT:Config-Any CPAN-DEFAULT
 * perl-Config-General DEFAULT:Config-General CPAN-DEFAULT
 * perl-Config-IniFiles DEFAULT:Config-IniFiles CPAN-DEFAULT
 * perl-Config-Properties DEFAULT:Config-Properties CPAN-DEFAULT
 * perl-Config-Record DEFAULT:Config-Record CPAN-DEFAULT
 * perl-Config-Simple DEFAULT:Config-Simple CPAN-DEFAULT
 * perl-constant DEFAULT:constant CPAN-DEFAULT
 * perl-constant-defer DEFAULT:constant-defer CPAN-DEFAULT
 * perl-constant-tiny DEFAULT:constant-tiny CPAN-DEFAULT
 * perl-Convert-ASN1 DEFAULT:Convert-ASN1 CPAN-DEFAULT
 * perl-Convert-BER CPAN-DEFAULT CPAN-DEFAULT
 * perl-Convert-NLS_DATE_FORMAT DEFAULT:Convert-NLS_DATE_FORMAT CPAN-DEFAULT
 * perl-Coro DEFAULT:Coro CPAN-DEFAULT
 * perl-CPAN-Checksums DEFAULT:CPAN-Checksums CPAN-DEFAULT
 * perl-CPAN-FindDependencies DEFAULT:CPAN-FindDependencies CPAN-DEFAULT
 * perl-CPAN-Inject DEFAULT:CPAN-Inject CPAN-DEFAULT
 * perl-CPAN-Mini DEFAULT:CPAN-Mini CPAN-DEFAULT
 * perl-CPANPLUS DEFAULT:CPANPLUS CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-Changes DEFAULT:CPANPLUS-Shell-Default-Plugins-Changes CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-Diff DEFAULT:CPANPLUS-Shell-Default-Plugins-Diff CPAN-DEFAULT
 * perl-CPANPLUS-Shell-Default-Plugins-RT DEFAULT:CPANPLUS-Shell-Default-Plugins-RT CPAN-DEFAULT
 * perl-criticism DEFAULT:criticism CPAN-DEFAULT
 * perl-Crypt-Blowfish DEFAULT:Crypt-Blowfish CPAN-DEFAULT
 * perl-Crypt-CipherSaber DEFAULT:Crypt-CipherSaber CPAN-DEFAULT
 * perl-Crypt-GeneratePassword DEFAULT:Crypt-GeneratePassword CPAN-DEFAULT
 * perl-Crypt-OpenSSL-AES DEFAULT:Crypt-OpenSSL-AES CPAN-DEFAULT
 * perl-Crypt-OpenSSL-Bignum DEFAULT:Crypt-OpenSSL-Bignum CPAN-DEFAULT
 * perl-Crypt-OpenSSL-DSA DEFAULT:Crypt-OpenSSL-DSA CPAN-DEFAULT
 * perl-Crypt-OpenSSL-PKCS10 DEFAULT:Crypt-OpenSSL-PKCS10 CPAN-DEFAULT
 * perl-Crypt-OpenSSL-Random DEFAULT:Crypt-OpenSSL-Random CPAN-DEFAULT
 * perl-Crypt-OpenSSL-RSA DEFAULT:Crypt-OpenSSL-RSA CPAN-DEFAULT
 * perl-Crypt-OpenSSL-X509 DEFAULT:Crypt-OpenSSL-X509 CPAN-DEFAULT
 * perl-Crypt-PasswdMD5 DEFAULT:Crypt-PasswdMD5 CPAN-DEFAULT
 * perl-Crypt-RC4 DEFAULT:Crypt-RC4 CPAN-DEFAULT:Crypt-RC4
 * perl-Crypt-RC4-XS DEFAULT:Crypt-RC4-XS CPAN-DEFAULT:Crypt-RC4-XS
 * perl-Crypt-SSLeay DEFAULT:Crypt-SSLeay CPAN-DEFAULT
 * perl-CSS-Squish DEFAULT:CSS-Squish CPAN-DEFAULT
 * perl-Dancer DEFAULT:Dancer CPAN-DEFAULT
 * perl-Danga-Socket DEFAULT:Danga-Socket CPAN-DEFAULT
 * perl-Data-Dumper DEFAULT:Data-Dumper CPAN-DEFAULT
 * perl-Data-Dumper-Names DEFAULT:Data-Dumper-Names CPAN-DEFAULT
 * perl-Data-Float DEFAULT:Data-Float CPAN-DEFAULT
 * perl-Data-Flow DEFAULT:Data-Flow CPAN-DEFAULT
 * perl-Data-HexDump-XXD DEFAULT:Data-HexDump-XXD CPAN-DEFAULT
 * perl-Data-Hierarchy DEFAULT:Data-Hierarchy CPAN-DEFAULT
 * perl-Data-ICal DEFAULT:Data-ICal CPAN-DEFAULT
 * perl-Data-MessagePack DEFAULT:Data-MessagePack CPAN-DEFAULT
 * perl-Data-OptList DEFAULT:Data-OptList CPAN-DEFAULT
 * perl-Data-Peek DEFAULT:Data-Peek CPAN-DEFAULT
 * perl-Data-Report DEFAULT:Data-Report CPAN-DEFAULT
 * perl-Data-Rmap DEFAULT:Data-Rmap CPAN-DEFAULT
 * perl-Data-Section DEFAULT:Data-Section CPAN-DEFAULT
 * perl-Data-TreeDumper DEFAULT:Data-TreeDumper CPAN-DEFAULT
 * perl-Data-TreeDumper-Renderer-GTK DEFAULT:Data-TreeDumper-Renderer-GTK CPAN-DEFAULT
 * perl-Data-Types DEFAULT:Data-Types CPAN-DEFAULT
 * perl-Date-Calc DEFAULT:Date-Calc CPAN-DEFAULT
 * perl-Date-ICal DEFAULT:Date-ICal CPAN-DEFAULT
 * perl-Date-Leapyear DEFAULT:Date-Leapyear CPAN-DEFAULT
 * perl-Date-Manip DEFAULT:Date-Manip CPAN-DEFAULT
 * perl-Date-Pcalc DEFAULT:Date-Pcalc CPAN-DEFAULT
 * perl-DateTime DEFAULT:DateTime CPAN-DEFAULT
 * perl-DateTimeX-Easy DEFAULT:DateTimeX-Easy CPAN-DEFAULT
 * perl-DateTime-Format-DateManip DEFAULT:DateTime-Format-DateManip CPAN-DEFAULT
 * perl-DateTime-Format-DateParse DEFAULT:DateTime-Format-DateParse CPAN-DEFAULT
 * perl-DateTime-Format-DB2 DEFAULT:DateTime-Format-DB2 CPAN-DEFAULT
 * perl-DateTime-Format-DBI DEFAULT:DateTime-Format-DBI CPAN-DEFAULT
 * perl-DateTime-Format-Duration DEFAULT:DateTime-Format-Duration CPAN-DEFAULT
 * perl-DateTime-Format-Excel DEFAULT:DateTime-Format-Excel CPAN-DEFAULT
 * perl-DateTime-Format-Flexible DEFAULT:DateTime-Format-Flexible CPAN-DEFAULT
 * perl-DateTime-Format-ISO8601 DEFAULT:DateTime-Format-ISO8601 CPAN-DEFAULT
 * perl-DateTime-Format-Oracle DEFAULT:DateTime-Format-Oracle CPAN-DEFAULT
 * perl-DateTime-Precise DEFAULT:DateTime-Precise CPAN-DEFAULT
 * perl-DateTime-TimeZone DEFAULT:DateTime-TimeZone CPAN-DEFAULT
 * perl-DateTime-Tiny DEFAULT:DateTime-Tiny CPAN-DEFAULT
 * perl-DB_File DEFAULT:DB_File CPAN-DEFAULT
 * perl-DBD-CSV DEFAULT:DBD-CSV CPAN-DEFAULT
 * perl-DBD-Mock DEFAULT:DBD-Mock CPAN-DEFAULT
 * perl-DBD-Multi DEFAULT:DBD-Multi CPAN-DEFAULT
 * perl-DBD-MySQL DEFAULT:DBD-mysql CPAN-DEFAULT:DBD-mysql
 * perl-DBD-ODBC DEFAULT:DBD-ODBC CPAN-DEFAULT
 * perl-DBD-Pg DEFAULT:DBD-Pg CPAN-DEFAULT
 * perl-DBD-SQLite DEFAULT:DBD-SQLite CPAN-DEFAULT
 * perl-DBI DEFAULT:DBI CPAN-DEFAULT
 * perl-DBI-Dumper DEFAULT:DBI-Dumper CPAN-DEFAULT
 * perl-DBIx-DBSchema DEFAULT:DBIx-DBSchema CPAN-DEFAULT
 * perl-DBIx-POS DEFAULT:DBIx-POS CPAN-DEFAULT
 * perl-DBIx-Simple DEFAULT:DBIx-Simple CPAN-DEFAULT
 * perl-DBM-Deep DEFAULT:DBM-Deep CPAN-DEFAULT
 * perl-Debug-Client DEFAULT:Debug-Client CPAN-DEFAULT
 * perl-Declare-Constraints-Simple DEFAULT:Declare-Constraints-Simple CPAN-DEFAULT
 * perl-DepGen-Perl-Tests perl-DepGen-Perl-Tests-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/perl-DepGen-Perl-Tests/
 * perl-Devel-Autoflush DEFAULT:Devel-Autoflush CPAN-DEFAULT
 * perl-Devel-CallChecker DEFAULT:Devel-CallChecker CPAN-DEFAULT
 * perl-Devel-CallParser DEFAULT:Devel-CallParser CPAN-DEFAULT
 * perl-Devel-CheckOS DEFAULT:Devel-CheckOS CPAN-DEFAULT
 * perl-Devel-Comments DEFAULT:Devel-Comments CPAN-DEFAULT
 * perl-Devel-Declare-Parser DEFAULT:Devel-Declare-Parser CPAN-DEFAULT
 * perl-Devel-Dumpvar DEFAULT:Devel-Dumpvar CPAN-DEFAULT
 * perl-Devel-GlobalDestruction DEFAULT:Devel-GlobalDestruction CPAN-DEFAULT
 * perl-Devel-Refactor DEFAULT:Devel-Refactor CPAN-DEFAULT
 * perl-Devel-Refcount DEFAULT:Devel-Refcount CPAN-DEFAULT
 * perl-Devel-Size DEFAULT:Devel-Size CPAN-DEFAULT
 * perl-Devel-StringInfo DEFAULT:Devel-StringInfo CPAN-DEFAULT
 * perl-Devel-Symdump DEFAULT:Devel-Symdump CPAN-DEFAULT
 * perl-Devel-Trace DEFAULT:Devel-Trace CPAN-DEFAULT:Devel-Trace
 * perl-Digest-CRC DEFAULT:Digest-CRC CPAN-DEFAULT
 * perl-Digest-HMAC DEFAULT:Digest-HMAC CPAN-DEFAULT
 * perl-Digest-MD5 DEFAULT:Digest-MD5 CPAN-DEFAULT
 * perl-Digest-SHA DEFAULT:Digest-SHA CPAN-DEFAULT
 * perl-Digest-SHA1 DEFAULT:Digest-SHA1 CPAN-DEFAULT
 * perl-Directory-Scratch-Structured DEFAULT:Directory-Scratch-Structured CPAN-DEFAULT
 * perl-DynaLoader-Functions DEFAULT:DynaLoader-Functions CPAN-DEFAULT
 * perl-Email-Address DEFAULT:Email-Address CPAN-DEFAULT
 * perl-Encode DEFAULT:Encode CPAN-DEFAULT
 * perl-Encode-JP-Mobile DEFAULT:Encode-JP-Mobile CPAN-DEFAULT
 * perl-Encode-Locale DEFAULT:Encode-Locale CPAN-DEFAULT
 * perl-Env DEFAULT:Env CPAN-DEFAULT
 * perl-EV DEFAULT:EV CPAN-DEFAULT:EV
 * perl-Eval-Context DEFAULT:Eval-Context CPAN-DEFAULT
 * perl-Event-RPC DEFAULT:Event-RPC CPAN-DEFAULT
 * perl-experimental DEFAULT:experimental CPAN-DEFAULT
 * perl-Exporter DEFAULT:Exporter CPAN-DEFAULT
 * perl-Exporter-Declare DEFAULT:Exporter-Declare CPAN-DEFAULT
 * perl-ExtUtils-CChecker DEFAULT:ExtUtils-CChecker CPAN-DEFAULT
 * perl-ExtUtils-CppGuess DEFAULT:ExtUtils-CppGuess CPAN-DEFAULT
 * perl-ExtUtils-H2PM DEFAULT:ExtUtils-H2PM CPAN-DEFAULT:ExtUtils-H2PM
 * perl-ExtUtils-InferConfig DEFAULT:ExtUtils-InferConfig CPAN-DEFAULT
 * perl-ExtUtils-InstallPAR DEFAULT:ExtUtils-InstallPAR CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker DEFAULT:ExtUtils-MakeMaker CPAN-DEFAULT
 * perl-ExtUtils-MakeMaker-Coverage DEFAULT:ExtUtils-MakeMaker-Coverage http://backpan.perl.org/authors/id/S/SM/SMPETERS/
 * perl-ExtUtils-Manifest DEFAULT:ExtUtils-Manifest CPAN-DEFAULT
 * perl-ExtUtils-ParseXS DEFAULT:ExtUtils-ParseXS CPAN-DEFAULT
 * perl-ExtUtils-Typemaps-Default DEFAULT:ExtUtils-Typemaps-Default CPAN-DEFAULT
 * perl-ExtUtils-XSpp DEFAULT:ExtUtils-XSpp CPAN-DEFAULT
 * perl-Fedora-Rebuild Fedora-Rebuild-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/Fedora-Rebuild/
 * perl-Feed-Find DEFAULT:Feed-Find CPAN-DEFAULT
 * perl-Fennec-Lite DEFAULT:Fennec-Lite CPAN-DEFAULT
 * perl-File-BaseDir DEFAULT:File-BaseDir CPAN-DEFAULT
 * perl-File-chdir DEFAULT:File-chdir CPAN-DEFAULT
 * perl-File-ChangeNotify DEFAULT:File-ChangeNotify CPAN-DEFAULT
 * perl-File-CheckTree DEFAULT:File-CheckTree CPAN-DEFAULT
 * perl-File-DesktopEntry DEFAULT:File-DesktopEntry CPAN-DEFAULT
 * perl-File-ExtAttr DEFAULT:File-ExtAttr CPAN-DEFAULT
 * perl-File-Fetch DEFAULT:File-Fetch CPAN-DEFAULT
 * perl-File-Find-Iterator DEFAULT:File-Find-Iterator CPAN-DEFAULT
 * perl-File-Find-Object DEFAULT:File-Find-Object CPAN-DEFAULT
 * perl-File-Find-Object-Rule DEFAULT:File-Find-Object-Rule CPAN-DEFAULT
 * perl-File-Find-Rule DEFAULT:File-Find-Rule CPAN-DEFAULT
 * perl-File-Find-Rule-VCS DEFAULT:File-Find-Rule-VCS CPAN-DEFAULT
 * perl-File-HomeDir DEFAULT:File-HomeDir CPAN-DEFAULT
 * perl-File-Listing DEFAULT:File-Listing CPAN-DEFAULT
 * perl-File-MimeInfo DEFAULT:File-MimeInfo CPAN-DEFAULT
 * perl-File-MMagic DEFAULT:File-MMagic CPAN-DEFAULT
 * perl-File-Next DEFAULT:File-Next CPAN-DEFAULT
 * perl-File-NFSLock DEFAULT:File-NFSLock CPAN-DEFAULT
 * perl-File-Path DEFAULT:File-Path CPAN-DEFAULT
 * perl-File-PathList DEFAULT:File-PathList CPAN-DEFAULT
 * perl-File-pushd DEFAULT:File-pushd CPAN-DEFAULT
 * perl-File-RsyncP DEFAULT:File-RsyncP CPAN-DEFAULT
 * perl-File-ShareDir DEFAULT:File-ShareDir CPAN-DEFAULT
 * perl-File-ShareDir-PAR DEFAULT:File-ShareDir-PAR CPAN-DEFAULT
 * perl-File-ShareDir-ProjectDistDir DEFAULT:File-ShareDir-ProjectDistDir CPAN-DEFAULT
 * perl-File-Tee DEFAULT:File-Tee CPAN-DEFAULT
 * perl-File-Temp DEFAULT:File-Temp CPAN-DEFAULT
 * perl-Filesys-Df DEFAULT:Filesys-Df CPAN-DEFAULT
 * perl-Filesys-Notify-Simple DEFAULT:Filesys-Notify-Simple CPAN-DEFAULT
 * perl-Filter DEFAULT:Filter CPAN-DEFAULT
 * perl-Flickr-API DEFAULT:Flickr-API CPAN-DEFAULT
 * perl-Flickr-Upload DEFAULT:Flickr-Upload CPAN-DEFAULT
 * perl-Font-TTF DEFAULT:Font-TTF CPAN-DEFAULT
 * perl-Font-TTFMetrics DEFAULT:Font-TTFMetrics CPAN-DEFAULT
 * perl-Format-Human-Bytes DEFAULT:Format-Human-Bytes CPAN-DEFAULT
 * perl-FreezeThaw DEFAULT:FreezeThaw CPAN-DEFAULT
 * perl-Frontier-RPC DEFAULT:Frontier-RPC CPAN-DEFAULT
 * perl-GD-Barcode DEFAULT:GD-Barcode CPAN-DEFAULT
 * perl-Gearman DEFAULT:Gearman CPAN-DEFAULT
 * perl-Gearman-Client-Async DEFAULT:Gearman-Client-Async CPAN-DEFAULT
 * perl-Gearman-Server DEFAULT:Gearman-Server CPAN-DEFAULT
 * perl-Getopt-Long DEFAULT:Getopt-Long CPAN-DEFAULT
 * perl-Getopt-Lucid DEFAULT:Getopt-Lucid CPAN-DEFAULT
 * perl-Glib-Object-Introspection DEFAULT:Glib-Object-Introspection CPAN-DEFAULT
 * perl-Gnome2 DEFAULT:Gnome2 CPAN-DEFAULT
 * perl-Gnome2-Canvas DEFAULT:Gnome2-Canvas CPAN-DEFAULT
 * perl-Gnome2-GConf DEFAULT:Gnome2-GConf CPAN-DEFAULT
 * perl-Gnome2-Print DEFAULT:Gnome2-Print CPAN-DEFAULT
 * perl-Gnome2-VFS DEFAULT:Gnome2-VFS CPAN-DEFAULT
 * perl-Gravatar-URL DEFAULT:Gravatar-URL CPAN-DEFAULT
 * perl-Growl-GNTP DEFAULT:Growl-GNTP CPAN-DEFAULT
 * perl-GStreamer DEFAULT:GStreamer CPAN-DEFAULT
 * perl-Gtk2 DEFAULT:Gtk2 CPAN-DEFAULT
 * perl-Gtk2-Ex-CalendarButton DEFAULT:Gtk2-Ex-CalendarButton CPAN-DEFAULT
 * perl-Gtk2-Ex-Carp DEFAULT:Gtk2-Ex-Carp CPAN-DEFAULT
 * perl-Gtk2-Ex-Dialogs DEFAULT:Gtk2-Ex-Dialogs CPAN-DEFAULT
 * perl-Gtk2-Ex-FormFactory DEFAULT:Gtk2-Ex-FormFactory CPAN-DEFAULT
 * perl-Gtk2-Ex-Simple-List DEFAULT:Gtk2-Ex-Simple-List CPAN-DEFAULT
 * perl-Gtk2-Ex-Utils DEFAULT:Gtk2-Ex-Utils CPAN-DEFAULT
 * perl-Gtk2-GladeXML DEFAULT:Gtk2-GladeXML CPAN-DEFAULT
 * perl-Gtk2-Notify DEFAULT:Gtk2-Notify CPAN-DEFAULT
 * perl-Gtk2-Sexy DEFAULT:Gtk2-Sexy CPAN-DEFAULT
 * perl-Gtk2-SourceView DEFAULT:Gtk2-SourceView CPAN-DEFAULT
 * perl-Gtk2-Spell DEFAULT:Gtk2-Spell CPAN-DEFAULT
 * perl-Gtk2-TrayIcon DEFAULT:Gtk2-TrayIcon CPAN-DEFAULT
 * perl-Gtk3 DEFAULT:Gtk3 CPAN-DEFAULT
 * perl-Guard DEFAULT:Guard CPAN-DEFAULT
 * perl-Ham-Reference-QRZ DEFAULT:Ham-Reference-QRZ CPAN-DEFAULT
 * perl-Hardware-Verilog-Parser DEFAULT:Hardware-Verilog-Parser CPAN-DEFAULT
 * perl-Hardware-Vhdl-Lexer DEFAULT:Hardware-Vhdl-Lexer CPAN-DEFAULT
 * perl-Hardware-Vhdl-Parser DEFAULT:Hardware-Vhdl-Parser CPAN-DEFAULT
 * perl-Hardware-Vhdl-Tidy DEFAULT:Hardware-Vhdl-Tidy CPAN-DEFAULT
 * perl-Hash-Case DEFAULT:Hash-Case CPAN-DEFAULT
 * perl-Hash-MultiValue DEFAULT:Hash-MultiValue CPAN-DEFAULT
 * perl-Hash-WithDefaults DEFAULT:Hash-WithDefaults CPAN-DEFAULT
 * perl-Heap DEFAULT:Heap CPAN-DEFAULT
 * perl-HTML-Encoding DEFAULT:HTML-Encoding CPAN-DEFAULT
 * perl-HTML-Entities-Numbered DEFAULT:HTML-Entities-Numbered CPAN-DEFAULT
 * perl-HTML-FormatText-WithLinks DEFAULT:HTML-FormatText-WithLinks CPAN-DEFAULT
 * perl-HTML-FormFu-MultiForm DEFAULT:HTML-FormFu-MultiForm CPAN-DEFAULT
 * perl-HTML-Parser DEFAULT:HTML-Parser CPAN-DEFAULT
 * perl-HTML-PrettyPrinter DEFAULT:HTML-PrettyPrinter CPAN-DEFAULT
 * perl-HTML-StripScripts DEFAULT:HTML-StripScripts CPAN-DEFAULT
 * perl-HTML-StripScripts-Parser DEFAULT:HTML-StripScripts-Parser CPAN-DEFAULT
 * perl-HTML-Tagset DEFAULT:HTML-Tagset CPAN-DEFAULT
 * perl-HTML-Template DEFAULT:HTML-Template CPAN-DEFAULT
 * perl-HTML-Tree DEFAULT:HTML-Tree CPAN-DEFAULT
 * perl-HTTP-Cookies DEFAULT:HTTP-Cookies CPAN-DEFAULT
 * perl-HTTP-Daemon DEFAULT:HTTP-Daemon CPAN-DEFAULT
 * perl-HTTP-Date DEFAULT:HTTP-Date CPAN-DEFAULT
 * perl-HTTP-Message DEFAULT:HTTP-Message CPAN-DEFAULT
 * perl-HTTP-Negotiate DEFAULT:HTTP-Negotiate CPAN-DEFAULT
 * perl-HTTP-Parser DEFAULT:HTTP-Parser CPAN-DEFAULT
 * perl-HTTP-ProxyAutoConfig DEFAULT:HTTP-ProxyAutoConfig CPAN-DEFAULT
 * perl-HTTP-Tiny DEFAULT:HTTP-Tiny CPAN-DEFAULT
 * perl-Inline DEFAULT:Inline CPAN-DEFAULT
 * perl-Inline-Files DEFAULT:Inline-Files CPAN-DEFAULT
 * perl-IO-Capture-Extended DEFAULT:IO-Capture-Extended CPAN-DEFAULT
 * perl-IO-Compress DEFAULT:IO-Compress CPAN-DEFAULT
 * perl-IO-Digest DEFAULT:IO-Digest CPAN-DEFAULT
 * perl-IO-HTML DEFAULT:IO-HTML CPAN-DEFAULT
 * perl-IO-InSitu DEFAULT:IO-InSitu CPAN-DEFAULT
 * perl-IO-Interactive DEFAULT:IO-Interactive CPAN-DEFAULT
 * perl-IO-Prompt DEFAULT:IO-Prompt CPAN-DEFAULT
 * perl-IO-Socket-IP DEFAULT:IO-Socket-IP CPAN-DEFAULT
 * perl-IO-Socket-PortState DEFAULT:IO-Socket-PortState CPAN-DEFAULT
 * perl-IO-String DEFAULT:IO-String CPAN-DEFAULT
 * perl-IO-TieCombine DEFAULT:IO-TieCombine CPAN-DEFAULT
 * perl-IPC-Cmd DEFAULT:IPC-Cmd CPAN-DEFAULT
 * perl-IPTables-libiptc DEFAULT:IPTables-libiptc CPAN-DEFAULT
 * perl-IRC-Utils DEFAULT:IRC-Utils CPAN-DEFAULT
 * perl-JavaScript-Beautifier DEFAULT:JavaScript-Beautifier CPAN-DEFAULT
 * perl-JavaScript-Minifier DEFAULT:JavaScript-Minifier CPAN-DEFAULT
 * perl-JavaScript-Minifier-XS DEFAULT:JavaScript-Minifier-XS CPAN-DEFAULT
 * perl-Jemplate DEFAULT:Jemplate CPAN-DEFAULT
 * perl-JSON-Path DEFAULT:JSON-Path CPAN-DEFAULT:JSON-Path
 * perl-JSON-Pointer DEFAULT:JSON-Pointer CPAN-DEFAULT
 * perl-L DEFAULT:L CPAN-DEFAULT
 * perl-Language-Expr DEFAULT:Language-Expr CPAN-DEFAULT
 * perl-Language-Functional DEFAULT:Language-Functional CPAN-DEFAULT
 * perl-Language-Prolog-Sugar DEFAULT:Language-Prolog-Sugar CPAN-DEFAULT
 * perl-Language-Prolog-Types DEFAULT:Language-Prolog-Types CPAN-DEFAULT
 * perl-Language-Prolog-Yaswi DEFAULT:Language-Prolog-Yaswi CPAN-DEFAULT
 * perl-LDAP DEFAULT:ldap CPAN-DEFAULT:perl-ldap
 * perl-Lexical-SealRequireHints DEFAULT:Lexical-SealRequireHints CPAN-DEFAULT
 * perl-Lexical-Var DEFAULT:Lexical-Var CPAN-DEFAULT
 * perl-lib-abs DEFAULT:lib-abs CPAN-DEFAULT
 * perl-libwhisker2 DEFAULT:libwhisker2 SF-DEFAULT:whisker
 * perl-libwww-perl DEFAULT:libwww-perl CPAN-DEFAULT
 * perl-libxml-perl DEFAULT:libxml-perl CPAN-DEFAULT
 * perl-Lingua-EN-Numbers DEFAULT:Lingua-EN-Numbers CPAN-DEFAULT
 * perl-Lingua-EN-Numbers-Easy DEFAULT:Lingua-EN-Numbers-Easy CPAN-DEFAULT
 * perl-Lingua-EN-Numbers-Ordinate DEFAULT:Lingua-EN-Numbers-Ordinate CPAN-DEFAULT
 * perl-Linux-Inotify2 DEFAULT:Linux-Inotify2 CPAN-DEFAULT
 * perl-Linux-Pid DEFAULT:Linux-Pid CPAN-DEFAULT
 * perl-List-AllUtils DEFAULT:List-AllUtils CPAN-DEFAULT
 * perl-List-Compare DEFAULT:List-Compare CPAN-DEFAULT
 * perl-Locale-Codes DEFAULT:Locale-Codes CPAN-DEFAULT
 * perl-Locale-Maketext DEFAULT:Locale-Maketext CPAN-DEFAULT
 * perl-Locale-Msgfmt DEFAULT:Locale-Msgfmt CPAN-DEFAULT
 * perl-Locale-SubCountry DEFAULT:Locale-SubCountry CPAN-DEFAULT
 * perl-Log-Contextual DEFAULT:Log-Contextual CPAN-DEFAULT
 * perl-Log-Dispatch-Config DEFAULT:Log-Dispatch-Config CPAN-DEFAULT
 * perl-Log-Handler DEFAULT:Log-Handler CPAN-DEFAULT
 * perl-Log-Log4perl DEFAULT:Log-Log4perl CPAN-DEFAULT
 * perl-Log-LogLite DEFAULT:Log-LogLite CPAN-DEFAULT
 * perl-Log-Message DEFAULT:Log-Message CPAN-DEFAULT
 * perl-Log-Message-Simple DEFAULT:Log-Message-Simple CPAN-DEFAULT
 * perl-Log-Report DEFAULT:Log-Report CPAN-DEFAULT
 * perl-Log-Report-Optional DEFAULT:Log-Report-Optional CPAN-DEFAULT
 * perl-LWP-Authen-Wsse DEFAULT:LWP-Authen-Wsse CPAN-DEFAULT
 * perl-LWP-Online DEFAULT:LWP-Online CPAN-DEFAULT
 * perl-LWP-Protocol-https DEFAULT:LWP-Protocol-https CPAN-DEFAULT
 * perl-Mail-MboxParser DEFAULT:Mail-MboxParser CPAN-DEFAULT
 * perl-Makefile-DOM DEFAULT:Makefile-DOM CPAN-DEFAULT
 * perl-Marpa-XS DEFAULT:Marpa-XS CPAN-DEFAULT
 * perl-Math-BaseCnv DEFAULT:Math-BaseCnv CPAN-DEFAULT
 * perl-Math-Clipper DEFAULT:Math-Clipper CPAN-DEFAULT
 * perl-Math-ConvexHull DEFAULT:Math-ConvexHull CPAN-DEFAULT
 * perl-Math-ConvexHull-MonotoneChain DEFAULT:Math-ConvexHull-MonotoneChain CPAN-DEFAULT
 * perl-Math-Factor-XS DEFAULT:Math-Factor-XS CPAN-DEFAULT
 * perl-Math-Geometry-Voronoi DEFAULT:Math-Geometry-Voronoi CPAN-DEFAULT
 * perl-Math-Libm DEFAULT:Math-Libm CPAN-DEFAULT
 * perl-Math-MatrixReal DEFAULT:Math-MatrixReal CPAN-DEFAULT
 * perl-Math-NumSeq DEFAULT:Math-NumSeq  CPAN-DEFAULT
 * perl-Math-PlanePath DEFAULT:Math-PlanePath  CPAN-DEFAULT
 * perl-Math-Prime-XS DEFAULT:Math-Prime-XS CPAN-DEFAULT
 * perl-Math-Random-MT-Auto DEFAULT:Math-Random-MT-Auto CPAN-DEFAULT
 * perl-Math-Symbolic DEFAULT:Math-Symbolic CPAN-DEFAULT
 * perl-Math-Vec DEFAULT:Math-Vec CPAN-DEFAULT
 * perl-Meta-Builder DEFAULT:Meta-Builder CPAN-DEFAULT
 * perl-MIME-Charset DEFAULT:MIME-Charset CPAN-DEFAULT
 * perl-MIME-EncWords DEFAULT:MIME-EncWords CPAN-DEFAULT
 * perl-MIME-Lite DEFAULT:MIME-Lite CPAN-DEFAULT
 * perl-MIME-Lite-HTML DEFAULT:MIME-Lite-HTML CPAN-DEFAULT
 * perl-ModelSim-List DEFAULT:ModelSim-List CPAN-DEFAULT
 * perl-Modern-Perl DEFAULT:Modern-Perl CPAN-DEFAULT
 * perl-Module-Build DEFAULT:Module-Build CPAN-DEFAULT
 * perl-Module-Build-WithXSpp DEFAULT:Module-Build-WithXSpp CPAN-DEFAULT
 * perl-Module-CPANTS-Analyse DEFAULT:Module-CPANTS-Analyse CPAN-DEFAULT
 * perl-Module-Depends DEFAULT:Module-Depends CPAN-DEFAULT
 * perl-Module-Extract DEFAULT:Module-Extract CPAN-DEFAULT
 * perl-Module-ExtractUse DEFAULT:Module-ExtractUse CPAN-DEFAULT
 * perl-Module-Inspector DEFAULT:Module-Inspector CPAN-DEFAULT
 * perl-Module-Install-AuthorRequires DEFAULT:Module-Install-AuthorRequires CPAN-DEFAULT
 * perl-Module-Install-AuthorTests DEFAULT:Module-Install-AuthorTests CPAN-DEFAULT
 * perl-Module-Install-AutoLicense DEFAULT:Module-Install-AutoLicense CPAN-DEFAULT
 * perl-Module-Install-AutoManifest DEFAULT:Module-Install-AutoManifest CPAN-DEFAULT
 * perl-Module-Install-ExtraTests DEFAULT:Module-Install-ExtraTests CPAN-DEFAULT
 * perl-Module-Install-GithubMeta DEFAULT:Module-Install-GithubMeta CPAN-DEFAULT
 * perl-Module-Install-ManifestSkip DEFAULT:Module-Install-ManifestSkip CPAN-DEFAULT
 * perl-Module-Install-ReadmeFromPod DEFAULT:Module-Install-ReadmeFromPod CPAN-DEFAULT
 * perl-Module-Install-ReadmeMarkdownFromPod DEFAULT:Module-Install-ReadmeMarkdownFromPod CPAN-DEFAULT
 * perl-Module-Install-Repository DEFAULT:Module-Install-Repository CPAN-DEFAULT
 * perl-Module-Install-XSUtil DEFAULT:Module-Install-XSUtil CPAN-DEFAULT
 * perl-Module-Load DEFAULT:Module-Load CPAN-DEFAULT
 * perl-Module-Load-Conditional DEFAULT:Module-Load-Conditional CPAN-DEFAULT
 * perl-Module-Manifest DEFAULT:Module-Manifest CPAN-DEFAULT
 * perl-Module-Manifest-Skip DEFAULT:Module-Manifest-Skip CPAN-DEFAULT
 * perl-Module-Math-Depends DEFAULT:Module-Math-Depends CPAN-DEFAULT
 * perl-Module-Package DEFAULT:Module-Package CPAN-DEFAULT
 * perl-Module-Pluggable DEFAULT:Module-Pluggable CPAN-DEFAULT
 * perl-Module-Reader DEFAULT:Module-Reader CPAN-DEFAULT
 * perl-Module-Runtime DEFAULT:Module-Runtime CPAN-DEFAULT
 * perl-Module-ScanDeps DEFAULT:Module-ScanDeps CPAN-DEFAULT
 * perl-Module-Signature DEFAULT:Module-Signature CPAN-DEFAULT
 * perl-Module-Starter DEFAULT:Module-Starter CPAN-DEFAULT
 * perl-Module-Versions-Report DEFAULT:Module-Versions-Report CPAN-DEFAULT
 * perl-MogileFS-Client DEFAULT:MogileFS-Client CPAN-DEFAULT
 * perl-MogileFS-Utils DEFAULT:MogileFS-Utils CPAN-DEFAULT
 * perl-mogilefs-server DEFAULT:mogilefs-server CPAN-DEFAULT
 * perl-Mon CPAN-DEFAULT CPAN-DEFAULT
 * perl-MongoDB DEFAULT:MongoDB CPAN-DEFAULT
 * perl-Monotone-AutomateStdio DEFAULT:Monotone-AutomateStdio CPAN-DEFAULT
 * perl-MooseX-AttributeShortcuts DEFAULT:MooseX-AttributeShortcuts CPAN-DEFAULT
 * perl-MooseX-CascadeClearing DEFAULT:MooseX-CascadeClearing CPAN-DEFAULT
 * perl-MooseX-CoercePerAttribute DEFAULT:MooseX-CoercePerAttribute CPAN-DEFAULT
 * perl-MooseX-GlobRef DEFAULT:MooseX-GlobRef CPAN-DEFAULT
 * perl-MooseX-MarkAsMethods DEFAULT:MooseX-MarkAsMethods CPAN-DEFAULT
 * perl-MooseX-Types-DateTime-ButMaintained DEFAULT:MooseX-Types-DateTime-ButMaintained CPAN-DEFAULT
 * perl-MooseX-Types-DateTime-MoreCoercions DEFAULT:MooseX-Types-DateTime-MoreCoercions CPAN-DEFAULT
 * perl-MooseX-Types-DateTimeX DEFAULT:MooseX-Types-DateTimeX CPAN-DEFAULT
 * perl-Mozilla-CA DEFAULT:Mozilla-CA CPAN-DEFAULT
 * perl-MP3-Info DEFAULT:MP3-Info CPAN-DEFAULT
 * perl-Nagios-Plugin DEFAULT:Nagios-Plugin CPAN-DEFAULT
 * perl-Nagios-Plugin-WWW-Mechanize DEFAULT:Nagios-Plugin-WWW-Mechanize CPAN-DEFAULT
 * perl-NetAddr-IP DEFAULT:NetAddr-IP CPAN-DEFAULT
 * perl-Net-Amazon-EC2 CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-Amazon-EC2-Metadata CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-ARP DEFAULT:Net-ARP CPAN-DEFAULT
 * perl-Net-CUPS DEFAULT:Net-CUPS CPAN-DEFAULT
 * perl-Net-DBus DEFAULT:Net-DBus CPAN-DEFAULT
 * perl-Net-DBus-GLib DEFAULT:Net-DBus-GLib CPAN-DEFAULT
 * perl-Net-DNS DEFAULT:Net-DNS CPAN-DEFAULT
 * perl-Net-Dropbox-API DEFAULT:Net-Dropbox-API CPAN-DEFAULT
 * perl-Net-eBay DEFAULT:Net-eBay CPAN-DEFAULT
 * perl-Net-GitHub DEFAULT:Net-GitHub CPAN-DEFAULT
 * perl-Net-Google-AuthSub DEFAULT:Net-Google-AuthSub CPAN-DEFAULT
 * perl-Net-HTTP DEFAULT:Net-HTTP CPAN-DEFAULT
 * perl-Net-IP DEFAULT:Net-IP CPAN-DEFAULT
 * perl-Net-IP-Minimal DEFAULT:Net-IP-Minimal CPAN-DEFAULT
 * perl-Net-IRC DEFAULT:Net-IRC CPAN-DEFAULT
 * perl-Net-Jabber DEFAULT:Net-Jabber CPAN-DEFAULT
 * perl-Net-Lite-FTP DEFAULT:Net-Lite-FTP CPAN-DEFAULT
 * perl-Net-Patricia DEFAULT:Net-Patricia CPAN-DEFAULT
 * perl-Net-Random DEFAULT:Net-Random CPAN-DEFAULT
 * perl-Net-Server-Coro DEFAULT:Net-Server-Coro CPAN-DEFAULT:Net-Server-Coro
 * perl-Net-SMTP-SSL DEFAULT:Net-SMTP-SSL CPAN-DEFAULT
 * perl-Net-SSH2 DEFAULT:Net-SSH2 CPAN-DEFAULT
 * perl-Net-Stomp CPAN-DEFAULT CPAN-DEFAULT
 * perl-Net-Twitter DEFAULT:Net-Twitter CPAN-DEFAULT
 * perl-Net-Whois DEFAULT:Net-Whois CPAN-DEFAULT
 * perl-Net-Whois-IP DEFAULT:Net-Whois-IP CPAN-DEFAULT
 * perl-Net-XMPP DEFAULT:Net-XMPP CPAN-DEFAULT
 * perl-Number-WithError DEFAULT:Number-WithError CPAN-DEFAULT
 * perl-Object-Deadly DEFAULT:Object-Deadly CPAN-DEFAULT
 * perl-Object-InsideOut DEFAULT:Object-InsideOut CPAN-DEFAULT
 * perl-Object-Tiny DEFAULT:Object-Tiny CPAN-DEFAULT
 * perl-Olson-Abbreviations DEFAULT:Olson-Abbreviations CPAN-DEFAULT
 * perl-OpenGL CPAN-DEFAULT CPAN-DEFAULT
 * perl-OpenOffice-UNO CPAN-DEFAULT CPAN-DEFAULT
 * perl-ORLite DEFAULT:ORLite CPAN-DEFAULT
 * perl-ORLite-Migrate DEFAULT:ORLite-Migrate CPAN-DEFAULT
 * perl-Ouch DEFAULT:Ouch CPAN-DEFAULT
 * perl-Padre DEFAULT:Padre CPAN-DEFAULT
 * perl-Paper-Specs DEFAULT:Paper-Specs CPAN-DEFAULT
 * perl-PAR DEFAULT:PAR CPAN-DEFAULT
 * perl-PAR-Packer DEFAULT:PAR-Packer CPAN-DEFAULT
 * perl-Params-Check DEFAULT:Params-Check CPAN-DEFAULT
 * perl-Parse-ErrorString-Perl DEFAULT:Parse-ErrorString-Perl CPAN-DEFAULT
 * perl-Parse-ExuberantCTags DEFAULT:Parse-ExuberantCTags CPAN-DEFAULT
 * perl-Parse-RecDescent DEFAULT:Parse-RecDescent CPAN-DEFAULT
 * perl-Parse-Yapp DEFAULT:Parse-Yapp CPAN-DEFAULT
 * perl-PathTools DEFAULT:PathTools CPAN-DEFAULT
 * perl-Path-FindDev DEFAULT:Path-FindDev CPAN-DEFAULT
 * perl-Path-IsDev DEFAULT:Path-IsDev CPAN-DEFAULT
 * perl-PDF-API2 DEFAULT:PDF-API2 CPAN-DEFAULT
 * perl-PDF-Haru DEFAULT:PDF-Haru CPAN-DEFAULT
 * perl-PDF-Reuse DEFAULT:PDF-Reuse CPAN-DEFAULT
 * perl-PDL DEFAULT:PDL CPAN-DEFAULT
 * perl-PDL-Graphics-PLplot DEFAULT:PDL-Graphics-PLplot CPAN-DEFAULT
 * perl-Perlilog DEFAULT:Perlilog CPAN-DEFAULT
 * perl-Perlbal-XS-HTTPHeaders DEFAULT:Perlbal-XS-HTTPHeaders CPAN-DEFAULT
 * perl-Perl-Critic DEFAULT:Perl-Critic CPAN-DEFAULT
 * perl-Perl-Critic-Bangs DEFAULT:Perl-Critic-Bangs CPAN-DEFAULT
 * perl-Perl-Critic-Compatibility DEFAULT:Perl-Critic-Compatibility CPAN-DEFAULT
 * perl-Perl-Critic-Deprecated DEFAULT:Perl-Critic-Deprecated CPAN-DEFAULT
 * perl-Perl-Critic-Dynamic DEFAULT:Perl-Critic-Dynamic CPAN-DEFAULT
 * perl-Perl-Critic-Lax DEFAULT:Perl-Critic-Lax CPAN-DEFAULT
 * perl-Perl-Critic-More DEFAULT:Perl-Critic-More CPAN-DEFAULT
 * perl-Perl-Critic-Nits DEFAULT:Perl-Critic-Nits CPAN-DEFAULT
 * perl-Perl-Critic-PetPeeves-JTRAMMELL DEFAULT:Perl-Critic-PetPeeves-JTRAMMELL CPAN-DEFAULT
 * perl-Perl-Critic-Pulp DEFAULT:Perl-Critic-Pulp CPAN-DEFAULT
 * perl-Perl-Critic-Storable DEFAULT:Perl-Critic-Storable CPAN-DEFAULT
 * perl-Perl-Critic-StricterSubs DEFAULT:Perl-Critic-StricterSubs CPAN-DEFAULT
 * perl-Perl-Critic-Swift DEFAULT:Perl-Critic-Swift CPAN-DEFAULT
 * perl-Perl-Critic-Tics DEFAULT:Perl-Critic-Tics CPAN-DEFAULT
 * perl-Perl-Metrics-Simple DEFAULT:Perl-Metrics-Simple CPAN-DEFAULT
 * perl-Perl6-Slurp DEFAULT:Perl6-Slurp CPAN-DEFAULT
 * perl-perlindex DEFAULT:perlindex CPAN-DEFAULT
 * perl-PerlIO-eol DEFAULT:PerlIO-eol CPAN-DEFAULT
 * perl-PerlIO-Layers DEFAULT:PerlIO-Layers CPAN-DEFAULT
 * perl-PerlIO-locale DEFAULT:PerlIO-locale CPAN-DEFAULT
 * perl-PerlIO-utf8_strict DEFAULT:PerlIO-utf8_strict CPAN-DEFAULT
 * perl-PerlIO-via-dynamic DEFAULT:PerlIO-via-dynamic CPAN-DEFAULT
 * perl-PerlIO-via-symlink DEFAULT:PerlIO-via-symlink CPAN-DEFAULT
 * perl-pip DEFAULT:pip CPAN-DEFAULT
 * perl-Plack-Middleware-Deflater DEFAULT:Plack-Middleware-Deflater CPAN-DEFAULT
 * perl-PlRPC DEFAULT:PlRPC CPAN-DEFAULT
 * perl-Pod-Abstract DEFAULT:Pod-Abstract CPAN-DEFAULT
 * perl-Pod-Checker DEFAULT:Pod-Checker CPAN-DEFAULT
 * perl-Pod-Coverage DEFAULT:Pod-Coverage CPAN-DEFAULT
 * perl-Pod-LaTeX DEFAULT:Pod-LaTeX CPAN-DEFAULT
 * perl-Pod-Markdown DEFAULT:Pod-Markdown CPAN-DEFAULT
 * perl-Pod-MinimumVersion DEFAULT:Pod-MinimumVersion CPAN-DEFAULT
 * perl-Pod-Parser DEFAULT:Pod-Parser CPAN-DEFAULT
 * perl-Pod-Perldoc DEFAULT:Pod-Perldoc CPAN-DEFAULT
 * perl-Pod-Simple DEFAULT:Pod-Simple CPAN-DEFAULT
 * perl-Pod-Spell DEFAULT:Pod-Spell CPAN-DEFAULT
 * perl-Pod-Spell-CommonMistakes DEFAULT:Pod-Spell-CommonMistakes CPAN-DEFAULT
 * perl-Pod-Strip DEFAULT:Pod-Strip CPAN-DEFAULT
 * perl-Pod-Usage DEFAULT:Pod-Usage CPAN-DEFAULT
 * perl-pod2pdf DEFAULT:pod2pdf CPAN-DEFAULT
 * perl-POD2-Base DEFAULT:POD2-Base CPAN-DEFAULT
 * perl-podlators DEFAULT:podlators CPAN-DEFAULT
 * perl-podlinkcheck DEFAULT:podlinkcheck CPAN-DEFAULT
 * perl-POE DEFAULT:POE CPAN-DEFAULT
 * perl-POE-API-Peek DEFAULT:POE-API-Peek CPAN-DEFAULT
 * perl-POE-Component-Child DEFAULT:POE-Component-Child CPAN-DEFAULT
 * perl-POE-Component-Client-DNS DEFAULT:POE-Component-Client-DNS CPAN-DEFAULT
 * perl-POE-Component-Client-HTTP DEFAULT:POE-Component-Client-HTTP CPAN-DEFAULT
 * perl-POE-Component-Client-Keepalive DEFAULT:POE-Component-Client-Keepalive CPAN-DEFAULT
 * perl-POE-Component-Client-LDAP DEFAULT:POE-Component-Client-LDAP CPAN-DEFAULT
 * perl-POE-Component-DBIAgent DEFAULT:POE-Component-DBIAgent CPAN-DEFAULT
 * perl-POE-Component-IRC DEFAULT:POE-Component-IRC CPAN-DEFAULT
 * perl-POE-Component-JobQueue DEFAULT:POE-Component-JobQueue CPAN-DEFAULT
 * perl-POE-Component-Logger DEFAULT:POE-Component-Logger CPAN-DEFAULT
 * perl-POE-Component-Pluggable DEFAULT:POE-Component-Pluggable CPAN-DEFAULT
 * perl-POE-Component-Resolver DEFAULT:POE-Component-Resolver CPAN-DEFAULT
 * perl-POE-Component-Server-HTTP DEFAULT:POE-Component-Server-HTTP CPAN-DEFAULT
 * perl-POE-Component-Server-SimpleHTTP DEFAULT:POE-Component-Server-SimpleHTTP CPAN-DEFAULT
 * perl-POE-Component-Server-SOAP DEFAULT:POE-Component-Server-SOAP CPAN-DEFAULT
 * perl-POE-Component-Server-XMLRPC DEFAULT:POE-Component-Server-XMLRPC CPAN-DEFAULT
 * perl-POE-Component-SimpleDBI DEFAULT:POE-Component-SimpleDBI CPAN-DEFAULT
 * perl-POE-Component-SimpleLog DEFAULT:POE-Component-SimpleLog CPAN-DEFAULT
 * perl-POE-Component-SNMP DEFAULT:POE-Component-SNMP CPAN-DEFAULT
 * perl-POE-Component-SSLify DEFAULT:POE-Component-SSLify CPAN-DEFAULT
 * perl-POE-Filter-HTTP-Parser DEFAULT:POE-Filter-HTTP-Parser CPAN-DEFAULT
 * perl-POE-Filter-IRCD DEFAULT:POE-Filter-IRCD CPAN-DEFAULT
 * perl-POE-Filter-Zlib DEFAULT:POE-Filter-Zlib CPAN-DEFAULT
 * perl-POE-Test-Loops DEFAULT:POE-Test-Loops CPAN-DEFAULT
 * perl-POE-Wheel-Null DEFAULT:POE-Wheel-Null CPAN-DEFAULT
 * perl-POSIX-AtFork DEFAULT:POSIX-AtFork CPAN-DEFAULT
 * perl-POSIX-strptime CPAN-DEFAULT CPAN-DEFAULT
 * perl-PPI-PowerToys DEFAULT:PPI-PowerToys CPAN-DEFAULT
 * perl-PPI-XS DEFAULT:PPI-XS CPAN-DEFAULT
 * perl-PPIx-EditorTools DEFAULT:PPIx-EditorTools CPAN-DEFAULT
 * perl-PPIx-Regexp DEFAULT:PPIx-Regexp CPAN-DEFAULT
 * perl-Probe-Perl DEFAULT:Probe-Perl CPAN-DEFAULT
 * perl-Proc-SyncExec DEFAULT:Proc-SyncExec CPAN-DEFAULT
 * perl-re-engine-PCRE DEFAULT:re-engine-PCRE CPAN-DEFAULT
 * perl-Regexp-Grammars DEFAULT:Regexp-Grammars CPAN-DEFAULT
 * perl-Regexp-Shellish DEFAULT:Regexp-Shellish CPAN-DEFAULT
 * perl-Rose-DB DEFAULT:Rose-DB CPAN-DEFAULT
 * perl-Rose-DB-Object DEFAULT:Rose-DB-Object CPAN-DEFAULT
 * perl-Rose-Object DEFAULT:Rose-Object CPAN-DEFAULT
 * perl-Rose-DateTime DEFAULT:Rose-DateTime CPAN-DEFAULT
 * perl-RPC-XML DEFAULT:RPC-XML CPAN-DEFAULT
 * perl-rpm-build-perl DEFAULT:rpm-build-perl CPAN-DEFAULT
 * perl-RPM-Specfile DEFAULT:RPM-Specfile CPAN-DEFAULT
 * perl-RPM-VersionCompare RPM-VersionCompare-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/RPM-VersionCompare/
 * perl-RPM2 DEFAULT:RPM2 CPAN-DEFAULT
 * perl-RT-Client-REST DEFAULT:RT-Client-REST CPAN-DEFAULT
 * perl-Scalar-Construct DEFAULT:Scalar-Construct CPAN-DEFAULT
 * perl-Scriptalicious DEFAULT:Scriptalicious CPAN-DEFAULT
 * perl-Set-Array DEFAULT:Set-Array CPAN-DEFAULT
 * perl-Set-IntSpan DEFAULT:Set-IntSpan CPAN-DEFAULT
 * perl-SGML-Parser-OpenSP DEFAULT:SGML-Parser-OpenSP CPAN-DEFAULT
 * perl-Shipwright DEFAULT:Shipwright CPAN-DEFAULT
 * perl-Smart-Comments DEFAULT:Smart-Comments CPAN-DEFAULT
 * perl-smartmatch DEFAULT:smartmatch CPAN-DEFAULT
 * perl-smartmatch-engine-core DEFAULT:smartmatch-engine-core CPAN-DEFAULT
 * perl-SNMP-Info DEFAULT:SNMP-Info CPAN-DEFAULT
 * perl-SOAP-Lite DEFAULT:SOAP-Lite CPAN-DEFAULT
 * perl-Socket DEFAULT:Socket CPAN-DEFAULT
 * perl-Socket6 DEFAULT:Socket6 CPAN-DEFAULT
 * perl-Socket-MsgHdr DEFAULT:Socket-MsgHdr CPAN-DEFAULT
 * perl-Socket-Netlink DEFAULT:Socket-Netlink CPAN-DEFAULT:Socket-Netlink
 * perl-Socket-Netlink-Route DEFAULT:Socket-Netlink-Route CPAN-DEFAULT:Socket-Netlink-Route
 * perl-Software-License DEFAULT:Software-License CPAN-DEFAULT
 * perl-SOOT DEFAULT:SOOT CPAN-DEFAULT
 * perl-Sort-Naturally DEFAULT:Sort-Naturally CPAN-DEFAULT
 * perl-Spellunker DEFAULT:Spellunker CPAN-DEFAULT
 * perl-Spreadsheet-ParseExcel-Simple DEFAULT:Spreadsheet-ParseExcel-Simple CPAN-DEFAULT
 * perl-Spreadsheet-WriteExcel-Simple DEFAULT:Spreadsheet-WriteExcel-Simple CPAN-DEFAULT
 * perl-SQL-Library DEFAULT:SQL-Library CPAN-DEFAULT
 * perl-SQL-ReservedWords DEFAULT:SQL-ReservedWords CPAN-DEFAULT
 * perl-SQL-Shell DEFAULT:SQL-Shell CPAN-DEFAULT
 * perl-SQL-Statement DEFAULT:SQL-Statement CPAN-DEFAULT
 * perl-Statistics-Basic DEFAULT:Statistics-Basic CPAN-DEFAULT
 * perl-Statistics-CaseResampling DEFAULT:Statistics-CaseResampling CPAN-DEFAULT
 * perl-Statistics-Contingency DEFAULT:Statistics-Contingency CPAN-DEFAULT:Statistics-Contingency
 * perl-STD DEFAULT:STD CPAN-DEFAULT
 * perl-Storable DEFAULT:Storable CPAN-DEFAULT
 * perl-Storm DEFAULT:Storm CPAN-DEFAULT
 * perl-String-Base DEFAULT:String-Base CPAN-DEFAULT
 * perl-String-CRC32 DEFAULT:String-CRC32 CPAN-DEFAULT
 * perl-String-Escape DEFAULT:String-Escape CPAN-DEFAULT
 * perl-Sub-Install DEFAULT:Sub-Install CPAN-DEFAULT
 * perl-SVK DEFAULT:SVK CPAN-DEFAULT
 * perl-syntax DEFAULT:syntax CPAN-DEFAULT
 * perl-Syntax-Feature-Loop DEFAULT:Syntax-Feature-Loop CPAN-DEFAULT
 * perl-Syntax-Highlight-Engine-Kate DEFAULT:Syntax-Highlight-Engine-Kate CPAN-DEFAULT
 * perl-Syntax-Highlight-Perl6 DEFAULT:Syntax-Highlight-Perl6 CPAN-DEFAULT
 * perl-Syntax-Keyword-Junction DEFAULT:Syntax-Keyword-Junction CPAN-DEFAULT
 * perl-Sys-Syscall DEFAULT:Sys-Syscall CPAN-DEFAULT
 * perl-Sys-Syslog DEFAULT:Sys-Syslog CPAN-DEFAULT
 * perl-Sys-Virt DEFAULT:Sys-Virt CPAN-DEFAULT
 * perl-SystemC-Vregs DEFAULT:SystemC-Vregs CPAN-DEFAULT
 * perl-TAP-Formatter-HTML DEFAULT:TAP-Formatter-HTML CPAN-DEFAULT
 * perl-TAP-Formatter-JUnit DEFAULT:TAP-Formatter-JUnit CPAN-DEFAULT
 * perl-TAP-SimpleOutput DEFAULT:TAP-SimpleOutput CPAN-DEFAULT
 * perl-Tapper DEFAULT:Tapper CPAN-DEFAULT
 * perl-Task-Kensho-Exceptions DEFAULT:Task-Kensho-Exceptions CPAN-DEFAULT
 * perl-Task-Kensho-Logging DEFAULT:Task-Kensho-Logging CPAN-DEFAULT
 * perl-Task-Kensho-OOP DEFAULT:Task-Kensho-OOP CPAN-DEFAULT
 * perl-Task-Kensho-Toolchain DEFAULT:Task-Kensho-Toolchain CPAN-DEFAULT
 * perl-Task-Moose DEFAULT:Task-Moose CPAN-DEFAULT
 * perl-Task-Perl-Critic DEFAULT:Task-Perl-Critic CPAN-DEFAULT
 * perl-Template-Alloy DEFAULT:Template-Alloy CPAN-DEFAULT
 * perl-Template-Tiny DEFAULT:Template-Tiny CPAN-DEFAULT
 * perl-TermReadKey DEFAULT:TermReadKey CPAN-DEFAULT
 * perl-Term-Completion DEFAULT:Term-Completion CPAN-DEFAULT
 * perl-Term-ProgressBar DEFAULT:Term-ProgressBar CPAN-DEFAULT
 * perl-Term-ProgressBar-Quiet DEFAULT:Term-ProgressBar-Quiet CPAN-DEFAULT
 * perl-Term-ProgressBar-Simple DEFAULT:Term-ProgressBar-Simple CPAN-DEFAULT
 * perl-Term-ReadLine-Perl DEFAULT:Term-ReadLine-Perl CPAN-DEFAULT
 * perl-Term-Size DEFAULT:Term-Size CPAN-DEFAULT
 * perl-Term-UI DEFAULT:Term-UI CPAN-DEFAULT
 * perl-Test-Able DEFAULT:Test-Able CPAN-DEFAULT
 * perl-Test-Able-Runner DEFAULT:Test-Able-Runner CPAN-DEFAULT
 * perl-Test-Apocalypse DEFAULT:Test-Apocalypse CPAN-DEFAULT
 * perl-Test-AutoBuild DEFAULT:Test-AutoBuild CPAN-DEFAULT
 * perl-Test-AutoLoader DEFAULT:Test-AutoLoader CPAN-DEFAULT
 * perl-Test-Block DEFAULT:Test-Block CPAN-DEFAULT
 * perl-Test-Class DEFAULT:Test-Class CPAN-DEFAULT
 * perl-Test-Compile DEFAULT:Test-Compile CPAN-DEFAULT
 * perl-Test-Dependencies DEFAULT:Test-Dependencies CPAN-DEFAULT
 * perl-Test-DBICSchemaLoaderDigest DEFAULT:Test-DBICSchemaLoaderDigest CPAN-DEFAULT
 * perl-Test-Dir DEFAULT:Test-Dir CPAN-DEFAULT
 * perl-Test-DistManifest DEFAULT:Test-DistManifest CPAN-DEFAULT
 * perl-Test-Email DEFAULT:Test-Email CPAN-DEFAULT
 * perl-Test-Harness DEFAULT:Test-Harness CPAN-DEFAULT
 * perl-Test-Harness-Straps DEFAULT:Test-Harness-Straps CPAN-DEFAULT
 * perl-Test-HexString DEFAULT:Test-HexString CPAN-DEFAULT:Test-HexString
 * perl-Test-Inter DEFAULT:Test-Inter CPAN-DEFAULT
 * perl-Test-LectroTest DEFAULT:Test-LectroTest CPAN-DEFAULT
 * perl-Test-Mock-LWP DEFAULT:Test-Mock-LWP CPAN-DEFAULT
 * perl-Test-Module-Used DEFAULT:Test-Module-Used CPAN-DEFAULT
 * perl-Test-Moose-More DEFAULT:Test-Moose-More CPAN-DEFAULT
 * perl-Test-Most DEFAULT:Test-Most CPAN-DEFAULT
 * perl-Test-NeedsDisplay DEFAULT:Test-NeedsDisplay CPAN-DEFAULT
 * perl-Test-NoBreakpoints DEFAULT:Test-NoBreakpoints CPAN-DEFAULT
 * perl-Test-NoPlan DEFAULT:Test-NoPlan CPAN-DEFAULT
 * perl-Test-Output DEFAULT:Test-Output CPAN-DEFAULT
 * perl-Test-Perl-Critic-Progressive DEFAULT:Test-Perl-Critic-Progressive CPAN-DEFAULT
 * perl-Test-Pod DEFAULT:Test-Pod CPAN-DEFAULT
 * perl-Test-Pod-Coverage DEFAULT:Test-Pod-Coverage CPAN-DEFAULT
 * perl-Test-Pod-LinkCheck DEFAULT:Test-Pod-LinkCheck CPAN-DEFAULT
 * perl-Test-Pod-No404s DEFAULT:Test-Pod-No404s CPAN-DEFAULT
 * perl-Test-Pod-Spelling-CommonMistakes DEFAULT:Test-Pod-Spelling-CommonMistakes CPAN-DEFAULT
 * perl-Test-POE-Client-TCP DEFAULT:Test-POE-Client-TCP CPAN-DEFAULT
 * perl-Test-Prereq DEFAULT:Test-Prereq CPAN-DEFAULT
 * perl-Test-Refcount DEFAULT:Test-Refcount CPAN-DEFAULT
 * perl-Test-Reporter DEFAULT:Test-Reporter CPAN-DEFAULT
 * perl-Test-Smoke DEFAULT:Test-Smoke CPAN-DEFAULT
 * perl-Test-Strict DEFAULT:Test-Strict CPAN-DEFAULT
 * perl-Test-Trap DEFAULT:Test-Trap CPAN-DEFAULT
 * perl-Test-Unit DEFAULT:Test-Unit CPAN-DEFAULT
 * perl-Test-Unit-Runner-Xml DEFAULT:Test-Unit-Runner-Xml CPAN-DEFAULT
 * perl-Test-UseAllModules DEFAULT:Test-UseAllModules CPAN-DEFAULT
 * perl-Test-Warn DEFAULT:Test-Warn CPAN-DEFAULT
 * perl-Test-WWW-Selenium DEFAULT:Test-WWW-Selenium CPAN-DEFAULT
 * perl-Test-YAML-Meta DEFAULT:Test-YAML-Meta CPAN-DEFAULT
 * perl-Test-YAML-Valid DEFAULT:Test-YAML-Valid CPAN-DEFAULT
 * perl-Text-Aligner DEFAULT:Text-Aligner CPAN-DEFAULT
 * perl-Text-ASCIITable DEFAULT:Text-ASCIITable CPAN-DEFAULT
 * perl-Text-CHM DEFAULT:Text-CHM CPAN-DEFAULT
 * perl-Text-CSV DEFAULT:Text-CSV CPAN-DEFAULT
 * perl-Text-CSV_XS DEFAULT:Text-CSV_XS CPAN-DEFAULT
 * perl-Text-Diff DEFAULT:Text-Diff CPAN-DEFAULT
 * perl-Text-FindIndent DEFAULT:Text-FindIndent CPAN-DEFAULT
 * perl-Text-Format DEFAULT:Text-Format CPAN-DEFAULT
 * perl-Text-vFile-asData DEFAULT:Text-vFile-asData CPAN-DEFAULT
 * perl-Text-Iconv DEFAULT:Text-Iconv CPAN-DEFAULT
 * perl-Text-ParseWords DEFAULT:Text-ParseWords CPAN-DEFAULT
 * perl-Text-Password-Pronounceable DEFAULT:Text-Password-Pronounceable CPAN-DEFAULT
 * perl-Text-PDF DEFAULT:Text-PDF CPAN-DEFAULT
 * perl-Text-RecordParser DEFAULT:Text-RecordParser CPAN-DEFAULT
 * perl-Text-SimpleTable DEFAULT:Text-SimpleTable CPAN-DEFAULT
 * perl-Text-Smart DEFAULT:Text-Smart CPAN-DEFAULT
 * perl-Text-Smart-Plugin DEFAULT:Text-Smart-Plugin CPAN-DEFAULT
 * perl-Text-Soundex DEFAULT:Text-Soundex CPAN-DEFAULT
 * perl-Text-Table DEFAULT:Text-Table CPAN-DEFAULT
 * perl-Text-TabularDisplay DEFAULT:Text-TabularDisplay CPAN-DEFAULT
 * perl-Text-Tree DEFAULT:Text-Tree CPAN-DEFAULT
 * perl-Text-Unidecode DEFAULT:Text-Unidecode CPAN-DEFAULT
 * perl-Text-VimColor DEFAULT:Text-VimColor CPAN-DEFAULT
 * perl-Text-Xslate DEFAULT:Text-Xslate CPAN-DEFAULT
 * perl-Thread-Queue DEFAULT:Thread-Queue CPAN-DEFAULT
 * perl-threads DEFAULT:threads CPAN-DEFAULT
 * perl-threads-tbb DEFAULT:threads-tbb CPAN-DEFAULT
 * perl-threads-lite DEFAULT:threads-lite CPAN-DEFAULT
 * perl-threads-shared DEFAULT:threads-shared CPAN-DEFAULT
 * perl-Tie-Function DEFAULT:Tie-Function CPAN-DEFAULT
 * perl-TimeDate DEFAULT:TimeDate CPAN-DEFAULT
 * perl-Time-Clock DEFAULT:Time-Clock CPAN-DEFAULT
 * perl-Time-Duration DEFAULT:Time-Duration CPAN-DEFAULT
 * perl-Time-HiRes DEFAULT:Time-HiRes CPAN-DEFAULT
 * perl-Time-Local DEFAULT:Time-Local CPAN-DEFAULT
 * perl-Time-modules DEFAULT:Time-modules CPAN-DEFAULT
 * perl-Time-Progress DEFAULT:Time-Progress CPAN-DEFAULT
 * perl-Tk DEFAULT:Tk CPAN-DEFAULT
 * perl-Tk-Canvas-GradientColor DEFAULT:Tk-Canvas-GradientColor CPAN-DEFAULT
 * perl-Tk-ColoredButton DEFAULT:Tk-ColoredButton CPAN-DEFAULT
 * perl-Tk-EntryCheck DEFAULT:Tk-EntryCheck CPAN-DEFAULT
 * perl-Tk-Getopt DEFAULT:Tk-Getopt CPAN-DEFAULT
 * perl-Tk-GraphViz CPAN-DEFAULT CPAN-DEFAULT
 * perl-Tk-Pod DEFAULT:Tk-Pod CPAN-DEFAULT
 * perl-Tk-Text-SuperText CPAN-DEFAULT CPAN-DEFAULT
 * perl-TryCatch DEFAULT:TryCatch CPAN-DEFAULT
 * perl-Twiggy DEFAULT:Twiggy CPAN-DEFAULT
 * perl-Unicode-Casing DEFAULT:Unicode-Casing CPAN-DEFAULT
 * perl-UNIVERSAL-ref DEFAULT:UNIVERSAL-ref CPAN-DEFAULT
 * perl-URI DEFAULT:URI CPAN-DEFAULT
 * perl-URI-Find-Simple DEFAULT:URI-Find-Simple CPAN-DEFAULT
 * perl-URI-Title DEFAULT:URI-Title CPAN-DEFAULT
 * perl-User DEFAULT:User CPAN-DEFAULT
 * perl-utf8-all DEFAULT:utf8-all CPAN-DEFAULT
 * perl-UUID-Tiny DEFAULT:UUID-Tiny CPAN-DEFAULT
 * perl-Verilog-CodeGen DEFAULT:Verilog-CodeGen CPAN-DEFAULT
 * perl-Verilog-Perl Verilog-Perl-(.*?).tar.gz http://cpan.mirror.clemson.edu/authors/id/W/WS/WSNYDER/
 * perl-Verilog-Readmem DEFAULT:Verilog-Readmem CPAN-DEFAULT
 * perl-WebService-Linode DEFAULT:WebService-Linode CPAN-DEFAULT
 * perl-WebService-Rajce DEFAULT:WebService-Rajce CPAN-DEFAULT
 * perl-WebService-Validator-CSS-W3C DEFAULT:WebService-Validator-CSS-W3C CPAN-DEFAULT
 * perl-WebService-Validator-HTML-W3C DEFAULT:WebService-Validator-HTML-W3C CPAN-DEFAULT
 * perl-WWW-Curl DEFAULT:WWW-Curl CPAN-DEFAULT
 * perl-WWW-GoodData CPAN-DEFAULT CPAN-DEFAULT
 * perl-WWW-Google-Contacts DEFAULT:WWW-Google-Contacts CPAN-DEFAULT
 * perl-WWW-OrangeHRM-Client WWW-OrangeHRM-Client-v([^-/_\s]+)\.tar\b http://ppisar.fedorapeople.org/WWW-OrangeHRM-Client/
 * perl-WWW-RobotRules DEFAULT:WWW-RobotRules CPAN-DEFAULT
 * perl-WWW-Salesforce CPAN-DEFAULT CPAN-DEFAULT
 * perl-WWW-Search DEFAULT:WWW-Search CPAN-DEFAULT
 * perl-WWW-Shorten DEFAULT:WWW-Shorten CPAN-DEFAULT
 * perl-WWW-Splunk CPAN-DEFAULT CPAN-DEFAULT
 * perl-Wx DEFAULT:Wx CPAN-DEFAULT
 * perl-Wx-GLCanvas  DEFAULT:Wx-GLCanvas  CPAN-DEFAULT
 * perl-Wx-Perl-DataWalker DEFAULT:Wx-Perl-DataWalker CPAN-DEFAULT
 * perl-Wx-Perl-ProcessStream DEFAULT:Wx-Perl-ProcessStream CPAN-DEFAULT
 * perl-X11-Protocol-Other DEFAULT:X11-Protocol-Other CPAN-DEFAULT
 * perl-XML-Bare DEFAULT:XML-Bare CPAN-DEFAULT
 * perl-XML-Catalog DEFAULT:XML-Catalog CPAN-DEFAULT
 * perl-XML-DifferenceMarkup DEFAULT:XML-DifferenceMarkup CPAN-DEFAULT
 * perl-XML-DTDParser DEFAULT:XML-DTDParser CPAN-DEFAULT
 * perl-XML-Dumper DEFAULT:XML-Dumper CPAN-DEFAULT
 * perl-XML-Generator DEFAULT:XML-Generator CPAN-DEFAULT
 * perl-XML-Generator-DBI DEFAULT:XML-Generator-DBI CPAN-DEFAULT
 * perl-XML-Grove DEFAULT:XML-Grove CPAN-DEFAULT
 * perl-XML-Handler-YAWriter DEFAULT:XML-Handler-YAWriter CPAN-DEFAULT
 * perl-XML-Hash-LX DEFAULT:XML-Hash-LX CPAN-DEFAULT
 * perl-XML-LibXML DEFAULT:XML-LibXML CPAN-DEFAULT
 * perl-XML-LibXSLT DEFAULT:XML-LibXSLT CPAN-DEFAULT
 * perl-XML-Merge DEFAULT:XML-Merge CPAN-DEFAULT
 * perl-XML-NamespaceSupport DEFAULT:XML-NamespaceSupport CPAN-DEFAULT
 * perl-XML-Parser DEFAULT:XML-Parser CPAN-DEFAULT
 * perl-XML-Parser-Lite-Tree DEFAULT:XML-Parser-Lite-Tree CPAN-DEFAULT
 * perl-XML-Rules DEFAULT:XML-Rules CPAN-DEFAULT
 * perl-XML-SAX DEFAULT:XML-SAX CPAN-DEFAULT
 * perl-XML-SAX-ExpatXS DEFAULT:XML-SAX-ExpatXS CPAN-DEFAULT
 * perl-XML-Simple DEFAULT:XML-Simple CPAN-DEFAULT
 * perl-XML-Simple-DTDReader DEFAULT:XML-Simple-DTDReader CPAN-DEFAULT
 * perl-XML-Stream DEFAULT:XML-Stream CPAN-DEFAULT
 * perl-XML-Tidy DEFAULT:XML-Tidy CPAN-DEFAULT
 * perl-XML-Tiny DEFAULT:XML-Tiny CPAN-DEFAULT
 * perl-XML-Twig DEFAULT:XML-Twig CPAN-DEFAULT
 * perl-XML-Writer DEFAULT:XML-Writer CPAN-DEFAULT
 * perl-XML-XPath DEFAULT:XML-XPath CPAN-DEFAULT
 * perl-XXX DEFAULT:XXX CPAN-DEFAULT
 * perl-YAML DEFAULT:YAML CPAN-DEFAULT
 * perl-YAML-LibYAML DEFAULT:YAML-LibYAML CPAN-DEFAULT
 * perl-YAML-Tiny DEFAULT:YAML-Tiny CPAN-DEFAULT
 * perl-YUM-RepoQuery DEFAULT:YUM-RepoQuery CPAN-DEFAULT
 * perl-v6 DEFAULT:v6 CPAN-DEFAULT
 * perl-version DEFAULT:version CPAN-DEFAULT
 * perlbrew DEFAULT:App-perlbrew CPAN-DEFAULT:App-perlbrew
 * perltidy DEFAULT:Perl-Tidy CPAN-DEFAULT:Perl-Tidy

PF - PX

 * pg_journal archive/v(.*?)\.zip https://github.com/intgr/pg_journal/tags
 * pg_top DEFAULT http://pgfoundry.org/frs/?group_id=1000300
 * pgpdump DEFAULT http://www.mew.org/~kazu/proj/pgpdump/en/
 * php-Assetic (\d[\.\d]+)\.tar\.gz https://github.com/kriswallsmith/assetic/tags
 * php-deepend-Mockery Mockery\s([\d\.]+)+\s\(stable\) http://pear.survivethedeepend.com/feed.xml
 * php-doctrine-Doctrine Doctrine\s([\d\.]+)+\s\(stable\) http://pear.doctrine-project.org/feed.xml
 * php-doctrine-annotations (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/annotations/tags
 * php-doctrine-cache (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/cache/tags
 * php-doctrine-collections (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/collections/tags
 * php-doctrine-common (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/common/tags
 * php-doctrine-datafixtures (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/data-fixtures/tags
 * php-doctrine-dbal (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/dbal/tags
 * php-doctrine-inflector (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/inflector/tags
 * php-doctrine-lexer (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/lexer/tags
 * php-doctrine-orm (\d[\.\d]+)\.tar\.gz https://github.com/doctrine/doctrine2/tags
 * php-drush-drush <title>drush\s([\d\.]+)+\s\(stable\)</title> http://pear.drush.org/feed.xml
 * php-EasyRdf DEFAULT:easyrdf http://www.easyrdf.org/downloads
 * php-Faker (\d[\.\d]+)\.tar\.gz https://github.com/fzaninotto/Faker/tags
 * php-gitter (\d[\.\d]+)\.tar\.gz https://github.com/klaussilveira/gitter/releases
 * php-google-apiclient  (\d[\.\d]+)\.tar\.gz https://github.com/google/google-api-php-client/releases
 * php-goutte (\d[\.\d]+)\.tar\.gz https://github.com/fabpot/Goutte/releases
 * php-guzzle-Guzzle <title>Guzzle\s([\d\.]+)+\s\(stable\)</title> http://guzzlephp.org/pear/feed.xml
 * php-JMSParser (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/parser-lib/tags
 * php-jsonlint (\d[\.\d]+)\.tar\.gz https://github.com/Seldaek/jsonlint/tags
 * php-JsonSchema (\d[\.\d]+)\.tar\.gz https://github.com/justinrainbow/json-schema/tags
 * php-lessphp DEFAULT:lessphp http://leafo.net/lessphp/
 * php-Metadata (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/metadata/tags
 * php-Monolog (\d[\.\d]+)\.tar\.gz https://github.com/Seldaek/monolog/tags
 * php-pdepend-PHP-Depend <title>PHP_Depend\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.pdepend.org/feed.xml
 * php-pear-Console-Color PEAR-DEFAULT PEAR-DEFAULT
 * php-pear-Console-CommandLine Console_CommandLine-(.*?).tgz http://pear.php.net/package/Console_CommandLine/download
 * php-pear-Crypt-Blowfish Crypt_Blowfish-(.*?)\.tgz http://pear.php.net/package/Crypt_Blowfish/download
 * php-pear-DB DB-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/DB/download
 * php-pear-PHP-CodeSniffer PHP_CodeSniffer-(\d+\.\d+\.\d+)\.tgz PEAR-DEFAULT
 * php-pear-PhpDocumentor PEAR-DEFAULT PEAR-DEFAULT
 * php-pear-phing <title>phing\s([\d\.]+)+\s\((?:stable)\)</title> http://pear.phing.info/feed.xml
 * php-pear-Text-Diff Text_Diff-(.*?)\.tgz http://pear.php.net/package/Text_Diff/download
 * php-pear PEAR-(\d+\.\d+\.\d+)\.tgz http://pear.php.net/package/PEAR/download
 * php-pecl-geoip geoip-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/GEOIP
 * php-pecl-lzf LZF-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/lzf
 * php-pecl-mongo mongo-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/mongo
 * php-pecl-oauth oauth-(\d+\.\d+\.\d+)\.tgz http://pecl.php.net/package/oauth
 * php-phpmd-PHP-PMD <title>PHP_PMD\s([\d\.]+)+\s\((?:stable|beta|alpha)\)</title> http://pear.phpmd.org/feed.xml
 * php-PhpCollection (\d[\.\d]*)\.tar\.gz https://github.com/schmittjoh/php-collection/tags
 * php-PhpOption (\d[\.\d]+)\.tar\.gz https://github.com/schmittjoh/php-option/tags
 * php-PHPParser (\d[\.\d]+)\.tar\.gz https://github.com/nikic/PHP-Parser/tags
 * php-phpunit-bytekit <title>bytekit\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-File-Iterator <title>File_Iterator\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpcpd <title>phpcpd\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phpdcd <title>phpdcd\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-phploc <title>phploc\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-CodeBrowser <title>PHP_CodeBrowser\s([\d\.]+)+\s\((?:stable|beta)\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-Timer <title>PHP_Timer\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-phpunit-PHP-TokenStream <title>PHP_TokenStream\s([\d\.]+)+\s\(stable\)</title> http://pear.phpunit.de/feed.xml
 * php-Pimple (\d[\.\d]+)\.tar\.gz https://github.com/fabpot/Pimple/tags
 * php-pirum-Pirum <title>Pirum\s([\d\.]+)+\s\(stable\)</title> http://pear.pirum-project.org/feed.xml
 * php-PsrLog (\d[\.\d]+)\.tar\.gz https://github.com/php-fig/log/tags
 * php-Raven (\d[\.\d]+)\.tar\.gz https://github.com/getsentry/raven-php/tags
 * php-scssphp (\d[\.\d]+)\.tar\.gz https://github.com/leafo/scssphp/tags
 * php-swift-Swift <title>Swift\s([\d\.]+)+\s\(stable\)</title> http://pear.swiftmailer.org/feed.xml
 * php-symfony v(\d[\.\d]+)\.tar\.gz https://github.com/symfony/symfony/releases
 * php-symfony-icu v(\d[\.\d]+)\.tar\.gz https://github.com/symfony/Icu/releases
 * php-SymfonyCmfRouting (\d[\.\d]+)\.tar\.gz https://github.com/symfony-cmf/Routing/tags
 * php-twig-Twig <title>Twig\s([\d\.]+)+\s\(stable\)</title> http://pear.twig-project.org/feed.xml
 * php-ZendFramework2 DEFAULT http://framework.zend.com/downloads/latest
 * 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
 * phpPgAdmin DEFAULT SF-DEFAULT:phppgadmin
 * phrel DEFAULT ftp://ftp.digitalgenesis.com/pub/phrel
 * physfs DEFAULT http://icculus.org/physfs/downloads/
 * pianobooster pianobooster-src-([0-9.]*).tar.gz SF-DEFAULT
 * picard DEFAULT http://musicbrainz.org/doc/PicardDownload
 * picocom DEFAULT GOOGLE-DEFAULT
 * pidgin DEFAULT http://www.pidgin.im/download/source/
 * pidgin-birthday-reminder DEFAULT LP-DEFAULT
 * pidgin-latex DEFAULT SF-DEFAULT
 * pidgin-libnotify DEFAULT SF-DEFAULT:gaim-libnotify
 * pidgin-musictracker DEFAULT GOOGLE-DEFAULT
 * pidgin-privacy-please DEFAULT GOOGLE-DEFAULT
 * pigz DEFAULT http://zlib.net/pigz/
 * pinentry DEFAULT ftp://ftp.gnupg.org/gcrypt/pinentry/
 * pinpoint DEFAULT GNOME-DEFAULT
 * pioneers DEFAULT SF-DEFAULT:pio
 * pitivi DEFAULT GNOME-DEFAULT
 * pixman DEFAULT http://xorg.freedesktop.org/archive/individual/lib/
 * pkgconfig DEFAULT:pkg-config http://pkgconfig.freedesktop.org/releases/
 * pkgdiff e\/(.*?)\.tar\.gz http://github.com/lvc/pkgdiff/releases
 * pkgwat DEFAULT:pkgwat.cli PYPI-DEFAULT:pkgwat.cli
 * pkcs11-helper DEFAULT SF-DEFAULT:opensc
 * pl DEFAULT http://www.swi-prolog.org/download/stable
 * plexus-active-collections plexus-active-collections-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/tags/
 * plexus-archiver DEFAULT https://github.com/sonatype/plexus-archiver/tags
 * plexus-build-api DEFAULT https://github.com/sonatype/sisu-build-api/tags
 * plexus-cipher DEFAULT https://github.com/sonatype/plexus-cipher/tags
 * plexus-digest plexus-digest-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-graph DEFAULT:plexus SF-DEFAULT:plexus
 * plexus-i18n plexus-i18n-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-interpolation plexus-interpolation-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-io plexus-io-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-resources plexus-resources-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-velocity plexus-velocity-([0-9.]*?)\/ http://svn.codehaus.org/plexus/plexus-components/tags/
 * plexus-ant-factory plexus-ant-factory-([0-9.]*?.*)\/\" http://svn.codehaus.org/plexus/tags/
 * plexus-classworlds DEFAULT https://github.com/sonatype/plexus-classworlds/tags
 * plexus-compiler DEFAULT https://github.com/sonatype/plexus-compiler/tags
 * plexus-containers DEFAULT https://github.com/sonatype/plexus-containers/tags
 * plymouth DEFAULT http://freedesktop.org/software/plymouth/releases/
 * plotutils DEFAULT GNU-DEFAULT
 * pm-utils DEFAULT http://pm-utils.freedesktop.org/releases/
 * pmd DEFAULT SF-DEFAULT
 * pnglite DEFAULT SF-DEFAULT
 * pngquant ([0-9.]*?)\.tar.* https://github.com/pornel/improved-pngquant/tags
 * po4a DEFAULT https://alioth.debian.org/frs/?group_id=30267
 * pocl DEFAULT http://pocl.sourceforge.net/downloads/
 * pokerth DEFAULT:PokerTH SF-DEFAULT
 * polarssl \bpolarssl-([\d.]+)-gpl https://polarssl.org/code/releases/
 * policycoreutils DEFAULT http://userspace.selinuxproject.org/trac/wiki/Releases
 * polipo polipo-([0-9]\.[0-9.]*?).tar.gz http://freehaven.net/~chrisd/polipo/
 * polkit DEFAULT http://freedesktop.org/software/polkit/releases/
 * pondus DEFAULT https://bitbucket.org/eike/pondus/downloads
 * pootle DEFAULT SF-DEFAULT:translate
 * poppler DEFAULT http://poppler.freedesktop.org/
 * poppler-data DEFAULT http://poppler.freedesktop.org/
 * poppler-sharp DEFAULT https://github.com/jacintos/poppler-sharp/downloads
 * popt DEFAULT http://rpm5.org/files/popt/
 * port-allocator-maven-plugin DEFAULT https://github.com/sonatype/port-allocator-maven-plugin/releases
 * potrace DEFAULT SF-DEFAULT
 * poster poster-(.*?).tar.bz2 ftp://ftp.kde.org/pub/kde/printing/
 * postfix DEFAULT ftp://ftp.porcupine.org/mirrors/postfix-release/official/
 * powertop DEFAULT https://01.org/powertop/downloads
 * ppp DEFAULT http://www.samba.org/ftp/ppp/
 * pptp DEFAULT SF-DEFAULT:pptpclient
 * pptpd DEFAULT SF-DEFAULT:poptop
 * prboom prboom-([0-9.]*?)\.tar\.gz SF-DEFAULT
 * procps-ng DEFAULT SF-DEFAULT
 * prosody DEFAULT http://prosody.im/downloads/source/
 * prepaid-manager-applet \bprepaid-manager-applet[-_]([^-/_\s]+?)(?i)(?:[-_](?:src|source))?\.(?:t[bglx]z|tar.[bglx]z|tbz2|zip|tar)\b http://honk.sigxcpu.org/projects/ppm/tarballs/
 * primer3 primer3-([0-9.]*).*\.(?:tar|t[bglx]z|tbz2|zip) SF-DEFAULT
 * privoxy privoxy-(.*?)-stable-src\.tar\.gz SF-DEFAULT:ijbswa
 * procmail DEFAULT http://www.procmail.org/
 * proguard \bproguard([\d.]+?)\.t SF-DEFAULT
 * protobuf DEFAULT GOOGLE-DEFAULT
 * proxyknife DEFAULT GNU-DEFAULT
 * psacct DEFAULT:acct GNU-DEFAULT:acct
 * pscan Version\s+(\d[\d.]+\d) http://deployingradius.com/pscan/README
 * psfex DEFAULT http://www.astromatic.net/download/psfex/
 * psmisc DEFAULT SF-DEFAULT
 * pspp DEFAULT GNU-DEFAULT
 * pth DEFAULT GNU-DEFAULT
 * ptouch-driver ptouch-driver-(.*?).tar.gz http://www.diku.dk/~panic/P-touch/
 * pulseaudio DEFAULT http://freedesktop.org/software/pulseaudio/releases/
 * pure DEFAULT https://bitbucket.org/purelang/pure-lang/downloads
 * pure-ftpd DEFAULT http://download.pureftpd.org/pub/pure-ftpd/releases/
 * purple-microblog DEFAULT:mbpurple GOOGLE-DEFAULT:microblog-purple
 * purple-msn-pecan DEFAULT:msn-pecan GOOGLE-DEFAULT:msn-pecan
 * purple-plugin_pack DEFAULT:purple-plugin-pack https://bitbucket.org/rekkanoryo/purple-plugin-pack/downloads
 * pv DEFAULT http://www.ivarch.com/programs/pv.shtml
 * pvm pvm([0-9.]*)\..*\.(?:tar|t[bglx]z|tbz2|zip) http://www.netlib.org/pvm3/index.html
 * pwgen DEFAULT SF-DEFAULT

PY

 * pycdio DEFAULT GNU-DEFAULT:libcdio
 * pychess DEFAULT GOOGLE-DEFAULT
 * pycmd DEFAULT PYPI-DEFAULT
 * pycscope DEFAULT PYPI-DEFAULT
 * pyfits DEFAULT PYPI-DEFAULT
 * pyflakes DEFAULT PYPI-DEFAULT
 * pygpgme DEFAULT LP-DEFAULT
 * pygrace DEFAULT http://www.cacr.caltech.edu/~mmckerns/pygrace.html
 * PyGreSQL DEFAULT PYPI-DEFAULT
 * pygrib DEFAULT GOOGLE-DEFAULT
 * pyicq-t pyicq-t-(.*?).tar.gz GOOGLE-DEFAULT:pyicqt
 * PyMca pymca([\d.]*)-src SF-DEFAULT:pymca
 * pymol pymol-v([0-9.]*?).tar.bz2 SF-DEFAULT
 * PyMunin DEFAULT PYPI-DEFAULT
 * pynac pynac-([\d.]+)\.spkg http://sagemath.org/packages/standard/
 * pypar DEFAULT SF-DEFAULT
 * pyPdf pyPdf-(.*?)\.tar\.gz http://pybrary.net/pyPdf/
 * pyproj DEFAULT GOOGLE-DEFAULT
 * pypy DEFAULT https://bitbucket.org/pypy/pypy/downloads/
 * PyQuante DEFAULT SF-DEFAULT:pyquante
 * PyQwt DEFAULT SF-DEFAULT:pyqwt
 * pyrit DEFAULT GOOGLE-DEFAULT
 * pyroom DEFAULT LP-DEFAULT
 * pyshp DEFAULT PYPI-DEFAULT
 * pytest DEFAULT PYPI-DEFAULT
 * python-alembic DEFAULT:alembic PYPI-DEFAULT:alembic
 * python-alsa pyalsa-(\d+\.\d+\.\d+)\.tar ftp://ftp.alsa-project.org/pub/pyalsa/
 * python-amqp DEFAULT:amqp PYPI-DEFAULT:amqp
 * python-ansi2html DEFAULT:ansi2html PYPI-DEFAULT:ansi2html
 * python-anykeystore DEFAULT:anykeystore PYPI-DEFAULT:anykeystore
 * python-application DEFAULT PYPI-DEFAULT
 * python-apsw DEFAULT:apsw GOOGLE-DEFAULT:apsw
 * python-argcomplete DEFAULT:argcomplete PYPI-DEFAULT:argcomplete
 * python-ase DEFAULT PYPI-DEFAULT
 * python-askbot-fedmsg DEFAULT:askbot-fedmsg PYPI-DEFAULT:askbot-fedmsg
 * python-astropy DEFAULT:astropy PYPI-DEFAULT:astropy
 * python-backlash DEFAULT:backlash PYPI-DEFAULT:backlash
 * python-beaker DEFAULT:Beaker PYPI-DEFAULT:Beaker
 * python-beautifulsoup4 DEFAULT:beautifulsoup4 PYPI-DEFAULT:beautifulsoup4
 * python-billiard DEFAULT:billiard PYPI-DEFAULT:billiard
 * python-biopython DEFAULT:biopython PYPI-DEFAULT:biopython
 * python-bitlyapi DEFAULT:bitlyapi PYPI-DEFAULT:bitlyapi
 * python-blessings DEFAULT:blessings PYPI-DEFAULT:blessings
 * python-blist DEFAULT:blist PYPI-DEFAULT:blist
 * python-blosc archive/Release-(.*?)\.zip https://github.com/FrancescAlted/python-blosc/releases
 * python-bunch DEFAULT:bunch PYPI-DEFAULT:bunch
 * python-cairosvg DEFAULT:CairoSVG PYPI-DEFAULT:CairoSVG
 * python-catwalk DEFAULT:Catwalk PYPI-DEFAULT:Catwalk
 * python-cclib DEFAULT:cclib SF-DEFAULT:cclib
 * python-celery DEFAULT:celery PYPI-DEFAULT:celery
 * python-chai DEFAULT:chai PYPI-DEFAULT:chai
 * python-chameleon DEFAULT:Chameleon PYPI-DEFAULT:Chameleon
 * python-cherrypy <a href="([0-9][^/]*)/"> http://download.cherrypy.org/cherrypy/
 * python-cherrypy2 <a href="(2[^/]*)/"> http://download.cherrypy.org/cherrypy/
 * python-cliapp DEFAULT http://code.liw.fi/debian/pool/main/p/python-cliapp/
 * python-clientform DEFAULT:ClientForm PYPI-DEFAULT:ClientForm
 * python-cliff DEFAULT:cliff PYPI-DEFAULT:cliff
 * python-cloud-sptheme DEFAULT:cloud_sptheme PYPI-DEFAULT:cloud_sptheme
 * python-colander DEFAULT:colander PYPI-DEFAULT:colander
 * python-colorama DEFAULT:colorama PYPI-DEFAULT:colorama
 * python-concurrentloghandler DEFAULT:ConcurrentLogHandler PYPI-DEFAULT:ConcurrentLogHandler
 * python-configobj DEFAULT:configobj PYPI-DEFAULT:configobj
 * python-couchdbkit DEFAULT:couchdbkit PYPI-DEFAULT:couchdbkit
 * python-coverage DEFAULT:coverage PYPI-DEFAULT:coverage
 * python-coverage-test-runner DEFAULT http://code.liw.fi/debian/pool/main/p/python-coverage-test-runner/
 * python-cpio DEFAULT SF-DEFAULT:python-cpio.berlios
 * python-crank DEFAULT:crank PYPI-DEFAULT:crank
 * python-crypto e/v(.*)\.tar\.gz http://github.com/dlitz/pycrypto/releases
 * python-daemon DEFAULT:daemon PYPI-DEFAULT:daemon
 * python-datanommer-consumer DEFAULT:datanommer.consumer PYPI-DEFAULT:datanommer.consumer
 * python-datanommer-models DEFAULT:datanommer.models PYPI-DEFAULT:datanommer.models
 * python-decorator DEFAULT:decorator PYPI-DEFAULT:decorator
 * python-decoratortools DEFAULT:DecoratorTools PYPI-DEFAULT:DecoratorTools
 * python-demjson DEFAULT:demjson PYPI-DEFAULT:demjson
 * python-dialog DEFAULT:pythondialog SF-DEFAULT:pythondialog
 * python-dingus DEFAULT:dingus PYPI-DEFAULT:dingus
 * python-dirq DEFAULT:dirq PYPI-DEFAULT:dirq
 * python-distutils-extra DEFAULT LP-DEFAULT
 * python-django DEFAULT:Django PYPI-DEFAULT:Django
 * python-django-appconf DEFAULT:django-appconf PYPI-DEFAULT:django-appconf
 * python-django-authopenid DEFAULT:django-authopenid PYPI-DEFAULT:django-authopenid
 * python-django-bootstrap-toolkit DEFAULT:django-bootstrap-toolkit PYPI-DEFAULT:django-bootstrap-toolkit
 * python-django-celery DEFAULT:django-celery PYPI-DEFAULT:django-celery
 * python-django-compressor DEFAULT:django_compressor PYPI-DEFAULT:django_compressor
 * python-django-debug-toolbar DEFAULT:django-debug-toolbar PYPI-DEFAULT:django-debug-toolbar
 * python-django-devserver DEFAULT:django-devserver PYPI-DEFAULT:django-devserver
 * python-django-discover-runner DEFAULT:django-discover-runner PYPI-DEFAULT:django-discover-runner
 * python-django-extensions DEFAULT:django-extensions PYPI-DEFAULT:django-extensions
 * python-django-longerusername DEFAULT:longerusername PYPI-DEFAULT:longerusername
 * python-django-openstack-auth DEFAULT:django_openstack_auth PYPI-DEFAULT:django_openstack_auth
 * python-django-openid-auth DEFAULT:django-openid-auth PYPI-DEFAULT:django-openid-auth
 * python-django-pytest DEFAULT:django-pytest PYPI-DEFAULT:django-pytest
 * python-django-reversion DEFAULT:django-reversion PYPI-DEFAULT:django-reversion
 * python-django-roa DEFAULT:django-roa PYPI-DEFAULT:django-roa
 * python-django-tastypie DEFAULT:django-tastypie PYPI-DEFAULT:django-tastypie
 * python-django-tinymce DEFAULT:django-tinymce PYPI-DEFAULT:django-tinymce
 * python-dns DEFAULT:dnspython http://www.dnspython.org/kits/*/
 * python-docutils DEFAULT:docutils PYPI-DEFAULT:docutils
 * python-dogpile-cache DEFAULT:dogpile.cache PYPI-DEFAULT:dogpile.cache
 * python-dogpile-core DEFAULT:dogpile.core PYPI-DEFAULT:dogpile.core
 * python-doit DEFAULT:doit PYPI-DEFAULT:doit
 * python-dtopt DEFAULT:dtopt PYPI-DEFAULT:dtopt
 * python-elixir Elixir-(.*?).tar.gz PYPI-DEFAULT:Elixir
 * python-enchant DEFAULT:pyenchant PYPI-DEFAULT:pyenchant
 * python-execnet execnet-(.*?).(?:tar.gz|zip) PYPI-DEFAULT:execnet
 * python-fabulous DEFAULT:fabulous PYPI-DEFAULT:fabulous
 * python-falcon DEFAULT:falcon PYPI-DEFAULT:falcon
 * python-fastimport DEFAULT LP-DEFAULT
 * python-fedmsg-meta-fedora-infrastructure DEFAULT:fedmsg_meta_fedora_infrastructure PYPI-DEFAULT:fedmsg_meta_fedora_infrastructure
 * python-feedcache DEFAULT:feedcache PYPI-DEFAULT:feedcache
 * python-fedora DEFAULT PYPI-DEFAULT
 * python-flask DEFAULT:Flask PYPI-DEFAULT:Flask
 * python-flask-login DEFAULT:Flask-Login PYPI-DEFAULT:Flask-Login
 * python-flask-mako DEFAULT:Flask-Mako PYPI-DEFAULT:Flask-Mako
 * python-flask-principal DEFAULT:Flask-Principal PYPI-DEFAULT:Flask-Principal
 * python-flexmock DEFAULT:flexmock PYPI-DEFAULT:flexmock
 * python-flup flup-([0-9.]*)\.[tz][ai][rp] http://www.saddi.com/software/flup/dist/
 * python-fn DEFAULT:fn PYPI-DEFAULT:fn
 * python-formencode DEFAULT:FormEncode PYPI-DEFAULT:FormEncode
 * python-fuzzywuzzy DEFAULT:fuzzywuzzy PYPI-DEFAULT:fuzzywuzzy
 * python-gdata DEFAULT:gdata GOOGLE-DEFAULT:gdata-python-client
 * python-gearbox DEFAULT:gearbox PYPI-DEFAULT:gearbox
 * python-glue DEFAULT:glue PYPI-DEFAULT:glue
 * python-grapefruit DEFAULT:grapefruit GOOGLE-DEFAULT:grapefruit
 * python-gstreamer1 DEFAULT:gst-python http://gstreamer.freedesktop.org/src/gst-python/
 * python-gunicorn DEFAULT:gunicorn PYPI-DEFAULT:gunicorn
 * python-GeoIP DEFAULT:GeoIP PYPI-DEFAULT:GeoIP
 * python-gstreamer1 DEFAULT:gst-python http://gstreamer.freedesktop.org/src/gst-python/
 * python-heatclient DEFAULT PYPI-DEFAULT
 * python-hghooks DEFAULT:hghooks PYPI-DEFAULT:hghooks
 * python-http-parser DEFAULT:http-parser PYPI-DEFAULT:http-parser
 * python-irclib DEFAULT SF-DEFAULT
 * python-itsdangerous DEFAULT:itsdangerous PYPI-DEFAULT:itsdangerous
 * python-jedi DEFAULT:jedi PYPI-DEFAULT:jedi
 * python-jinja2 Jinja2-(.*?).tar.gz PYPI-DEFAULT:Jinja2
 * python-jsonschema DEFAULT:jsonschema PYPI-DEFAULT:jsonschema
 * python-kajiki DEFAULT:Kajiki PYPI-DEFAULT:Kajiki
 * python-keyring keyring-([0-9.]*?).zip PYPI-DEFAULT:keyring
 * python-kid DEFAULT:kid PYPI-DEFAULT:kid
 * python-kitchen DEFAULT:kitchen PYPI-DEFAULT:kitchen
 * python-kombu DEFAULT:kombu PYPI-DEFAULT:kombu
 * python-ladon DEFAULT:ladon PYPI-DEFAULT:ladon
 * python-lamson DEFAULT:lamson PYPI-DEFAULT:lamson
 * python-larch DEFAULT http://code.liw.fi/debian/pool/main/p/python-larch/
 * python-lettuce DEFAULT:lettuce PYPI-DEFAULT:lettuce
 * python-Levenshtein DEFAULT PYPI-DEFAULT
 * python-llfuse DEFAULT:llfuse GOOGLE-DEFAULT
 * python-logging-tree DEFAULT:logging_tree PYPI-DEFAULT:logging_tree
 * python-logutils DEFAULT:logutils PYPI-DEFAULT:logutils
 * python-lxml DEFAULT:lxml http://lxml.de/
 * python-mako DEFAULT:Mako PYPI-DEFAULT:Mako
 * python-markdown DEFAULT:Markdown PYPI-DEFAULT:Markdown
 * python-markdown2 DEFAULT:markdown2 PYPI-DEFAULT:markdown2
 * python-markupsafe DEFAULT:MarkupSafe PYPI-DEFAULT:MarkupSafe
 * python-matplotlib DEFAULT:matplotlib PYPI-DEFAULT:matplotlib
 * python-mechanize mechanize-([0-9.]+?)\.tar PYPI-DEFAULT:mechanize
 * python-meliae DEFAULT:meliae LP-DEFAULT:meliae
 * python-msgpack DEFAULT:msgpack-python PYPI-DEFAULT:msgpack-python
 * python-migrate0.5 sqlalchemy-migrate-(0.5.*).tar.gz" PYPI-DEFAULT:sqlalchemy-migrate
 * python-migrate DEFAULT:sqlalchemy-migrate PYPI-DEFAULT:sqlalchemy-migrate
 * python-minimock DEFAULT:MiniMock PYPI-DEFAULT:MiniMock
 * python-modernize DEFAULT:modernize PYPI-DEFAULT:modernize
 * python-moksha-common DEFAULT:moksha.common PYPI-DEFAULT:moksha.common
 * python-moksha-hub DEFAULT:moksha.hub PYPI-DEFAULT:moksha.hub
 * python-moksha-wsgi DEFAULT:moksha.wsgi PYPI-DEFAULT:moksha.wsgi
 * python-morbid DEFAULT:morbid PYPI-DEFAULT:morbid
 * python-mpmath DEFAULT:mpmath GOOGLE-DEFAULT:mpmath
 * python-mutagen DEFAULT:mutagen PYPI-DEFAULT:mutagen
 * python-mwlib DEFAULT:mwlib PYPI-DEFAULT:mwlib
 * python-myghty DEFAULT:Myghty PYPI-DEFAULT:Myghty
 * python-myhdl DEFAULT:myhdl SF-DEFAULT:myhdl
 * python-nikola DEFAULT: nikola PYPI-DEFAULT:Nikola
 * python-nltk DEFAULT:nltk PYPI-DEFAULT:nltk
 * python-nose DEFAULT:nose PYPI-DEFAULT:nose
 * python-nose-cover3 DEFAULT:nose-cover3 PYPI-DEFAULT:nose-cover3
 * python-nose-exclude DEFAULT:nose-exclude PYPI-DEFAULT:nose-exclude
 * python-nose-progressive /archive/(.*?)\.tar\.gz https://github.com/erikrose/nose-progressive/tags
 * python-ntplib DEFAULT:ntplib PYPI-DEFAULT:ntplib
 * python-numexpr DEFAULT:numexpr GOOGLE-DEFAULT:numexpr
 * python-offtrac DEFAULT:offtrac PYPI-DEFAULT:offtrac
 * python-paida \bpaida-([^-\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT:paida
 * python-paramiko DEFAULT:paramiko http://www.lag.net/paramiko/download/
 * python-paste DEFAULT:Paste PYPI-DEFAULT:Paste
 * python-paste-deploy DEFAULT:PasteDeploy PYPI-DEFAULT:PasteDeploy
 * python-paste-script DEFAULT:PasteScript PYPI-DEFAULT:PasteScript
 * python-patsy DEFAULT:patsy PYPI-DEFAULT:patsy
 * python-paver DEFAULT:Paver PYPI-DEFAULT:Paver
 * python-pbr DEFAULT:pbr PYPI-DEFAULT:pbr
 * python-peak-rules PEAK-Rules-(.*?)\.tar\.gz http://peak.telecommunity.com/snapshots
 * python-peak-util-addons DEFAULT:AddOns PYPI-DEFAULT:AddOns
 * python-peak-util-assembler DEFAULT:BytecodeAssembler PYPI-DEFAULT:BytecodeAssembler
 * python-peak-util-extremes DEFAULT:Extremes PYPI-DEFAULT:Extremes
 * python-peak-util-symbols DEFAULT:SymbolType PYPI-DEFAULT:SymbolType
 * python-pep8 DEFAULT:pep8 PYPI-DEFAULT:pep8
 * python-pgpdump DEFAULT:pgpdump PYPI-DEFAULT:pgpdump
 * python-phyghtmap phyghtmap_(.*?).orig.tar.gz http://katze.tfiu.de/projects/phyghtmap/
 * python-pkgwat-api DEFAULT:pkgwat.api PYPI-DEFAULT:pkgwat.api
 * python-plumbum DEFAULT:plumbum PYPI-DEFAULT:plumbum
 * python-plyvel DEFAULT:plyvel PYPI-DEFAULT:plyvel
 * python-praw DEFAULT:praw PYPI-DEFAULT:praw
 * python-prioritized-methods DEFAULT:prioritized_methods PYPI-DEFAULT:prioritized_methods
 * python-profilehooks DEFAULT:profilehooks PYPI-DEFAULT:profilehooks
 * python-progressbar DEFAULT:progressbar GOOGLE-DEFAULT
 * python-protocols >PyProtocols-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * python-psutil DEFAULT:psutil PYPI-DEFAULT:psutil
 * python-pudb DEFAULT:pudb PYPI-DEFAULT:pudb
 * python-py py-([0-9.]*?).(?:tar.gz|zip) PYPI-DEFAULT:py
 * python-pybloomfiltermmap DEFAULT:pybloomfiltermmap PYPI-DEFAULT:pybloomfiltermmap
 * python-pygal DEFAULT:pygal PYPI-DEFAULT:pygal
 * python-pygments DEFAULT:Pygments PYPI-DEFAULT:Pygments
 * python-pylons DEFAULT:Pylons PYPI-DEFAULT:Pylons
 * python-PyGithub DEFAULT:PyGithub PYPI-DEFAULT:PyGithub
 * python-qserve DEFAULT:qserve PYPI-DEFAULT:qserve
 * python-q DEFAULT:q PYPI-DEFAULT:q
 * python-redis DEFAULT:redis PYPI-DEFAULT:redis
 * python-reportlab DEFAULT:reportlab PYPI-DEFAULT:reportlab
 * python-repoze-tm2 DEFAULT:repoze.tm2 PYPI-DEFAULT:repoze.tm2
 * python-repoze-what DEFAULT:repoze.what PYPI-DEFAULT:repoze.what
 * python-repoze-what-plugins-sql DEFAULT:repoze.what.plugins.sql PYPI-DEFAULT:repoze.what.plugins.sql
 * python-repoze-what-pylons DEFAULT:repoze.what-pylons PYPI-DEFAULT:repoze.what-pylons
 * python-repoze-what-quickstart DEFAULT:repoze.what-quickstart PYPI-DEFAULT:repoze.what-quickstart
 * python-repoze-who DEFAULT:repoze.who PYPI-DEFAULT:repoze.who
 * python-repoze-who-friendlyform DEFAULT:repoze.who-friendlyform PYPI-DEFAULT:repoze.who-friendlyform
 * python-repoze-who-plugins-sa DEFAULT:repoze.who.plugins.sa PYPI-DEFAULT:repoze.who.plugins.sa
 * python-repoze-who-testutil DEFAULT:repoze.who-testutil PYPI-DEFAULT:repoze.who-testutil
 * python-requests DEFAULT:requests PYPI-DEFAULT:requests
 * python-requests-kerberos /archive/(.*?)\.tar\.gz https://github.com/requests/requests-kerberos/tags
 * python-restkit DEFAULT:restkit PYPI-DEFAULT:restkit
 * python-restsh DEFAULT:restsh PYPI-DEFAULT:restsh
 * python-robofab DEFAULT http://download.robofab.com/
 * python-rope DEFAULT:rope PYPI-DEFAULT:rope
 * python-rosdep ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros-infrastructure/rosdep/releases
 * python-rosdistro ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros/rosdistro/releases
 * python-rosinstall ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/vcstools/rosinstall/releases
 * python-rosinstall_generator ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/ros-infrastructure/rosinstall_generator/releases
 * python-rospkg DEFAULT:rospkg http://download.ros.org/downloads/rospkg/
 * python-routes DEFAULT:Routes PYPI-DEFAULT:Routes
 * python-rpyc DEFAULT:rpyc PYPI-DEFAULT:rpyc
 * python-ruledispatch >RuleDispatch-([0-9].*).(?:tar|t[bglx]z|tbz2|zip) http://peak.telecommunity.com/snapshots/
 * python-scrapy DEFAULT:Scrapy PYPI-DEFAULT:Scrapy
 * python-SecretStorage DEFAULT:SecretStorage PYPI-DEFAULT:SecretStorage
 * python-setuptools DEFAULT:setuptools PYPI-DEFAULT:setuptools
 * python-shapely DEFAULT:Shapely PYPI-DEFAULT:Shapely
 * python-shove DEFAULT:shove PYPI-DEFAULT:shove
 * python-simplegeneric DEFAULT:simplegeneric PYPI-DEFAULT:simplegeneric
 * python-simplejson simplejson-([0-9.]+?)\.tar PYPI-DEFAULT:simplejson
 * python-six DEFAULT:six PYPI-DEFAULT:six
 * python-smbpasswd py-smbpasswd-(.*?)\.tar\.gz http://barryp.org/software/py-smbpasswd/files
 * python-social-auth DEFAULT PYPI-DEFAULT
 * python-socketpool DEFAULT:socketpool PYPI-DEFAULT:socketpool
 * python-sphinx DEFAULT:Sphinx PYPI-DEFAULT:Sphinx
 * python-sphinxcontrib-adadomain DEFAULT:sphinxcontrib-adadomain PYPI-DEFAULT:sphinxcontrib-adadomain
 * python-sprox DEFAULT:sprox PYPI-DEFAULT:sprox
 * python-sqlalchemy DEFAULT:SQLAlchemy PYPI-DEFAULT:SQLAlchemy
 * python-sqlalchemy0.5 .*(0.5[.0-9]*).tar.gz PYPI-DEFAULT:SQLAlchemy
 * python-sqlamp DEFAULT:sqlamp PYPI-DEFAULT:sqlamp
 * python-sqlite3dbm DEFAULT:sqlite3dbm PYPI-DEFAULT:sqlite3dbm
 * python-sqlobject DEFAULT:SQLObject PYPI-DEFAULT:SQLObject
 * python-statsmodels DEFAULT:statsmodels PYPI-DEFAULT:statsmodels
 * python-stomper DEFAULT:stomper PYPI-DEFAULT:stomper
 * python-storm DEFAULT:storm LP-DEFAULT:storm
 * python-subprocess32 DEFAULT:subprocess32 PYPI-DEFAULT:subprocess32
 * python-sure DEFAULT:sure PYPI-DEFAULT:sure
 * python-tables GITHUB-TAGS GITHUB-TAGS:PyTables/PyTables
 * python-testtools DEFAULT:testtools LP-DEFAULT:testtools
 * python-textile DEFAULT:textile PYPI-DEFAULT:textile
 * python-tftpy DEFAULT:tftpy SF-DEFAULT:tftpy
 * python-tg-devtools DEFAULT:tg.devtools PYPI-DEFAULT:tg.devtools
 * python-tgcaptcha DEFAULT:TGCaptcha PYPI-DEFAULT:TGCaptcha
 * python-tgext-admin DEFAULT:tgext.admin PYPI-DEFAULT:tgext.admin
 * python-tgext-crud DEFAULT:tgext.crud PYPI-DEFAULT:tgext.crud
 * python-tgfastdata DEFAULT:TGFastData PYPI-DEFAULT:TGFastData
 * python-tgmochikit DEFAULT:tgMochiKit PYPI-DEFAULT:tgMochiKit
 * python-tgscheduler DEFAULT:TGScheduler PYPI-DEFAULT:TGScheduler
 * python-toscawidgets DEFAULT:ToscaWidgets PYPI-DEFAULT:ToscaWidgets
 * python-tracing DEFAULT http://code.liw.fi/debian/pool/main/p/python-tracing/
 * python-transaction DEFAULT:transaction PYPI-DEFAULT:transaction
 * python-trollius DEFAULT:trollius PYPI-DEFAULT:trollius
 * python-ttystatus DEFAULT http://code.liw.fi/debian/pool/main/p/python-ttystatus/
 * python-TurboMail DEFAULT:TurboMail PYPI-DEFAULT:TurboMail
 * python-turbocheetah DEFAULT:TurboCheetah PYPI-DEFAULT:TurboCheetah
 * python-turboflot DEFAULT:TurboFlot PYPI-DEFAULT:TurboFlot
 * python-turbojson DEFAULT:TurboJson PYPI-DEFAULT:TurboJson
 * python-turbokid DEFAULT:TurboKid PYPI-DEFAULT:TurboKid
 * python-tw-forms DEFAULT:tw.forms PYPI-DEFAULT:tw.forms
 * python-tw-jquery DEFAULT:tw.jquery PYPI-DEFAULT:tw.jquery
 * python-tw2-core DEFAULT:tw2.core PYPI-DEFAULT:tw2.core
 * python-twisted DEFAULT:Twisted http://twistedmatrix.com/trac/wiki/Downloads
 * python-txws DEFAULT:txWS PYPI-DEFAULT:txWS
 * python-txzmq DEFAULT:txZMQ PYPI-DEFAULT:txZMQ
 * python-uinput dist/([0-9.]+[0-9]) https://github.com/tuomasjjrasanen/python-uinput/tags
 * python-ujson DEFAULT:ujson PYPI-DEFAULT:ujson
 * python-unicodenazi DEFAULT:unicode-nazi PYPI-DEFAULT:unicode-nazi
 * python-urwid DEFAULT:urwid PYPI-DEFAULT:urwid
 * python-versiontools DEFAULT:versiontools PYPI-DEFAULT:versiontools
 * python-virtualenvwrapper DEFAULT:virtualenvwrapper PYPI-DEFAULT:virtualenvwrapper
 * python-vobject >vobject (.*?)</a http://vobject.skyhouseconsulting.com/history.html
 * python-volatility DEFAULT:volatility GOOGLE-DEFAULT:volatility
 * python-waitress DEFAULT:waitress PYPI-DEFAULT:waitress
 * python-warlock DEFAULT:warlock PYPI-DEFAULT:warlock
 * python-weberror DEFAULT:WebError PYPI-DEFAULT:WebError
 * python-webflash DEFAULT:WebFlash PYPI-DEFAULT:WebFlash
 * python-webhelpers DEFAULT:WebHelpers PYPI-DEFAULT:WebHelpers
 * python-webpy DEFAULT:web.py PYPI-DEFAULT:web.py
 * python-webtest DEFAULT:WebTest PYPI-DEFAULT:WebTest
 * python-werkzeug DEFAULT:Werkzeug PYPI-DEFAULT:Werkzeug
 * python-wsgiproxy DEFAULT:WSGIProxy PYPI-DEFAULT:WSGIProxy
 * python-wstool ([0-9]+\.[0-9]+\.*[0-9]?).tar.gz https://github.com/vcstools/wstool/releases
 * python-x2go python-x2go-(.*)\.tar\.gz http://code.x2go.org/releases/source/python-x2go/
 * python-xkit DEFAULT:x-kit LP-DEFAULT:xorgparser
 * python-xtermcolor DEFAULT:xtermcolor PYPI-DEFAULT:xtermcolor
 * python-zc-buildout zc.buildout-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zc.buildout
 * python-zc-lockfile zc.lockfile-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zc.lockfile
 * python-ZConfig ZConfig-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:ZConfig
 * python-ZODB3 ZODB3-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:ZODB3
 * python-zdaemon zdaemon-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zdaemon
 * python-zmq pyzmq-(.*?).tar.gz https://github.com/zeromq/pyzmq/downloads
 * python-zope-component zope\.component-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.component
 * python-zope-contenttype DEFAULT:zope.contenttype PYPI-DEFAULT:zope.contenttype
 * python-zope-event zope\.event-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.event
 * python-zope-exceptions zope\.exceptions-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.exceptions
 * python-zope-filerepresentation DEFAULT:zope.filerepresentation PYPI-DEFAULT:zope.filerepresentation
 * python-zope-i18n zope\.i18n-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.i18n
 * python-zope-i18nmessageid DEFAULT:zope.i18nmessageid PYPI-DEFAULT:zope.i18nmessageid
 * python-zope-interface zope\.interface-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.interface
 * python-zope-proxy zope\.proxy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.proxy
 * python-zope-schema zope\.schema-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.schema
 * python-zope-sqlalchemy zope\.sqlalchemy-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.sqlalchemy
 * python-zope-testing zope\.testing-([0-9.]+?)\.(?:tar|t[bglx]z|tbz2|zip) PYPI-DEFAULT:zope.testing
 * python3-bsddb3 \bbsddb3-([0-9.]+?)\.tar\.gz\b PYPI-DEFAULT:bsddb3
 * python3-chardet DEFAULT http://chardet.feedparser.org/download/
 * python3-zope-fixers DEFAULT:zope.fixers PYPI-DEFAULT:zope.fixers
 * pyxdg DEFAULT http://people.freedesktop.org/~takluyver/
 * pyxmlsec DEFAULT http://labs.libre-entreprise.org/frs/?group_id=17
 * PyYAML DEFAULT http://pyyaml.org/download/pyyaml/

Q

 * qbzr DEFAULT LP-DEFAULT
 * qiv DEFAULT http://spiegl.de/qiv/download/
 * qjackctl DEFAULT http://qjackctl.sourceforge.net/
 * qmforge \bQMForge[-_]([^-_\s]+?)\.(?:tar|t[bglx]z|tbz2|zip)\b SF-DEFAULT
 * qmmp qmmp-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/
 * qmmp-plugin-pack qmmp-plugin-pack-(.*?).tar.bz2 http://qmmp.ylsoftware.com/files/plugins/
 * qof DEFAULT SF-DEFAULT
 * qrupdate DEFAULT SF-DEFAULT
 * qsstv DEFAULT http://users.telenet.be/on4qz/qsstv/downloads/
 * qstardict DEFAULT http://qstardict.ylsoftware.com/download.php
 * qt-creator DEFAULT:qt-creator-opensource-src http://download.qt-project.org/official_releases/qtcreator/*/*/
 * qterm DEFAULT SF-DEFAULT
 * qtkeychain GITHUB-TAGS GITHUB-TAGS:frankosterfeld/qtkeychain
 * quagga DEFAULT http://download.savannah.gnu.org/releases/quagga/
 * quassel DEFAULT http://quassel-irc.org/pub/
 * quazip DEFAULT SF-DEFAULT
 * qucs qucs-([0-9]+\.[0-9]+\.[0-9]+).tar.gz SF-DEFAULT
 * quilt DEFAULT http://download.savannah.gnu.org/releases/quilt/
 * quodlibet DEFAULT https://bitbucket.org/lazka/quodlibet-files/src/default/releases/
 * quota DEFAULT SF-DEFAULT:linuxquota
 * quotatool DEFAULT http://quotatool.ekenberg.se/index.php?node=download
 * qwt DEFAULT SF-DEFAULT

R - Ruby

 * R DEFAULT http://cran.rstudio.com/banner.shtml
 * R-car DEFAULT http://cran.r-project.org/src/contrib/
 * R-lmtest DEFAULT http://cran.r-project.org/src/contrib/
 * R-multcomp DEFAULT http://cran.r-project.org/src/contrib/
 * R-mvtnorm DEFAULT http://cran.r-project.org/src/contrib/
 * R-zoo DEFAULT http://cran.r-project.org/src/contrib/
 * RackTables DEFAULT SF-DEFAULT:racktables
 * radvd DEFAULT http://www.litech.org/radvd/
 * rakarrack rakarrack-(.[^-]*?).tar.(?:bz2|gz) SF-DEFAULT
 * ramond DEFAULT SF-DEFAULT
 * ranger DEFAULT http://download.savannah.gnu.org/releases/ranger/releases/
 * rapidsvn <a href="([0-9.]+)/"> http://www.rapidsvn.org/download/release/
 * raptor2 DEFAULT http://download.librdf.org/source/
 * rasterview DEFAULT http://www.easysw.com/~mike/rasterview/
 * ratproxy DEFAULT GOOGLE-DEFAULT
 * rb_libtorrent DEFAULT:libtorrent-rasterbar GOOGLE-DEFAULT:libtorrent
 * rcs DEFAULT GNU-DEFAULT
 * rcsslogplayer DEFAULT SF-DEFAULT:sserver
 * rcssmonitor \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssmonitor/
 * rcssserver \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/sserver/files/rcssserver/
 * rcssserver3d \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/rcssserver3d
 * rdesktop DEFAULT SF-DEFAULT
 * readline DEFAULT GNU-DEFAULT
 * readosm DEFAULT http://www.gaia-gis.it/gaia-sins/readosm-sources/
 * realmd DEFAULT http://www.freedesktop.org/software/realmd/releases/
 * recode v([.0-9]+)\.(?:tar|zip) https://github.com/pinard/Recode/tags
 * recutils DEFAULT GNU-DEFAULT
 * redet redet-(.*?).tar.gz http://billposer.org/Software/redet.html
 * redet-doc DEFAULT:redet_manual http://billposer.org/Software/redet.html
 * redis redis-(.*?).tar.gz http://redis.io/download
 * redshift DEFAULT LP-DEFAULT
 * regionset regionset-([.0-9]*?).tar.gz http://linvdr.org/download/regionset/
 * reiserfs-utils reiserfsprogs-(.*?)\.tar\.bz2 http://kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/*/
 * relaxngDatatype relaxngDatatype-([0-9.]*?).zip SF-DEFAULT:relaxng
 * relevation DEFAULT http://p.outlyer.net/relevation/files/
 * remind DEFAULT http://www.roaringpenguin.com/files/download/
 * remmina DEFAULT SF-DEFAULT
 * RemoteBox DEFAULT http://knobgoblin.org.uk/downloads.cgi
 * reposurgeon DEFAULT http://www.catb.org/~esr/reposurgeon/
 * reptyr DEFAULT https://github.com/nelhage/reptyr/tags
 * resource-agents archive/v(.*?)\.zip https://github.com/ClusterLabs/resource-agents/tags
 * rest DEFAULT GNOME-DEFAULT
 * ReviewBoard DEFAULT http://downloads.reviewboard.org/releases/ReviewBoard/*/
 * rfkill DEFAULT http://kernel.org/pub/software/network/rfkill/
 * riak (\d+\.\d+\.?\d+?)\.zip https://github.com/basho/riak/tags
 * ripright DEFAULT http://www.mcternan.me.uk/ripright/index.html
 * rlwrap DEFAULT http://utopia.knoware.nl/~hlub/rlwrap/
 * rmic-maven-plugin (\d+\.\d+[\.\d+]*) http://repo2.maven.org/maven2/org/codehaus/mojo/rmic-maven-plugin/
 * rmol rmol-([0-9.]*)\.tar\.gz SF-DEFAULT
 * rng-tools DEFAULT SF-DEFAULT:gkernel
 * root-tail DEFAULT http://oldhome.schmorp.de/marc/data/
 * roundup DEFAULT PYPI-DEFAULT
 * routino DEFAULT http://www.routino.org/download/
 * roxterm DEFAULT SF-DEFAULT
 * robust-http-client DEFAULT https://github.com/kohsuke/robust-http-client/tags
 * rp-pppoe DEFAULT http://www.roaringpenguin.com/products/pppoe
 * rpl DEFAULT SF-DEFAULT
 * rpmlint DEFAULT SF-DEFAULT
 * rpcbind DEFAULT SF-DEFAULT
 * rpmorphan DEFAULT SF-DEFAULT
 * rrdtool rrdtool-([0-9\.]+).tar.gz http://oss.oetiker.ch/rrdtool/pub/
 * rst2pdf DEFAULT GOOGLE-DEFAULT
 * rsvndump DEFAULT SF-DEFAULT
 * rsync DEFAULT http://samba.org/ftp/rsync/
 * rsyslog DEFAULT http://www.rsyslog.com/download/stable-download/
 * rtmidi DEFAULT http://www.music.mcgill.ca/~gary/rtmidi/
 * rtorrent rtorrent-(.*?)tar.gz http://libtorrent.rakshasa.no/downloads/
 * rubberband rubberband-([0-9.]*?).tar.bz2 http://www.breakfastquay.com/rubberband/

Ruby

 * ruby DEFAULT http://ftp.ruby-lang.org/pub/ruby/stable/
 * rubygem-* RUBYGEMS-DEFAULT RUBYGEMS-DEFAULT

Ruby - S

 * rwhoisd DEFAULT http://projects.arin.net/rwhois/ftp/
 * rxvt-unicode DEFAULT http://dist.schmorp.de/rxvt-unicode/
 * rygel DEFAULT GNOME-DEFAULT

S

 * s3cmd DEFAULT SF-DEFAULT:s3tools
 * s3ql DEFAULT GOOGLE-DEFAULT
 * sage DEFAULT https://sourceforge.net/api/file/index/project-name/worldforge/mtime/desc/limit/1000/rss
 * sagemath DEFAULT:sage http://boxen.math.washington.edu/home/sagemath/sage-mirror/src/index.html
 * sakura DEFAULT LP-DEFAULT
 * samba DEFAULT http://samba.org/ftp/samba/
 * sane-backends DEFAULT http://alioth.debian.org/frs/?group_id=30186
 * saoimage DEFAULT http://tdc-www.harvard.edu/software/saoimage
 * scanmem scanmem-([0-9.]*?) GOOGLE-DEFAULT:scanmem
 * scala DEFAULT http://www.scala-lang.org/downloads
 * scapy DEFAULT http://www.secdev.org/projects/scapy/files/
 * scim DEFAULT SF-DEFAULT
 * scim-bridge DEFAULT SF-DEFAULT:scim
 * scim-fcitx DEFAULT SF-DEFAULT:scim
 * scim-m17n DEFAULT SF-DEFAULT:scim
 * scim-pinyin DEFAULT SF-DEFAULT:scim
 * scipy scipy-([0-9.]*?).tar.gz SF-DEFAULT
 * scitools DEFAULT GOOGLE-DEFAULT
 * scons Production\ \(([0-9.]*).*\) http://www.scons.org/download.php
 * scponly \bscponly-(\d+\.[\d.]+)\.t SF-DEFAULT
 * screen DEFAULT GNU-DEFAULT
 * scribus DEFAULT SF-DEFAULT
 * scsi-target-utils archive/v(.*?)\.zip https://github.com/fujita/tgt/tags
 * sddm archive/(.*?)\.zip https://github.com/sddm/sddm/tags
 * SDL DEFAULT http://www.libsdl.org/download-1.2.php
 * SDL2 DEFAULT http://www.libsdl.org/download-2.0.php
 * sdcv DEFAULT SF-DEFAULT
 * sdparm DEFAULT http://sg.danny.cz/sg/p/
 * seamonkey DEFAULT http://www.seamonkey-project.org/releases/
 * sed DEFAULT GNU-DEFAULT
 * seed DEFAULT GNOME-DEFAULT
 * seekwatcher seekwatcher-(.*?).tar.bz2 http://oss.oracle.com/~mason/seekwatcher/
 * seivot DEFAULT http://code.liw.fi/debian/pool/main/s/seivot/
 * semantik DEFAULT GOOGLE-DEFAULT
 * senamirmir-washra-fonts DEFAULT:washra_fonts http://www.senamirmir.org/projects/typography/typeface.html
 * sendmail \bsendmail[.-]([\d.]+).tar ftp://ftp.sendmail.org/pub/sendmail/
 * sendxmpp archive/v(.*?)\.zip https://github.com/lhost/sendxmpp/releases
 * sextractor DEFAULT http://www.astromatic.net/download/sextractor/
 * sfk DEFAULT SF-DEFAULT:swissfileknife
 * sg3_utils DEFAULT http://sg.danny.cz/sg/sg3_utils.html
 * shadow-utils DEFAULT:shadow http://pkg-shadow.alioth.debian.org/releases/
 * sharutils DEFAULT GNU-DEFAULT
 * shigofumi DEFAULT http://xpisar.wz.cz/shigofumi/dist/
 * shogun DEFAULT https://github.com/shogun-toolbox/shogun/releases
 * shorewall DEFAULT http://www.shorewall.net/pub/shorewall/CURRENT_STABLE_VERSION_IS_*/shorewall-*/
 * shortrpm DEFAULT http://v3.sk/~lkundrak/shortrpm
 * shotwell DEFAULT GNOME-DEFAULT
 * shtool DEFAULT GNU-DEFAULT
 * shutter DEFAULT http://shutter-project.org/wp-content/uploads/releases/tars/
 * siege siege-([0-9\.]+).tar.gz http://www.joedog.org/pub/siege/
 * sigil Sigil-([0-9\.]+)-Code.zip GOOGLE-DEFAULT
 * sigscheme DEFAULT GOOGLE-DEFAULT
 * sil-andika-fonts ttf-sil-andika_([\d.]+)\.basic http://scripts.sil.org/AndikaDR_Archive
 * sil-charis-compact-fonts DEFAULT:CharisSILCompact http://scripts.sil.org/CharisSIL_download
 * sil-charis-fonts DEFAULT:CharisSIL http://scripts.sil.org/CharisSIL_download
 * sil-lateef-fonts \bLateefRegOT_([\d.]+)\.zip\b http://scripts.sil.org/cms/scripts/page.php?item_id=Lateef
 * sil-mingzat-fonts DEFAULT:Mingzat http://scripts.sil.org/Mingzat
 * sil-scheherazade-fonts DEFAULT:Scheherazade http://scripts.sil.org/cms/scripts/page.php?item_id=Scheherazade
 * simspark \"([0-9]+?\.[0-9.]+?)\" http://sourceforge.net/projects/simspark/files/simspark/
 * sipcalc DEFAULT http://www.routemeister.net/projects/sipcalc/download.html
 * sipwitch DEFAULT GNU-DEFAULT
 * skipfish DEFAULT GOOGLE-DEFAULT
 * sks DEFAULT https://bitbucket.org/skskeyserver/sks-keyserver/downloads
 * skstream DEFAULT SF-DEFAULT:worldforge
 * slang DEFAULT ftp://space.mit.edu/pub/davis/slang/*/
 * sleuthkit DEFAULT SF-DEFAULT
 * slf4j "dist/slf4j-([^"]+).tar.gz" http://www.slf4j.org/download.html
 * slib DEFAULT http://people.csail.mit.edu/jaffer/SLIB.html
 * slock DEFAULT http://tools.suckless.org/slock
 * slrn DEFAULT SF-DEFAULT
 * smartmontools DEFAULT SF-DEFAULT
 * smem smem-([0-9\.]+)\.tar\.gz http://www.selenic.com/smem/download/
 * smokeping DEFAULT http://oss.oetiker.ch/smokeping/pub/
 * smooks ve/v(.*).tar.gz https://github.com/smooks/smooks/releases
 * smp_utils DEFAULT http://sg.danny.cz/sg/smp_utils.html
 * smstools smstools3-(.*?)\.tar\.gz http://smstools3.kekekasvi.com/packages/
 * snakeyaml DEFAULT:SnakeYAML-all GOOGLE-DEFAULT
 * snapper DEFAULT ftp://ftp.suse.com/pub/projects/snapper
 * snappy DEFAULT GOOGLE-DEFAULT
 * snifflib "([^"]+)/" http://svn.code.sf.net/p/snifflib/code/tags/
 * snmp++ snmp\+\+v([0-9\.]+)\.tar http://www.agentpp.com/snmp_pp3_x/download_snmp_ppv3/body_download_snmp_ppv3.html
 * socat DEFAULT http://www.dest-unreach.org/socat/
 * soci soci-([0-9.]*)\.tar\.gz SF-DEFAULT
 * softhsm DEFAULT http://dist.opendnssec.org/source/
 * solfege DEFAULT GNU-DEFAULT
 * sombok ([0-9.]\.[0-9.]\.[0-9.].*)\.tar\.gz http://sourceforge.net/api/file/index/project-name/linefold/mtime/desc/limit/20/rss
 * sonata sonata-(.*?).tar.gz http://sonata.berlios.de/download.html
 * sonic-visualiser DEFAULT https://code.soundsoftware.ac.uk/projects/sonic-visualiser/files
 * soprano DEFAULT SF-DEFAULT
 * sound-juicer DEFAULT GNOME-DEFAULT
 * soundtracker DEFAULT http://www.soundtracker.org/
 * sox DEFAULT SF-DEFAULT
 * soxr DEFAULT SF-DEFAULT
 * spacechart DEFAULT GNU-DEFAULT
 * spamassassin DEFAULT http://spamassassin.apache.org/downloads.cgi
 * sparse DEFAULT http://kernel.org/pub/software/devel/sparse/dist/
 * sparsehash DEFAULT GOOGLE-DEFAULT
 * spatialite-gui DEFAULT http://www.gaia-gis.it/gaia-sins/spatialite-gui-sources/
 * spatialite-tools DEFAULT http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/
 * spectrwm spectrwm-(.*?).tgz https://opensource.conformal.com/snapshots/spectrwm/
 * spew DEFAULT ftp://ftp.berlios.de/pub/spew/Latest/
 * sphinx \bsphinx-(.+?)-release http://sphinxsearch.com/downloads/release/
 * spice DEFAULT http://www.spice-space.org/download/releases/
 * spindown DEFAULT GOOGLE-DEFAULT
 * splint DEFAULT http://www.splint.org/download.html
 * spyder spyder-([\d.]+\d).zip GOOGLE-DEFAULT:spyderlib
 * springframework-retry ([0-9.]+).RELEASE.tar.gz https://github.com/spring-projects/spring-retry/releases
 * sqlite ersion\s+([\d.]+\d) http://www.sqlite.org/news.html
 * sqlninja DEFAULT SF-DEFAULT
 * squashfs-tools squashfs([\d.]+)\.t SF-DEFAULT:squashfs
 * squid DEFAULT ftp://ftp.squid-cache.org/pub/squid/
 * sshmenu DEFAULT SF-DEFAULT
 * sslstrip DEFAULT http://www.thoughtcrime.org/software/sslstrip/
 * ssmtp DEFAULT DEBIAN-DEFAULT
 * st DEFAULT http://dl.suckless.org/st/
 * stapler stapler-parent-([\d\.]+).tar.gz https://github.com/stapler/stapler/tags
 * star DEFAULT ftp://ftp.berlios.de/pub/star
 * stardict DEFAULT GOOGLE-DEFAULT:stardict-3
 * starplot starplot-(.*?).tar.gz http://www.starplot.org/download.html
 * stax2-api \"(\d+\.\d+[\.\d+]*)\/\" http://repository.codehaus.org/org/codehaus/woodstox/stax2-api/
 * steghide DEFAULT SF-DEFAULT
 * stellarium DEFAULT SF-DEFAULT
 * stgit DEFAULT http://download.gna.org/stgit/
 * stix-fonts \bSTIXv([\d.]+)\.zip SF-DEFAULT:stixfonts
 * stjerm GITHUB-TAGS GITHUB-TAGS:stjerm/stjerm
 * stk DEFAULT https://ccrma.stanford.edu/software/stk/download.html
 * stompclt DEFAULT http://cons.web.cern.ch/cons/perl/stompclt/
 * strace DEFAULT SF-DEFAULT
 * strigi DEFAULT http://www.vandenoever.info/software/strigi/
 * strongswan DEFAULT http://download.strongswan.org/
 * stow DEFAULT GNU-DEFAULT
 * stunnel DEFAULT http://www.stunnel.org/downloads.html
 * subdownloader DEFAULT LP-DEFAULT
 * subnetcalc DEFAULT http://www.exp-math.uni-essen.de/~dreibh/subnetcalc/
 * subversion DEFAULT https://www.apache.org/dist/subversion/
 * sudo DEFAULT http://www.sudo.ws/sudo/dist/
 * sugar-ruler DEFAULT:Ruler http://download.sugarlabs.org/sources/honey/Ruler/
 * suitesparse DEFAULT:SuiteSparse http://www.cise.ufl.edu/research/sparse/SuiteSparse/
 * summain DEFAULT http://code.liw.fi/debian/pool/main/s/summain/
 * sundials sundials-([0-9.]+)\.tar\.[gzb2]+ http://www.llnl.gov/CASC/sundials/download/download.html
 * supertux DEFAULT http://supertux.lethargik.org/download.html
 * supertuxkart DEFAULT SF-DEFAULT
 * surf surf-(.*?).tar.gz http://dl.suckless.org/surf/
 * surfraw surfraw-(.*?).tar.gz http://surfraw.alioth.debian.org/dist/
 * svn2cl DEFAULT http://arthurdejong.org/svn2cl/downloads.html
 * svni DEFAULT SF-DEFAULT
 * svxlink svxlink-(.*\..*)\.tar\.gz SF-DEFAULT
 * swarp DEFAULT http://www.astromatic.net/download/swarp/
 * swig swig-([0-9.]*?).tar.gz SF-DEFAULT
 * sxiv DEFAULT https://github.com/muennich/sxiv/downloads
 * sylpheed DEFAULT http://sylpheed.sraoss.jp/en/download.html
 * symlinks symlinks-(.*?)\.tar\. http://ibiblio.org/pub/Linux/utils/file/
 * sympy DEFAULT PYPI-DEFAULT
 * synapse DEFAULT LP-DEFAULT:synapse-project
 * synfig DEFAULT SF-DEFAULT
 * synfigstudio DEFAULT SF-DEFAULT:synfig
 * syntastic "name":\s*"([\d\.]+)" https://api.github.com/repos/scrooloose/syntastic/tags
 * sysbench DEFAULT SF-DEFAULT
 * sysconftool DEFAULT SF-DEFAULT:courier
 * sysfsutils DEFAULT SF-DEFAULT:linux-diag
 * syslinux DEFAULT http://kernel.org/pub/linux/utils/boot/syslinux/
 * syslog-ng >(\d[\w.]+)< http://www.balabit.com/downloads/files/syslog-ng/sources/
 * sysstat DEFAULT http://sebastien.godard.pagesperso-orange.fr/download.html
 * system-config-keyboard DEFAULT https://fedorahosted.org/releases/s/y/system-config-keyboard
 * system-config-rootpassword system-config-rootpassword-([\d+\.]+)/ http://svn.fedorahosted.org/svn/system-config-rootpassword/tags/
 * systemtap DEFAULT http://sourceware.org/systemtap/ftp/releases
 * sysusage SysUsage-Sar-(.*?)\.tar\.gz SF-DEFAULT

T

 * t-prot DEFAULT http://www.escape.de/~tolot/mutt/t-prot/downloads/
 * tack tack-(.*?)\.tgz ftp://invisible-island.net/ncurses/
 * tango-icon-theme-extras DEFAULT http://tango.freedesktop.org/releases/
 * tango-icon-theme DEFAULT http://tango.freedesktop.org/releases/
 * tar DEFAULT GNU-DEFAULT
 * tagsoup tagsoup-([0-9.]*?)-src.zip http://home.ccil.org/~cowan/XML/tagsoup/
 * tcl \btcl([\d.]+)-src\.t SF-DEFAULT
 * tclap DEFAULT SF-DEFAULT
 * tcllib DEFAULT SF-DEFAULT
 * tcsh DEFAULT ftp://ftp.astron.com/pub/tcsh/
 * tcpcopy >v(.*?)< https://github.com/wangbin579/tcpcopy/releases
 * tcpdump DEFAULT http://www.tcpdump.org/release/
 * techne DEFAULT http://download.savannah.gnu.org/releases/techne/
 * telepathy-mission-control DEFAULT http://telepathy.freedesktop.org/releases/telepathy-mission-control/
 * tellico DEFAULT http://tellico-project.org/download/archive
 * terminus-fonts DEFAULT:terminus-font SF-DEFAULT:terminus-font
 * teseq DEFAULT GNU-DEFAULT
 * tesseract tesseract.([0-9\.]*).tar.gz GOOGLE-DEFAULT:tesseract-ocr
 * testdisk \btestdisk-([\d.]+).tar http://www.cgsecurity.org/wiki/TestDisk_Download
 * testng DEFAULT https://github.com/cbeust/testng/tags
 * texinfo DEFAULT GNU-DEFAULT
 * TeXmacs TeXmacs-(.*?)-src\.tar http://www.texmacs.org/tmweb/download/sources.en.html
 * texmaker DEFAULT http://www.xm1math.net/texmaker/download.html
 * texworks texworks-([.0-9]+)-r GOOGLE-DEFAULT
 * tftp DEFAULT:tftp-hpa http://kernel.org/pub/software/network/tftp/tftp-hpa/
 * thai-scalable-fonts fonts-tlwg-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-tlwg/
 * thai-arundina-fonts fonts-sipa-arundina-([0-9.]+).tar.gz http://linux.thai.net/pub/thailinux/software/fonts-sipa-arundina/
 * thermostat thermostat-([0-9]+\.[0-9]+(?:\.[0-9]+)?)\.tar\.[a-z]{2}(?!\.[a-z]{2,3}) http://icedtea.wildebeest.org/download/thermostat/
 * tidyp DEFAULT https://github.com/petdance/tidyp/downloads
 * tig tig-(.*?).tar.gz http://jonas.nitro.dk/tig/releases/
 * tigervnc DEFAULT SF-DEFAULT
 * time DEFAULT GNU-DEFAULT
 * tin DEFAULT ftp://ftp.tin.org/pub/news/clients/tin/stable/
 * tint2 DEFAULT GOOGLE-DEFAULT
 * tintin DEFAULT SF-DEFAULT
 * tkabber DEFAULT http://files.jabber.ru/tkabber/
 * tkabber-plugins DEFAULT http://files.jabber.ru/tkabber/
 * tmux DEFAULT SF-DEFAULT
 * tn5250 DEFAULT SF-DEFAULT
 * tnftp DEFAULT ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
 * tntnet DEFAULT http://www.tntnet.org/download.html
 * tokyocabinet DEFAULT http://fallabs.com/tokyocabinet/
 * tomahawk DEFAULT http://download.tomahawk-player.org/
 * tomboy DEFAULT GNOME-DEFAULT
 * tomcat DEFAULT:apache-tomcat http://www.apache.org/dist/tomcat/tomcat-7/*/src/
 * tomcat-native href="(\d+\.[^/"]+) http://www.apache.org/dist/tomcat/tomcat-connectors/native/
 * tong DEFAULT http://www.nongnu.org/tong/
 * toppler DEFAULT SF-DEFAULT
 * tor DEFAULT https://www.torproject.org/download/download.html.en
 * torque DEFAULT http://www.adaptivecomputing.com/support/download-center/torque-download/
 * tortoisehg tortoisehg-(.*?).tar.gz http://bitbucket.org/tortoisehg/targz/downloads/
 * touchcal DEFAULT SF-DEFAULT
 * truezip truezip-(\d.*) https://hg.java.net/hg/truezip~v7/tags
 * towhee DEFAULT SF-DEFAULT
 * trustedqsl DEFAULT:tqsl SF-DEFAULT
 * trac-bazaar-plugin DEFAULT:TracBzr LP-DEFAULT:trac-bzr
 * trackballs DEFAULT SF-DEFAULT
 * translate-toolkit DEFAULT SF-DEFAULT:translate
 * transmission DEFAULT http://www.transmissionbt.com/download/
 * transmission-remote-cli \bVERSION\s*=\s*'([^']+)' https://raw.github.com/fagga/transmission-remote-cli/master/transmission-remote-cli
 * transmission-remote-gtk DEFAULT GOOGLE-DEFAULT
 * trash-cli DEFAULT PYPI-DEFAULT
 * tree tree-([0-9a-z.]+).tgz http://mama.indstate.edu/users/ice/tree/
 * tre tre-(.*?).tar.bz2 http://laurikari.net/tre/download.html
 * tremulous DEFAULT SF-DEFAULT
 * trilead-putty-extension DEFAULT https://github.com/kohsuke/trilead-putty-extension/tags
 * ttf2pt1 \bttf2pt1-(\d\.[\d.]+)\.tgz SF-DEFAULT
 * ttfautohint DEFAULT http://download.savannah.gnu.org/releases/freetype/
 * tulrich-tuffy-fonts <th[^>]*>[ ]*Tuffy[ ]*([^< ]*)[ ]*</th> http://tulrich.com/fonts/
 * tumbler DEFAULT http://archive.xfce.org/src/xfce/tumbler/*/
 * tuna DEFAULT http://fedorapeople.org/~acme/tuna/
 * tunctl DEFAULT SF-DEFAULT
 * tunneler DEFAULT http://users.jyu.fi/~tvkalvas/code/tunneler
 * TurboGears DEFAULT http://www.turbogears.org/1.0/downloads/current/
 * TurboGears2 DEFAULT http://www.turbogears.org/2.1/downloads/current/
 * typespeed DEFAULT SF-DEFAULT
 * tzdata tzdata(.*?)\.tar\.gz http://www.iana.org/time-zones

U

 * uboot-tools DEFAULT:u-boot ftp://ftp.denx.de/pub/u-boot/
 * uClibc DEFAULT http://uclibc.org/downloads/
 * ucommon DEFAULT http://dev.gnutelephony.org/dist/tarballs/
 * uddi4j DEFAULT SF-DEFAULT
 * udis86 DEFAULT SF-DEFAULT
 * udisks DEFAULT http://hal.freedesktop.org/releases/
 * udisks2 DEFAULT:udisks http://udisks.freedesktop.org/releases/
 * udns DEFAULT http://www.corpit.ru/mjt/udns/
 * ufiformat DEFAULT http://www.geocities.jp/tedi_world/format_usbfdd_e.html
 * ufraw DEFAULT SF-DEFAULT
 * ugene DEFAULT http://ugene.unipro.ru/downloads/ugene_get_latest_source.html
 * uget DEFAULT SF-DEFAULT:urlget
 * uhttpmock DEFAULT https://tecnocode.co.uk/downloads/uhttpmock/
 * uim DEFAULT GOOGLE-DEFAULT
 * ulogd DEFAULT http://ftp.netfilter.org/pub/ulogd/
 * un-core-fonts un-fonts-core-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * un-extra-fonts un-fonts-extra-(.*?)\.tar\.gz http://kldp.net/projects/unfonts/download
 * unar unar(.*?)\.zip GOOGLE-DEFAULT:theunarchiver
 * unbound DEFAULT http://unbound.net/download.html
 * uncrustify DEFAULT SF-DEFAULT
 * unetbootin unetbootin-source-(.*?)\.tar\.gz SF-DEFAULT
 * unicode-ucd ([0-9.]+)/ http://www.unicode.org/Public/zipped/
 * unifdef DEFAULT http://dotat.at/prog/unifdef/
 * unison240 unison-(2\.40[.0-9]+) http://www.seas.upenn.edu/~bcpierce/unison/download/releases/
 * units DEFAULT GNU-DEFAULT
 * unlambda unlambda-(.*?).tar.gz http://hackage.haskell.org/package/unlambda
 * unoconv DEFAULT http://dag.wieers.com/home-made/unoconv/
 * unrtf DEFAULT GNU-DEFAULT
 * unuran unuran-([0-9.]*).tar.gz http://statmath.wu.ac.at/src/
 * up-imapproxy DEFAULT:squirrelmail-imap_proxy SF-DEFAULT:squirrelmail
 * uperf DEFAULT SF-DEFAULT
 * upower DEFAULT http://upower.freedesktop.org/releases/
 * UpTools DEFAULT http://www.palermo.edu/ingenieria/uptools_ingles.html
 * urjtag DEFAULT SF-DEFAULT
 * usb_modeswitch usb-modeswitch-(.*?)\.tar\. http://www.draisberghof.de/usb_modeswitch/
 * usb_modeswitch-data usb-modeswitch-data-(.*?)\.tar\. http://www.draisberghof.de/usb_modeswitch/
 * usbutils DEFAULT http://kernel.org/pub/linux/utils/usb/usbutils/
 * uucp DEFAULT GNU-DEFAULT

V

 * vacation vacation-(.*?).tar.gz SF-DEFAULT
 * vala DEFAULT GNOME-DEFAULT
 * valknut DEFAULT SF-DEFAULT:wxdcgui
 * vamp-plugin-sdk DEFAULT http://www.vamp-plugins.org/develop.html
 * vanityhash DEFAULT http://www.finnie.org/software/vanityhash/
 * varconf DEFAULT SF-DEFAULT:worldforge
 * vcsh ve/v([^-]+)\.tar\.gz https://github.com/RichiH/vcsh/tags
 * vdr DEFAULT ftp://ftp.tvdr.de/vdr/
 * vdr-epgsearch DEFAULT http://winni.vdr-developer.org/epgsearch/
 * vdr-femon vdr-femon-(2\.0.*?)\.t http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/index.php
 * vdr-osdteletext DEFAULT http://projects.vdr-developer.org/projects/plg-osdteletext/files
 * vdr-remote DEFAULT http://www.escape-edv.de/endriss/vdr/
 * vdr-screenshot DEFAULT http://www.joachim-wilke.de/vdr-screenshot.htm
 * vdr-skinenigmang DEFAULT http://andreas.vdr-developer.org/enigmang/download.html
 * vdr-skinsoppalusikka DEFAULT http://www.saunalahti.fi/~rahrenbe/vdr/soppalusikka/
 * vdr-streamdev DEFAULT http://projects.vdr-developer.org/projects/plg-streamdev/files
 * vdr-sudoku DEFAULT http://projects.vdr-developer.org/projects/plg-sudoku/files
 * vdr-ttxtsubs DEFAULT http://projects.vdr-developer.org/projects/plg-ttxtsubs/files
 * vdradmin-am DEFAULT http://andreas.vdr-developer.org/vdradmin-am/download.html
 * vdrsymbol-fonts DEFAULT:vdrsymbols-ttf http://andreas.vdr-developer.org/fonts/download.html
 * velocity ([0-9.]+)/ http://www.apache.org/dist/velocity/engine/
 * verilator DEFAULT http://www.veripool.org/projects/verilator/wiki/Installing
 * vertica-python GITHUB-TAGS GITHUB-TAGS:uber/vertica-python
 * vicious DEFAULT http://git.sysphere.org/vicious/refs/tags
 * vidalia DEFAULT http://www.torproject.org/vidalia/index.html.en
 * viewnior DEFAULT http://xsisqox.github.com/Viewnior/download.html
 * vifm DEFAULT SF-DEFAULT
 * vile DEFAULT ftp://invisible-island.net/vile/current/
 * vim DEFAULT http://ftp.vim.org/pub/vim/unix/
 * vim-command-t command-t-(.*?)\.vba http://www.vim.org/scripts/script.php?script_id=3025
 * vim-gtk-syntax GITHUB-TAGS GITHUB-TAGS:vim-scripts/gtk-vim-syntax
 * vim-jedi archive/(.*?)\.zip https://github.com/davidhalter/jedi-vim/tags
 * vim-latex vim-latex-(.*?).tar.gz SF-DEFAULT
 * vips DEFAULT http://www.vips.ecs.soton.ac.uk/supported/current/
 * virtaal DEFAULT SF-DEFAULT:translate
 * ViTables DEFAULT GOOGLE-DEFAULT:vitables
 * vmmlib DEFAULT SF-DEFAULT
 * vmpk DEFAULT SF-DEFAULT
 * vmpsd DEFAULT SF-DEFAULT:vmps
 * vmtouch DEFAULT https://github.com/hoytech/vmtouch/tags
 * vlgothic-fonts DEFAULT:VLGothic http://sourceforge.jp/projects/vlgothic/releases/
 * vorbis-tools DEFAULT http://downloads.xiph.org/releases/vorbis/
 * vrq DEFAULT SF-DEFAULT
 * vsftpd DEFAULT https://security.appspot.com/vsftpd.html
 * vttest DEFAULT ftp://invisible-island.net/vttest/
 * vzctl vzctl-([0-9.]*?)\" http://git.openvz.org/?p=vzctl;a=tags

W

 * w3c-markup-validator validator-(\d.*?)\.t http://validator.w3.org/dist/
 * wdiff DEFAULT GNU-DEFAULT
 * wv ">([0-9]\.[0-9]\.[0-9])/</a> http://www.abisource.com/downloads/wv/
 * vym vym-([0-9.]*)-.*.src.rpm http://download.opensuse.org/repositories/home://insilmaril/openSUSE_Factory/src/
 * w3m DEFAULT SF-DEFAULT
 * waf DEFAULT GOOGLE-DEFAULT
 * wannier90 DEFAULT http://www.wannier.org/download.html
 * warzone2100 DEFAULT SF-DEFAULT
 * wastesedge >wastesedge(?:-src)?-([0-9][\w.]*?).tar.gz< http://download.savannah.gnu.org/releases/adonthell/
 * wavemon DEFAULT http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/
 * wavpack GITHUB-TAGS GITHUB-TAGS:dbry/WavPack
 * weechat DEFAULT http://weechat.org/files/src/
 * wemux GITHUB-TAGS GITHUB-TAGS:zolrath/wemux
 * wfmath DEFAULT SF-DEFAULT:worldforge
 * wget DEFAULT GNU-DEFAULT
 * wgrib wgrib\.c\.v([0-9a-z.]+) ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib/
 * wgrib2 wgrib2.tgz.v([0-9a-z.]+) ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/
 * which DEFAULT GNU-DEFAULT
 * whois DEFAULT DEBIAN-DEFAULT
 * wicd DEFAULT http://launchpad.net/wicd/+download
 * wildfly GITHUB-TAGS GITHUB-TAGS:wildfly/wildfly
 * willie DEFAULT PYPI-DEFAULT
 * WindowMaker DEFAULT http://windowmaker.org/
 * wine DEFAULT SF-DEFAULT
 * wings GITHUB-TAGS GITHUB-TAGS:dgud/wings
 * wireless-tools wireless_tools\.(.*?)\.tar\.gz http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
 * wireshark wireshark-(\d+\.\d*[02468]\.\d+).tar.bz2 http://www.wireshark.org/download/src/all-versions/
 * wise DEFAULT http://www.jboss.org/wise/downloads
 * wol DEFAULT SF-DEFAULT:wake-on-lan
 * woodstox-core DEFAULT:woodstox-core-src http://wiki.fasterxml.com/WoodstoxDownload
 * wordnet WordNet-([0-9.]*)\.[tz][ai][rp] http://wordnet.princeton.edu/wordnet/download/current-version/
 * wordpress DEFAULT http://wordpress.org/download/release-archive/
 * worker DEFAULT http://www.boomerangsworld.de/cms/worker/downloads/
 * workrave DEFAULT SF-DEFAULT
 * wormux wormux-([0-9\.]*?).tar.bz2 http://download.gna.org/wormux
 * wpa_supplicant DEFAULT http://w1.fi/releases/
 * writerperfect writerperfect-(\d+\.\d+\.\d+)\.tar\.xz SF-DEFAULT:libwpd
 * wsdl4j DEFAULT SF-DEFAULT
 * wqy-microhei-fonts DEFAULT:wqy-microhei SF-DEFAULT:wqy
 * wqy-zenhei-fonts DEFAULT:wqy-zenhei SF-DEFAULT:wqy
 * wxGTK DEFAULT:wxWidgets ftp://ftp.wxwidgets.org/pub/*/
 * wxsqlite3 DEFAULT http://sourceforge.net/projects/wxcode/files/Components/wxSQLite3/

X

 * x3270 DEFAULT:suite3270 SF-DEFAULT
 * xalan-c Xalan-C\+\+.version.(.*?)< http://xml.apache.org/xalan-c/
 * xsane DEFAULT http://www.xsane.org/download/
 * xaos DEFAULT GNU-DEFAULT
 * xar DEFAULT GOOGLE-DEFAULT
 * xarchiver DEFAULT SF-DEFAULT
 * xastir DEFAULT SF-DEFAULT
 * xautomation DEFAULT http://hoopajoo.net/projects/xautomation.html
 * Xaw3d DEFAULT:libXaw3d http://xorg.freedesktop.org/archive/individual/lib/
 * xbacklight DEFAULT http://xorg.freedesktop.org/releases/individual/app/
 * xbean ([0-9]\.[0-9.]+)/ http://repo2.maven.org/maven2/org/apache/xbean/xbean/
 * xboard DEFAULT GNU-DEFAULT
 * xcb-util DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-cursor DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-image DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-keysyms DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-renderutil DEFAULT http://xcb.freedesktop.org/dist/
 * xcb-util-wm DEFAULT http://xcb.freedesktop.org/dist/
 * xchat Source: (.*?)</a> http://www.xchat.org/
 * xchm DEFAULT SF-DEFAULT
 * xcircuit DEFAULT http://opencircuitdesign.com/xcircuit/
 * xcm DEFAULT SF-DEFAULT:oyranos
 * xcompmgr DEFAULT http://xorg.freedesktop.org/archive/individual/app/
 * xdg-utils DEFAULT http://portland.freedesktop.org/download/
 * xdelta DEFAULT:xdelta3 GOOGLE-DEFAULT
 * xdrawchem DEFAULT SF-DEFAULT
 * xdrfile DEFAULT ftp://ftp.gromacs.org/pub/contrib/
 * xerces-c DEFAULT http://www.apache.org/dist/xerces/c/*/sources/
 * xerces-j2 (?i)xerces-j-src[-.]([\d.]+)\.(?:t|zip) http://www.apache.org/dist/xerces/j/source/
 * xfce4-embed-plugin DEFAULT http://archive.xfce.org/src/panel-plugins/xfce4-embed-plugin/*/
 * xfce4-equake-plugin DEFAULT http://archive.xfce.org/src/panel-plugins/xfce4-equake-plugin/*/
 * xfdashboard "name":\s*"([\d\.]+)" https://api.github.com/repos/gmc-holle/xfdashboard/tags
 * 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/
 * xgridfit DEFAULT SF-DEFAULT
 * xinetd DEFAULT http://www.xinetd.org/
 * xkbset DEFAULT http://www.math.missouri.edu/~stephen/software/xkbset/
 * xkeyboard-config DEFAULT http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/
 * xlockmore xlockmore-([0-9\.]*?) http://www.tux.org/~bagleyd/xlock/
 * xl2tpd archive/v(\d+\..+?\..*?)\.zip https://github.com/xelerance/xl2tpd/tags
 * xlhtml DEFAULT SF-DEFAULT:chicago
 * xmlbeans DEFAULT http://www.apache.org/dist/xmlbeans/source/
 * xmlgraphics-commons DEFAULT http://www.apache.org/dist/xmlgraphics/commons/source/
 * xml-security-c DEFAULT http://archive.apache.org/dist/santuario/c-library/
 * xml2 DEFAULT http://download.ofb.net/gale/
 * xmlrpc DEFAULT:apache-xmlrpc http://www.apache.org/dist/ws/xmlrpc/sources/
 * xmlstarlet DEFAULT SF-DEFAULT:xmlstar
 * xmltoman DEFAULT SF-DEFAULT
 * xmlunit DEFAULT SF-DEFAULT
 * xmms DEFAULT http://www.xmms.org/download.php
 * xmobar HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmonad HACKAGE-DEFAULT HACKAGE-DEFAULT
 * xmonad-log-applet DEFAULT GOOGLE-DEFAULT
 * xmoto DEFAULT http://download.tuxfamily.org/xmoto/xmoto/*/
 * Xnee DEFAULT GNU-DEFAULT:xnee
 * xnoise DEFAULT https://bitbucket.org/shuerhaaken/xnoise/downloads
 * xorg-sgml-doctools DEFAULT http://xorg.freedesktop.org/archive/individual/doc/
 * xorg-x11-docs xorg-docs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/doc
 * xorg-x11-drv-apm xf86-video-apm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ati xf86-video-ati-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-cirrus xf86-video-cirrus-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-dummy xf86-video-dummy-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-evdev xf86-input-evdev-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-fbdev xf86-video-fbdev-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-geode xf86-video-geode-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-glint xf86-video-glint-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i128 xf86-video-i128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-i740 xf86-video-i740-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-intel xf86-video-intel-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-ivtv DEFAULT:xf86-video-ivtv http://dl.ivtvdriver.org/xf86-video-ivtv/archive/*/
 * xorg-x11-drv-keyboard xf86-input-keyboard-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mach64 xf86-video-mach64-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mga xf86-video-mga-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-modesetting xf86-video-modesetting-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-mouse xf86-input-mouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-neomagic xf86-video-neomagic-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-nouveau xf86-video-nouveau-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-openchrome xf86-video-openchrome-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-qxl xf86-video-qxl-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-r128 xf86-video-r128-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-rendition xf86-video-rendition-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-s3virge xf86-video-s3virge-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-savage xf86-video-savage-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-siliconmotion xf86-video-siliconmotion-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sis xf86-video-sis-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-sisusb xf86-video-sisusb-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-synaptics xf86-input-synaptics-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-tdfx xf86-video-tdfx-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-trident xf86-video-trident-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-v4l xf86-video-v4l-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vesa xf86-video-vesa-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmmouse xf86-input-vmmouse-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-vmware xf86-video-vmware-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-void xf86-input-void-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-voodoo xf86-video-voodoo-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-drv-wacom xf86-input-wacom-(.*?)\.tar\.bz2 http://sf.net/projects/linuxwacom/files/
 * xorg-x11-glamor glamor-egl-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/driver/
 * xorg-x11-server xorg-server-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/xserver/
 * xorg-x11-twm twm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-util-macros util-macros-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/util/
 * xorg-x11-xauth xauth-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xbitmaps xbitmaps-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/data
 * xorg-x11-xdm xdm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xfs xfs-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xfwp xfwp-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app
 * xorg-x11-xinit xinit-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xsm xsm-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/app/
 * xorg-x11-xtrans-devel xtrans-(.*?)\.tar\.bz2 http://xorg.freedesktop.org/archive/individual/lib/
 * xosd DEFAULT SF-DEFAULT:libxosd
 * xournal DEFAULT SF-DEFAULT
 * xpenguins DEFAULT http://xpenguins.seul.org/
 * xpp2 PullParser([0-9.]*?)\.tgz http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/
 * xrestop DEFAULT http://downloads.yoctoproject.org/releases/xrestop/
 * xscreensaver DEFAULT http://www.jwz.org/xscreensaver/download.html
 * xstream <version>([^<]+)</version> https://nexus.codehaus.org/content/repositories/releases/com/thoughtworks/xstream/xstream-distribution/maven-metadata.xml
 * xteddy DEFAULT http://webstaff.itn.liu.se/~stegu/xteddy
 * xterm DEFAULT ftp://invisible-island.net/xterm/
 * xvkbd DEFAULT http://homepage3.nifty.com/tsato/xvkbd/
 * xwax DEFAULT http://xwax.org/releases/
 * xxdiff DEFAULT SF-DEFAULT
 * xz xz-(.*?)\.tar\.gz http://tukaani.org/xz/
 * xz-java xz-java-([0-9.]*?).zip http://tukaani.org/xz/java.html
 * x-tile x-tile-(.*?)\.tar\..* http://www.giuspen.com/x-tile/

Y

 * yad DEFAULT SF-DEFAULT:yad-dialog
 * yadex DEFAULT http://www.teaser.fr/~amajorel/yadex/download.html
 * yagf DEFAULT http://symmetrica.net/cuneiform-linux/yagf-en.html
 * yajl DEFAULT http://lloyd.github.io/yajl/
 * yaml-cpp DEFAULT GOOGLE-DEFAULT
 * yapet DEFAULT http://www.guengel.ch/myapps/yapet/downloads/
 * yasm DEFAULT http://www.tortall.net/projects/yasm/releases/
 * yaz DEFAULT http://ftp.indexdata.dk/pub/yaz/
 * yersinia DEFAULT http://www.yersinia.net/download/
 * ykpers DEFAULT GOOGLE-DEFAULT:yubikey-personalization
 * yoshimi DEFAULT SF-DEFAULT
 * yourls GITHUB-TAGS GITHUB-TAGS:YOURLS/YOURLS
 * youtube-dl /youtube-dl">([\d.]+)</a> http://rg3.github.com/youtube-dl/download.html
 * ypbind DEFAULT:ypbind-mt http://www.linux-nis.org/download/ypbind-mt/
 * ypserv DEFAULT http://www.linux-nis.org/download/ypserv/
 * yp-tools DEFAULT http://www.linux-nis.org/download/yp-tools/
 * ytree DEFAULT http://www.han.de/~werner/ytree.html

Z

 * z88dk DEFAULT SF-DEFAULT
 * zidrav DEFAULT:zidrav4unix SF-DEFAULT
 * zile DEFAULT GNU-DEFAULT
 * Zim zim-(.*?)\.tar\.gz http://zim-wiki.org/downloads/
 * zinnia DEFAULT SF-DEFAULT
 * zlib zlib ([0-9]\.[0-9]\.*?[0-9]) http://www.zlib.net/
 * zmap v(.*?)\.tar.gz https://zmap.io/download.html
 * znc GITHUB-TAGS GITHUB-TAGS:znc/znc
 * zorba DEFAULT LP-DEFAULT
 * zsh DEFAULT SF-DEFAULT
 * zyGrib DEFAULT http://www.zygrib.org/
 * zzuf zzuf-(.+?)\.t http://libcaca.zoy.org/wiki/zzuf


Package Owner Ignore List

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

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

Package Ignore List

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

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


Reason: it is released using daily snapshots:
* foomatic-db foomatic-db-(.*?[0-9])\.tar\. http://www.openprinting.org/download/foomatic/
Impossible to track, they are formed by subpackages:
* xorg-x11-apps
* xorg-x11-font-utils
* xorg-x11-fonts
* xorg-x11-proto-devel
* xorg-x11-resutils
* xorg-x11-server-utils
* xorg-x11-utils
* xorg-x11-xkb-utils
Unplottable, fedora and upstream versions are incompatible.
* kismet kismet-(2.*?)\.tar\. http://www.kismetwireless.net/code/
Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=635372#c2 ) :
* git
Package maintainer does not care about updates ( CLOSED WONTFIX https://bugzilla.redhat.com/show_bug.cgi?id=646941 ):
* elilo DEFAULT SF-DEFAULT
Package maintainers do not want any notice ( https://bugzilla.redhat.com/show_bug.cgi?id=722662#c2 ) :
* puppet
Remove shared-mime-info, I'm the upstream maintainer(Hadess)
* shared-mime-info DEFAULT http://people.freedesktop.org/~hadess/
Any package that is part of the coordinated KDE Software Compilation releases.
Those packages are handled as a whole and do not need individual bugs filed.
(Advance notification comes through the kde-packager mailing list.)

No notice wanted: https://bugzilla.redhat.com/show_bug.cgi?id=920611#c2 https://fedoraproject.org/w/index.php?title=Upstream_release_monitoring&diff=326643&oldid=326623

* gputils DEFAULT SF-DEFAULT
* ngspice (\d+[\d+]*) http://sourceforge.net/projects/ngspice/files/ng-spice-rework/
* piklab DEFAULT SF-DEFAULT
* pikloops DEFAULT SF-DEFAULT

Requested by Milan Crha to not be monitored:

* evolution DEFAULT GNOME-DEFAULT
* evolution-data-server
* evolution-ews
* evolution-mapi
* gtkhtml3

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