/srv/irclogs.ubuntu.com/2011/12/14/#ubuntu-motu.txt

kaushalhi micahg00:28
kaushalI am hit with this bug https://bugs.launchpad.net/ubuntu/+source/kickseed/+bug/54861700:28
ubottuUbuntu bug 546929 in linux (Ubuntu Lucid) "duplicate for #548617 most PATA/SATA modules missing in Lucid netboot" [Critical,Fix released]00:28
kaushalAny fix is available for this bug ?00:29
micahgkaushal: according to this it was fixed before lucid was released00:35
kaushalok00:35
kaushalmicahg: not sure although00:35
kaushalI am using PXE to install lucid 10.04.300:36
kaushalmicahg: as per comment #10 it says use new debian installer00:36
kaushaldoes that fix the issue ?00:36
micahgkaushal: I have no idea00:37
EvilResistancemicahg:  you wouldnt happen to know where the debian support home is would you?00:37
EvilResistancefor IRC00:37
micahgEvilResistance: #debian-support on OFTC?00:37
EvilResistancethanks00:37
kaushalmicahg: where do i seek further help ?00:37
micahgkaushal: #ubuntu-installer maybe (idk if they do support) or possibly #ubuntu00:38
kaushalok00:38
kaushalmicahg: is there a search feature for ubuntu bugs ?00:49
kaushalI mean similar to google00:49
=== drewis_ is now known as drewis
=== EvilJackyAlcine is now known as JackyAlcine
nitinabHello room, i am new at gui programming and was wondering what would be the way to go about learning it and writing a simple application that i have in my head. Option right now are Glade/Python or Qt4/python06:39
pmjdebruijnnitinab: if Ubuntu is your main target I'd highly suggest Glade/Python07:21
pmjdebruijnsince most Ubuntu apps are Gtk07:21
RAOFnitinab: Well, GTKBuilder/Python.  Qt/python is also perfectly acceptable.  I've only ever really done GTK development, though.07:21
broderi've always found gtk's layout model to be unfathomable, but could trivially make qt lay things out the way i wanted07:23
nitinabwhat i am doing right now is glade/python, but i was wondering if qt/python would be easier to learn, if all i need is to have a working app to show my concept in the next 10 hours07:23
RAOFI've not tried qt/python.  I've found it trivial to whip up a gtk/python app, though.07:24
micahgwell, there's QT creator, but I haven't played with it07:24
RAOFYou could also go all Qt Quick, if javascript's your thing.07:25
nitinabok qt quick is something i didn't know about, but i am trying to stick to python for now07:26
pmjdebruijnthese days I'd probably go with Vala/GTK07:30
broderi don't think i'd recommend vala07:31
broderit feels underevolved to me still07:31
brodertoo many rough edges and not enough docs07:31
nitinabbut its supposed to be faster, leaner07:32
RAOFIt's less painful than writing gobject in C, certainly.07:32
pmjdebruijnand it's object model fits exactly onto GObject07:32
broderi would probably choose vala over c, but i don't think i'd choose it over python for quick prototyping07:33
RAOFBecause it's an automatic C/gobject generator :)07:33
pmjdebruijnI used to love Mono/GTK#, but then your stuck with Mono07:33
broderin fairness, a lot of the sourness of my experience is because the library i'm working with has terrible introspection data07:34
nitinabso i can prototype in python right now, and if it ever grows big enough that speed is an issue, rewrite the code into vala?07:35
pmjdebruijnyou can07:35
pmjdebruijnbut it's probably not the best way to go07:35
broderi think it's a fine way to go07:36
brodersize of a codebase isn't indicative of performance problems07:36
broderand there tend to only be a handful of things that are performance sensitive anyway07:36
RAOFWhich is why python C extensions exist :)07:37
broderprecisely!07:37
broderor even better, vala libraries with good introspection data + pygobject07:37
broderif you have 10 hours to build a functioning demo, i don't think you want to be bothering with C or a glorified annotated C preprocessor07:38
_rubenbrainfart, what is the usual version numbering 'scheme' when packaging a release candidate version? 0.14.0~rc3-1 for instance, or was it something else?09:06
pmjdebruijnsounds cool09:06
pmjdebruijn_ruben: I guess it should be 0.14.0~rc3-009:06
pmjdebruijnsince -1 is used upstream by debian?09:06
_ruben0.14.0-1~rc3 just doesn't look right to me, which would be the closest alternative09:06
pmjdebruijnnooo09:07
pmjdebruijn_ruben: that's basically saying the pacakaging is in rc3 version, not the software itself09:07
_rubenubuntu/debian are still at 0.12.1 ;) (pmacct)09:07
_rubenah right09:07
pmjdebruijnI know09:07
pmjdebruijnbut if there is going to be an official upstream package it will get the package version -109:08
pmjdebruijnso for personal use you'd want to go _under_ that09:08
pmjdebruijnso 0.14.0~rc3-009:08
_rubenah ok09:08
pmjdebruijnI usually "tag" my packages for personal use too09:08
pmjdebruijnso 0.14.0~rc3-0pmjdebruijn1~lucid for example09:08
pmjdebruijnfor my PPAs09:09
_rubenthat's an area i still need to create some consistency in, i sometimes do/don't use such a custom suffix09:09
pmjdebruijnI'm not sure what the exact rules are for submittence to the MOTU's are09:09
_rubenthe 0 and 1 should be interpretted how exactly btw? of the pmjdebruijn part that is09:09
pmjdebruijnhuh?09:10
_rubennever figured that one out ..09:10
pmjdebruijneverything after the - is the package version09:10
_rubenyeah, but why prefix with 0 and use 1 as suffix09:10
pmjdebruijn-1 is used upstream by debian09:10
pmjdebruijnusually you'd want to get your custom pacakges replaced by debian upstraem versions once they are available09:10
pmjdebruijnDebain starts with -109:10
_rubenoh right, doh, that's the same 0 as discussed efore09:10
_rubeni need to wake up it seems :p09:11
pmjdebruijnit's not that hard :p09:11
pmjdebruijnit's just {SOFTWARE_VERSION}-{PACKAGING_VERSION}09:11
_rubenyeah, it's the numbering within the PACKAGING_VERSION that confused me for a bit, but it's clear now :)09:12
pmjdebruijnit's just a number09:12
pmjdebruijnin my example is 0 (to keep under future Debian packages), my tag 'pmjdebruijn', and my own version '1', suffixed by a dist '~lucid'09:13
_rubenyeah09:13
pmjdebruijnbut that's my "private" scheme for my PPA09:13
pmjdebruijnnot for upstream submittance09:13
_rubenunderstood09:13
pmjdebruijnthe nice thing is that customized packages can easily be identified09:13
pmjdebruijndpkg -l | grep pmjdebruijn09:13
pmjdebruijn:D09:13
pmjdebruijnubuntu  uses a similar scheme when they modified debian packages09:14
_rubeninteresting, hadn't thought of that one :)09:14
pmjdebruijnfor example a ubuntu modified debian packages with version 0.14.0-1 becomes 0.14.0-1ubuntu109:14
pmjdebruijnwhich is what I based my scheme on09:14
_rubeni really oughta do some ppa-like automation on my local build system .. like updating the ubuntu release name in changelog and build for that appropriate release, for both i386 and amd64 .. should be fairly trivial to implement i guess09:18
* pmjdebruijn just uses PPAs09:18
pmjdebruijnallowed others to benefit as well09:19
* EvilResistance has his own ubuntu repository system set up09:19
EvilResistancebut its a private system :p09:19
_rubenusing ppas has crossed my mind as well, never really looked at how easy it would be to sync the ppas with my local repo .. then again, i plan to change from using debmirror to plain rsync someday anyway .. and possibly use debmirror or whatever to sync any ppas i might have by then09:20
pmjdebruijn_ruben: sync? apt-mirror?09:21
_rubenthere's several syncing methods, with each their own pros and cons .. should re-evaluate some day, as current setup has been around for a while now09:22
_rubensince feisty or so09:22
_rubenanyway .. thanks for the versioning pointers, afk for a bit09:23
pmjdebruijnnpo09:23
nitinabhow can i change the editor in ubuntu quickly system, my gedit isn't working09:36
pmjdebruijn"change the editor"09:41
pmjdebruijninstall another one and use it?09:41
pmjdebruijnoh wait09:42
pmjdebruijnthe application 'quickly'09:42
pmjdebruijndoh09:42
* pmjdebruijn is silly09:42
=== apachelogger_ is now known as apachelogger
=== yofel_ is now known as yofel
=== 18WAAHZ7Q is now known as jacob
Laneyhm, can syncpackage -s ... -b xxx indicate that the sync was sponsored in the message?14:46
tumbleweedwhat message?14:51
tumbleweedoh, you said -b14:52
Laneyit's ok i filed it14:52
=== JackyAlcine is now known as Guest75450
=== [Jacky] is now known as JackyAlcine
=== [Jacky] is now known as JackyAlcine
=== JackyAlcine is now known as JackyAlcine_
jtaylorwas the localhost binding issue on the builders fixed?17:06
tumbleweedsounds like you are the person most likely to know ;P17:15
jtaylorhm I'll just try a rebuild17:16
jtaylornope :/18:04
jtaylorbut it does not affect the armhf and armel builders18:04
=== WaVeR` is now known as WaVeR
tumbleweedjtaylor: I guess you need to poke lamont20:01
=== almaisan-away is now known as al-maisan
=== al-maisan is now known as almaisan-away
=== almaisan-away is now known as al-maisan
=== al-maisan is now known as almaisan-away

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!