View Single Post
Posts: 452 | Thanked: 522 times | Joined on Nov 2007
#118
Originally Posted by ewan

Code:
#!/bin/bash

deb=$1

OIFS=$IFS
IFS=$'\n'

opt_total=0
home_total=0
other_total=0


for line in $(ar p ${deb} data.tar.gz | tar -tzvf -) ; do {
        IFS=$OIFS
        array=(${line})

        case $(echo ${array[5]} | cut -b 1-5) in
        ./usr ) usr_total=$(( ${usr_total} + ${array[2]})) ;;
        ./opt ) opt_total=$(( ${opt_total} + ${array[2]})) ;;
        * ) other_total=$(( ${other_total} + ${array[2]})) ;;
        esac

        } ;
done

echo -e "Usr\tOpt\tOther"
echo -e "${usr_total}\t${opt_total}\t${other_total}"

IFS=$OIFS


If the maintainer of the actual repository servers themselves don't have time to run the scripts evan presented (it would just have to change it to add a for loop); --


Originally Posted by daperl View Post
If you want to get every deb from a particular repository, something heinous like this should work:

Code:
wget -r --no-parent --no-directories --accept deb http://repository.maemo.org/extras/pool/fremantle/free/

I am willing to run the above wget on my server (I have over a terabyte of disk space free and a pretty fast network connection). I don't think it would be wise for multiple of us to try and do this, that would probably just kill the repository servers.

I'm willing to do the grunt work and generate a spreadsheet with existing packages in extras, extras-devel and extras-testing.

Nathan.
 

The Following 5 Users Say Thank You to Nathan For This Useful Post: