Spiga
Showing posts with label Ideas. Show all posts
Showing posts with label Ideas. Show all posts

OneClickInstall for Yum

Spent the whole day today learning Python ElementTree. And the product, a yum plugin for parsing OpenSuSE's One Click Install metadata, though, its still quite incomplete.

I've always wanted something like OCI, and I've been using RPM MetaPackages for most of my previous use. However, MetaPackages have some limitations, one of which it might conflict with existing RPMs, and if I use a lot of metapackages, I'll end up with a rpm database filled with them and each of them must have a unique name. That is good enough for sysadmins, but it can be a hassle for the so-called 'users' in the long term.

OpenSuSE's implementation looks more suitable for me, so, after waiting for quite some time for someone to implement it on fedora (and nobody has - or I didn't notice it), I decided to jump and write my own. However, the implementation on OpenSuSE is only for YaST (which I guess it beats the purpose of having the XML format multi-distro), so, I need to write my own parser.

I have experience writing yum plugins for adding features into yum for specific purposes, so what I needed is to figure out how to extract data from the XML file and install them. Gladly, ElementTree serve that purpose very well. Python Rocks!!.

For those interested to try it out, the code is here - http://kagesenshi-private.googlecode.com/svn/trunk/yum-oneclickinstall/. It works ok through command line, though for GUI, I guess it'll need some work.

To use, first, install it as you would to install any yum plugin (I won't help here, coz I don't want any 'users' to use it at this moment). Get a OneClickInstall XML file, theres an example in the code folder or write your own (OpenSuSE specification is good) and run:

# to install packages
yum oci-install oneclickinstallxmlfile

# to query metadata for packages
yum oci-query packages oneclickinstallxmlfile

# to query metadata for details
yum oci-query details oneclickinstallxmlfile

# to query metadata for repositories
yum oci-query repositories oneclickinstallxmlfile


(Of course, thats nowhere near being One-click)

Installing packages kindof works, but I'm still working on the ability to install 3rd party repository (the code is there, just need to think of some way to make it safe). Adding 3rd party repo feature is controversially not safe, as mixing repositories might make user end up with dependencies and compatibility problems. So, need to think of a good way to handle that.

Anyway, happy trying it. :D

Ideas: Fedora AppDB

This is just a post for me to jot down this idea before I forgot it.

I'm currently exploring with TurboGears for a coursework project. Out of nowhere an idea came up about an application database for Fedora. Description as follow:

Fedora Application Database

What it is?
It is a web based application which contains description, screenshots and recommendations of applications from Fedora Package Collection.

Use Case
Bob is looking for some softwares to help out in his business. He browsed through pirut but could not decide on which application to use as the descriptions are vague and theres no preview about it. He open up his browser and goto the Fedora AppDB and browsed through the community-contributed descriptions and guides. Bob can now find what he wants. Bob is now happy.

Nice features to have

  • Screenshots
  • Package description
  • Links to upstream webpages
  • Comments/thread for the applications
  • Leverage online-desktop's click-and-yum (not sure what it is really called) capability
  • Application labels (like GMail's labels)
  • Application wishlist (current wishlist tracking @ fedora wiki sux)
  • more more more~...


Now .. the_question_is = to_develop or not to_develop .. ( *lame joke* the_question_is always evaluates to True *lame joke* ) .. Codes written by me are (still) quite messy to begin with ..