View Single Post
Posts: 47 | Thanked: 78 times | Joined on May 2008
#1
Hello!

One of my friends got a N810 to use for a couple of weeks, and he has no Wi-Fi connection, and as many of you are aware, the g_ether driver doesn't work on ITOS2008 with Windows (it seems that the RNDIS part of it is broken). Thus he was quite frustrated of the fact that every package he wants to install requires other package, that one in turn wants some other package...

So he asked me if there's a way to get a list of URLs for every .deb file he wants to install... he found the thread with the suggestion to use the --print-uris switch of apt-get, but unfortunately that requires you first to do "apt-get update", and he couldn't because there was simply no Internet connection on tablet at all.

When all variants were exhausted, I sat down and wrote a simple Python script in a evening... which does exactly what one needs in such a situation: given a package name, or a .install file it will output a list of URLs.

The script is meant to be run on a PC with a Internet connection and will download the metainfo files from the repository(-ies), parse them, compute dependencies and so on. Not that it perfectly mimics apt-get (for example, it ignores the versions of the packages), but for most use cases this should be enough.

The script can be downloaded here:
https://garage.maemo.org/frs/?group_id=687

The usage is very simple:
0. Install Python, if not already (http://python.org/download/)
1. Unpack the zip archive
2. Copy /etc/apt/sources.list.d/hildon-application-manager.list from your tablet into the script directory, or use the file provided in the archive
3. On tablet, execute:

Code:
dpkg -l > installed-packages
and copy the result file installed-packages to the script directory.
4. Now try, for example:

Code:
python apt-getit.py maemo-mapper
It will first download a few metadata files from repositories in hildon-application-manager.list (don't worry, it does that only once and then uses the cached versions) and finally display a list of URLs to .deb files. Also, you could do something like this:

Code:
python apt-getit.py othello.install evince
Hope somebody finds this useful.
 

The Following 6 Users Say Thank You to anpaza For This Useful Post: