Tim Spriggs wrote:
Erast Benson wrote:
BTW, 9300 packages imported now. 3700 missing...

With the latest repository commit:

# apt-cache stats
Total package names : 14611 (584k)
 Normal packages: 9597
 Pure virtual packages: 82
 Single virtual packages: 1017
 Mixed virtual packages: 81
 Missing: 3834

The number of un-installable packages:
# apt-cache -i unmet | grep ^Package | wc -l
926

The number of packages who wouldn't mind company:
# apt-cache unmet | grep ^Package | wc -l
1818



Another interesting statistic is to gain usage by package key words. By splitting on - and removing numbers [0-9.] you can get the following as the most repeated missing keywords in packages:

# apt-cache unmet | grep -v ^Package | cut -d: -f2- | sed 's/|/\n/g' | awk '{print $1}' | sed 's/-/\n/g;s/[0-9\.]//g' | sort | uniq -c | sort -n | tail -30
    26 mozilla
    27 kde
    28 plugins
    29 plugin
    30 dbg
    30 libapache
    30 mod
    33 ruby
    33 server
    34 xfce
    37 help
    38 libgtk
    44 client
    47 caudium
    47 dev
    47 doc
    52
    55 tools
    57 cl
    60 lightning
    61 extension
    87 ln
   118 gnome
   162 zope
   167 roxen
   176 openofficeorg
   183 support
   189 language
   238 perl
   256 python

or, only caring about depends (and not recommends/suggests):

# apt-cache -i unmet | grep -v ^Package | cut -d: -f2- | sed 's/|/\n/g' | awk '{print $1}' | sed 's/-/\n/g;s/[0-9\.]//g' | sort | uniq -c | sort -n | tail -30
    15 server
    15 utils
    16 libnet
    17
    17 client
    17 kde
    18 wxgtk
    19 scim
    20 ebox
    20 plugin
    22 ruby
    24 video
    24 xorg
    24 xserver
    25 tools
    25 xfce
    31 libgtk
    37 help
    38 dev
    43 cl
    47 caudium
    60 lightning
    61 extension
    81 gnome
    82 ln
   123 openofficeorg
   153 python
   156 zope
   165 perl
   167 roxen



So, perl,python,zope,xorg ... are largely belonging in the main repository or as modules that still need to be built. If we can manage to get java in the repository, that would be awesome.


_______________________________________________
gnusol-devel mailing list
gnusol-devel@lists.sonic.net
http://lists.sonic.net/mailman/listinfo/gnusol-devel

Reply via email to