Reply
Thread Tools
Posts: 838 | Thanked: 3,384 times | Joined on Mar 2009
#61
Originally Posted by peterleinchen View Post
Meanwhile I tried some apt-cache, awk, grep, cut, ...
and attached is what I got for you.
Hopefully you can extract the info you need comfortable enough.
Thanks, this is a good start.

(And now this goes even more stupid...) Have about packages where Maintainer-field is wrong (unmodified package from debian). E.g python-serial, web interface shows I'm the maintainer (=uploader) http://maemo.org/packages/view/python-serial/ and apt-cache doesn't show.

These might be mainly libraries and they are pulled to extras-testing anyway if they are used at all.
 
Posts: 159 | Thanked: 122 times | Joined on Nov 2009
#62
Originally Posted by AapoRantalainen View Post
How I find list of packages I have uploaded to the extras-devel, but not promoted to the extras-testing?

In general: Is there way to search packages on extras-devel by uploader/author?
I don't know, but you probably know these lists, where you can browse through
http://maemo.org/packages/repository...el_free_armel/
http://maemo.org/packages/repository...on-free_armel/
__________________
Your packages are waiting too long to get tested? HowTo encourage at TMO.
 

The Following User Says Thank You to hschmitt For This Useful Post:
peterleinchen's Avatar
Posts: 4,117 | Thanked: 8,901 times | Joined on Aug 2010 @ Ruhrgebiet, Germany
#63
Originally Posted by AapoRantalainen View Post
Thanks, this is a good start.

(And now this goes even more stupid...) Have about packages where Maintainer-field is wrong (unmodified package from debian). E.g python-serial, web interface shows I'm the maintainer (=uploader) http://maemo.org/packages/view/python-serial/ and apt-cache doesn't show.
Sorry,
but now I really do not have an idea how to find out.

If those lists, hschmitt posted, would enclose the maintaner/uploader then it might be possible (adding wget into the game).
__________________
SIM-Switcher, automated SIM switching with a Double (Dual) SIM adapter
--
Thank you all for voting me into the Community Council 2014-2016!

Please consider your membership / supporting Maemo e.V. and help to spread this by following/copying this link to your TMO signature:
[MC eV] Maemo Community eV membership application, http://talk.maemo.org/showthread.php?t=94257

editsignature, http://talk.maemo.org/profile.php?do=editsignature
 
Posts: 838 | Thanked: 3,384 times | Joined on Mar 2009
#64
Originally Posted by hschmitt View Post
I don't know, but you probably know these lists, where you can browse through
http://maemo.org/packages/repository...el_free_armel/
http://maemo.org/packages/repository...on-free_armel/
These lists have some problems. I can't read page after ~80, so I can view only packages [a-m], wgetting gives internal server error.
But this gave me an idea.

Code:
#List of every package in extras-devel:
wget http://repository.maemo.org/extras-devel/dists/fremantle/free/binary-armel/Packages.bz2
bunzip2 Packages.bz2
rm package_list.txt
cat Packages | grep --color=no Package\: | sed s'/Package: //'  | grep -v " "  >> package_list.txt
sort package_list.txt | uniq > package_names.txt
-> 6328 packages.

And then wgetting every page:
Code:
for n in `cat package_names.txt`
do
    wget "http://maemo.org/packages/view/$n/" -O "$n"
    test "$(grep 'Aapo Rantalainen' $n )" != '' && (echo $n >> aapo.txt )
done
[Edit]
6 hours and 276MB later... -> 335 packages found.
[/Edit]

Last edited by AapoRantalainen; 2013-05-27 at 11:53.
 

The Following 4 Users Say Thank You to AapoRantalainen For This Useful Post:
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 00:12.