/srv/irclogs.ubuntu.com/2009/05/09/#ubuntu-devel.txt

lamontinfinity/cjwatson "any soyuz host" is what I was told.00:22
infinitylamont: Yeah, that seems to be correct. :)00:23
directhexhm. is it slangasek or pitti whom i was talking to about /usr/share/doc/monofoo issues before jaunty released? i don't remember00:45
slangasekyes00:45
directhexi've convinced meebey to allow me to push a solution to clearing symlinks on upgrade to align with debian into the debian packages, on the proviso that i keep those changes strictly to ubuntu-only when building. that much i've done. so now i just want to get the preinst "right".00:47
directhexiirc you weren't too happy with a blind "if [ -L /usr/share/doc/foo ] then rm -rf"00:47
slangasekI prefer to have it guarded by a version check00:48
directhexwhich is $2, isn't it?00:48
slangasekalso, there was some inconsistent use of quoting conventions00:48
slangasekyes00:48
slangasek(I think my comments on this were in the log of the sponsorship bug?)00:48
directhexlet me find the appropriate bug00:48
slangasekbug #344750?00:49
ubottuLaunchpad bug 344750 in mono "Mono /usr/share/doc symlink problem" [Medium,Fix released] https://launchpad.net/bugs/34475000:49
directhexyeah, just re-reading it00:50
* directhex pulls out dpkg --compare-versions00:51
cjwatsoninfinity: for armel, in case you hadn't noticed, note that the kernel is still in NEW - I'm sorting out its overrides now01:38
cjwatson(I see gcc-4.4 is still building anyway)01:38
infinitycjwatson: GCC will be at it for a long while still.  But thanks for sorting the kernel.01:52
cjwatsonkernel's accepted now01:54
geiseri_cjwatson: hrm, how do i make sure my packages file is sorted alphabetically?03:16
geiseri_sort doesnt seem to cut it on multiple lines03:16
calcgeiseri_: sort-dctrl?03:19
geiseri_will that work on a Packages file that i generate with apt-ftparchive?03:20
calcgeiseri_: i think so... you can try it anyway03:20
* geiseri_ will03:20
geiseri_calc: like a dream03:21
=== jcastro_ is now known as jcastro
geiseri_do i need to make sure all of my Packages files are sorted, or just the one for the installer?03:23
calcwell regular apt-get doesn't need them to be sorted afaik03:24
geiseri_okay03:24
calcbut i don't know about the installer03:25
geiseri_cjwatson seemed to think that there was a bug associated with an unsorted Packages file03:25
calcoh maybe there is, he would more likely know than me :)03:26
geiseri_well everyone seems to know more than me when it comes to the guts of what is going on in the installer process03:27
geiseri_:D03:27
calci used to know the guts of the installer process back around 200103:28
calcheh, but that was pre-Ubuntu and d-i03:28
calcback with original debian boot-floppies, ugh03:28
geiseri_haha, well at that point i was still drinking suse coolaid...03:28
geiseri_i could tell you all sorts of things to do with that installer process :D03:29
geiseri_the d-i stuff is very slick though from what i can see03:29
geiseri_and the preseed is also very nice03:30
calcyea it works much better than the old debian install process anyway :)03:30
geiseri_well when you spend hours a day doing winders slipstream installers, this is a dream come true :D03:31
geiseri_crap, even with the sorted package list it still blows up on the setting up of ppoe...03:32
geiseri_hrm the real error is required package netcfg is not installed03:33
geiseri_is the order in the Packages file the order udebs are installed on the system, or is that defined somewhere else?03:35
xeeHi, I had some questions about creating a Ubuntu derivative, is this the correct place to ask?03:35
geiseri_is there a way to set the order that the install steps are performed?  so that netcfg is installed and running?03:46
geiseri_how does the debian installer decide what udebs to load and in what order?  Is that what the Packages file does?03:57
iahello. i have a question about apport - please, correct me, if i wrong. as far as i understand, if my app provides /usr/share/apport/package-hooks/<my_app>.py file, then, if my app will crash, apport will notify of such crash automatically and offer to send bug report, so i don't need to worry about adding in my app some extra code for bug reporting in crash cases, right?05:19
sbeattieia: not quite. apport collection of crash information is only enabled during the development cycle; it's disabled by default for releases.05:23
iasbeattie: yep, i know about it. so, in everything else am i right?05:24
sbeattieia: apport will do the collection for crashes or if ubuntu-bug is invoked on your software package and offer to submit it to launchpad regardless of whether /usr/share/apport/package-hooks/<my_app>.py exists or not; what adding it lets you do is automatically collect relevant information about your software and attach it to the bug report.05:25
sbeattieia: for example, you can attach your app's logfiles or configuration settings, which apport normally would not attach.05:25
sbeattieia: does that make sense?05:27
iasbeattie: yes :-)05:32
lifelessia: note that my_app is actually a package name05:33
lifelesssometimes the package name differs from your app name, if your app is named generically, or with a name another package already has05:33
mpontilloDo I understand correctly that when translating software into another language, the goal is to contribute to upstream as much as possible? (rather than cluttering debian/patches?) I'm thinking about how to best fix a bug that requires a change to a user-visible string. It's in the po files, but likely shouldn't have been. (string just "SSH")05:40
lifelessmpontillo: 'ssh' or 'SSH' ?05:43
lifeless'ssh' is a command line tool name, and I'd agree with you, but 'SSH' is more of a noun..05:43
mpontillolifeless: "SSH". It's a string in a dialog box. It's "translated" into "SSH" for all languages except one, where it has some additional descriptive text in parentheses.05:43
lifelessmpontillo: and whats the change you need to make to it to fix the bug?05:44
mpontillothe bug description asks to change the text "SSH" to "SFTP".05:44
mpontillosounds simple enough ;)05:44
lifelessassuming thats correct, do it ;)05:45
lifelessif there are po files in the source package, updating their translations would seem appropriate to me. however! be aware that be build translations out of rosetta for Ubuntu main05:45
mpontillolifeless: right, so there are two strategies. I could s/SSH/SFTP/ in all the .po files. Or I could just change _("SSH") to "SSH"...05:45
mpontillo*SFTP.05:46
lifelessITYM _("SSH") -> "SFTP"05:46
lifelessright05:46
lifelessI'd talk to the author about the _() removal05:46
ialifeless: yes, i know it. in fact, as far as i know, if my_app package is not part of ubuntu packages, opening page for bug reporting will looks like https://bugs.launchpad.net/ubuntu/+source/my_app/+filebug but should as https://launchpad.net/my_app/+filebug , right? if am i right, how i can change such behavior? latest version of apport have key for 3rd party software (if run it from terminal), but how i can enable "3rd-party-mode" for apport in my app, i05:50
iaf it crashes incidentally and apport starts sending bug for this?05:50
mpontillolifeless: right. so I'd say that's a good plan, except for one fatal flaw. what if the text (written in Georgian (./po/ka.po:msgstr "SSH (უხიფათო შელი)") says "SFTP". then I'd be making a big mistake!05:50
mpontillosigh, I guess that's what I get for trying to pick something easy to learn how bzr package maintenance is done ;)05:51
lifelessia: I'm not sure05:53
lifelessmpontillo: there is a translation today; only the ones that are identical can be machine updated to SFTP05:53
lifelessmpontillo: the other one you should mark 'fuzzy' and machine update05:53
lifelessthat will indicate it needs review05:54
mpontillolifeless: ah, makes sense. where do I go to mark it "fuzzy"? is that directly in the .po file, or on a webapp on Launchpad somewhere? sorry for my ignorance; I've been reading docs, and have found pages on "how to translate", but not the process for manipulating strings as a developer that require translations05:56
lifelessif you're patching at this level, I'd say the po file05:57
lifelessbut consider mailing rosetta-users, or lp-users or ubuntu-devel or ubuntu-motu for clarification05:57
iaand another question - could anyone tell me, please, where i can find example snippets (on python and c will be more interesting), which sending crash information, even if crash haven't been occured? I'm talking about implementing "Report a Problem" menu item behavior. Of cource, i can use something like os.system('apport-gtk -f -p my_app'), but i think, that there is a little bit more elegant solution :-)06:00
mpontillolifeless: thanks, will do... looking at a .po file, I see there are translation notes in "#" comments (starting with "Translators:", etc) above each line to be translated, and they match /* */ comments above each string. now, I imagine those are all auto-generated, so I wouldn't want to break that process. I'll look around a bit to see how this works...06:03
mpontilloia: you could just do "apt-get source gedit", which has the "report a problem" menu item. looks like it calls out to /usr/share/gedit-2/gedit-bugreport, a script referenced by its .desktop.in.in file.06:25
lifelessTheMuso: I've gotten some time to poke more at my raid signature07:03
lifelessTheMuso: feedback solicited.07:03
cjwatsonmpontillo: maintainers don't normally edit .po files by hand. See the gettext documentation, but normally you can just edit the original source and then some Makefile will take care of it ...09:09
cjwatsonmpontillo: if you find you need to force it for some reason, then the command to update a .po file from newer source strings in a .pot file is 'msgmerge'09:10
cjwatsonmpontillo: you definitely shouldn't go about marking strings as fuzzy by hand09:10
cjwatsoninfinity: artigas and sejong are both stuck building debian-installer, I think because silo.postinst is prompting09:12
infinitycjwatson: \o/09:25
infinitycjwatson: Words can't describe how awesome that is...09:26
cjwatsonand yet silo has not changed09:28
cjwatsonsince, like, intrepid09:29
cjwatsonoh well, not going to debug it today09:29
infinityThe postinst unconditionally calls silo.conf if it's not an upgrade...09:29
infinityAnd I've never had silo installed in the chroots.09:29
infinitySo...09:29
infinityI'm at a loss.09:29
infinitySetting up silo (1.4.13a+git20070930-1ubuntu1) ...09:32
infinityNon-interactive, skipping silo configuration.09:32
infinityAnd that's... Not happening anymore?09:32
infinitycjwatson: Entirely possible that the chroots got their debconf frontend mangled at some point.  Let me kill these off and investigate that theory.09:37
infinitycjwatson: If that seems to be the case, I'll upload fixed ones and retry the builds.09:37
* infinity scratches his head.09:39
infinitycjwatson: This is kinda messed up.  Debconf is set correctly, and sbuild exports $ENV{'DEBIAN_FRONTEND'} = "noninteractive"09:41
cjwatsonI don't know of any debconf changes that might break that ...09:43
infinitycjwatson: It's not a debconf issue.  Debconf isn't even running.09:44
cjwatsonindeed debconf hasn't changed since jaunty anyway :)09:44
infinitycjwatson: /usr/sbin/siloconfig just checks $ENV{'DEBIAN_FRONTEND'09:44
infinity}09:44
infinityAnd sbuild hasn't changed in eons.09:44
infinityGrr.09:44
infinityCertainly not that part of it anyway.09:45
cjwatsonindeed it can hardly be a distro change since intrepid-proposed is breaking too09:45
infinityYeah.09:45
infinityAnd I assume intrepid-release worked.09:45
infinityI'm at a loss for it being a buildd change too, though, since they... Haven't changed since the last successful d-i build.09:46
cjwatsonlet's check, best not assume sparc worked09:46
infinitySo utterly confused right now.09:46
cjwatsonbut yeah, https://edge.launchpad.net/ubuntu/+source/debian-installer/20080522ubuntu28/+build/88843409:46
infinityAnd an entirely unrelated failure in jaunty not that long ago.  But silo installed fine.09:47
=== cjwatson changed the topic of #ubuntu-devel to: Archive: open for development! | Ubuntu 9.04 released! | Development of Ubuntu (not support, not app development on Ubuntu) | #ubuntu for support and general discussion for dapper-jaunty | #ubuntu-motu for getting involved in development | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs
infinityHrm.  I bet I know what it is.09:50
infinitycjwatson: Upgraded the buildds from dapper to hardy in that timeframe.09:50
infinitycjwatson: I *bet* that sudo is no longer allowed the environment leak to the apt call.09:50
infinitys/allowed/allowing/09:50
lifelessrandom question, joining two pipes in shell, I've either forgotten how or its not as easy as it should be09:55
lifeless(I have to processes A and B, I want all the output from A and then all that from B, to be piped into C)09:55
infinitycjwatson: Testing a fix.09:58
infinitycjwatson: (I'm shocked this is the first we've seen of this, if this is what I think it is...)09:59
infinitycjwatson: Given that the x86 buildds have been hardy for two cycles now.09:59
lifelessbah, I'm silly. (A; B) | C10:00
lifelessbai10:01
infinitycjwatson: Fixed on artigas, cowboying on sejong.  Will commit to rocketfuel when I'm more awake.10:05
infinitycjwatson: Looks like sudo got a lot more strict about environment leak, and apparently NOTHING ACTUALLY CARED except for silo's postinst. :P10:06
infinitycjwatson: Of course, your karmic build failed anyway, but not my fault this time. :P10:12
slangasekso why is siloconfig not using debconf?10:16
infinityDon't know and don't care?10:17
infinityThough, I suppose that invoking debconf even just to check for the frontend is still saner than relying on magic environment.10:17
infinityBut whatever.10:17
infinityChecking DEBIAN_FRONTEND in the environment isn't exactly unheard of. :P10:17
infinityJust odd that nothing else cared enough to break.10:18
slangaseksure - four years ago.  These days things are supposed to be using debconf, not just checking the variable. :)10:18
slangasekthat's why nothing else broke :)10:18
infinityOh, debconf got promoted to Required somewhere in the last century.  That does make the argument seem saner.10:19
infinityI'm still living in the distant past where debconf was something "extra" I installed in my chroots. :P10:20
infinityslangasek: If you want to fix silo, be my guest.  Since we still build for dapper, though, I'm going to keep my sbuild fix. :P10:20
slangasekno, I don't want to go anywhere near silo :)10:20
infinityNo sense of adventure.10:21
slangasekI'm afraid I'll fall in and suffocate to death amid the grain10:21
infinityI find your pun unsatisfactory.10:21
infinityPerhaps you need sleep?10:21
slangasekperhaps10:22
infinityI was tempted to stay up until armel's gcc build was done, but I can just sort all that in the morning...10:23
infinitycjwatson: Please don't re-auto the armel buildds, even after GCC is in.  The current armel chroot has all sorts of mangling done to it, and I'm going to replace it with something saner in the morning.10:23
infinitycjwatson: And your intrepid-proposed/sparc debian-installer built happily.10:24
cjwatsoninfinity: impressively limited breakage. Thanks10:34
infinitycjwatson: Yeah, in spite of vorlon's explanation, I'm still surprised that nothing else has exploded due to the variable going poof.10:35
infinitycjwatson: But, whatever.  I'm happy it hasn't.10:35
cjwatsonI'm not likely to reauto the armel buildds anyway - I'm away until end of Sunday10:36
infinitycjwatson: Works for me.10:36
mdkeWhen a point release is issued, does the proper name for a particular release include the point version? So is hardy called 8.04.2 or 8.04?10:37
mdkethe latter still, right?10:37
infinitymdke: Depends on which proper name you're looking at.10:38
infinitymdke: Check "lsb_release -a" on a hardy system, for instance.10:38
infinityDescription:    Ubuntu 8.04.210:38
infinityRelease:        8.0410:38
infinitymdke: The former is the official name/version, which includes the .210:39
infinitymdke: But the release version doesn't increment for the sake of sanity of any tools that might check against that number.10:39
Amaranth8.04.2 sounds like it should have been released 2 April 2008 :P10:39
mdkeI see that http://www.ubuntu.com/getubuntu/download uses 8.0410:40
mdkewhat I'm looking at is whether, and if so when, in the documentation we should update version numbers10:40
infinitymdke: In the docs?  Never, IMO.10:40
mdkein some cases it's essential, because links to isos are broken (the iso has .2 in the name)10:40
infinitymdke: Any links to download stuff end up symlinked with 8.04->8.04.$current anyway.10:41
mdkehttp://cdimage.ubuntu.com/jeos/releases/8.04/release/ubuntu-8.04-jeos-i386.iso doesn't10:41
infinitymdke: And do docs actually link directly to ISOs, rather than pages listing said ISOs?10:41
mdkein one place, I think, bug 37177310:41
ubottuLaunchpad bug 371773 in ubuntu-docs "broken iso link on https://help.ubuntu.com/8.04/serverguide/C/jeos-initial-setup.html" [Medium,Triaged] https://launchpad.net/bugs/37177310:41
cjwatsonthe directory is symlinked but the ISO basename isn't10:42
infinitymdke: Yeah, I'd call that a bug in the way the docs are written, IMO...10:42
mdkeperhaps linking to the directory is a better solution, even if it requires the user to do a bit more work10:43
cjwatsonanyway, in general I think of 8.04 as the "series" and 8.04.2 as identifying a specific point10:43
mdkedoing a SRU for the serverguide each time a point release is released is a bit of a pain, especially because it requires translators to redo that particular string too10:43
mdkeor at least running sed over the translations10:44
mdkeinfinity: so you'd recommend simply pointing to the directory and telling the user to wget the relevant file from the directory?10:45
infinitymdke: As much as that's less hand-holdy, I'm seriously failing to see how someone who's expected to understand a CLI-based server with almost nothing installed (JeOS is very minimal) wouldn't be able to sort out an http directory listing.10:46
mdkeyes, I don't think there is a risk that someone could get that wrong10:46
infinityOh, there's always a risk.10:47
mdkeheh10:47
infinityBut, I'm in the "let them keep both halves" camp when it's not a desktop/simple use case.10:47
mdkeok. And it seems clear that generally in other cases, 8.04 should be used10:48
mdkeas the generic name for the distribution10:48
infinityI see no reason to document 8.04.2 as a version number anywhere, except to name images, and in base-files, no.10:48
infinityIt would be about as silly as the Apache section in the server-guide talking about apache_2.2.8-4ubuntu2, and needing an update on every security release.10:49
infinity(Well, not quite, but you get the absurdity reduction there, I guess)10:49
mdkenot quite that silly, surely, but I get the point10:49
mdke:)10:49
mdkethanks for the assistanced10:50
mdke-d10:50
=== jussi01 is now known as Tuhina
=== Tuhina is now known as jussi01
=== hunger_t is now known as hunger
popogomomoone of ubuntu machines on network is throwing tons of dhcp inform packets making entire network slow11:26
popogomomohow to disable it11:26
popogomomoi have already disabled ip6 and sytem is using static address11:27
popogomomowhy its throwinhg dhcp inform packets11:27
popogomomohow do i permanently disable dhcp in ubuntu11:35
popogomomohow do i permanently disable dhcp in ubuntu11:35
popogomomoits drwoning my network11:36
Chipzzpopogomomo: wrong channel11:36
popogomomoi tried in ubuntu channel also11:36
popogomomolooks like a bug11:36
Chipzznot getting an answer in #ubuntu doesn't mean this is the place to ask; this is not an overflow channel for #ubuntu11:37
Chipzzand te fact that it "looks like a bug to you" doesn't make this the right channel either11:38
popogomomois there any way stop ubuntu send dhcp infor packets ?12:02
popogomomoi have removed dhcp client12:02
iahello. could anyone, point me, please, at python snippets, which sending crash information, even if crash haven't been occured? I'm talking about implementing "Report a Problem" menu item behavior. Of cource, i can use something like os.system('apport-gtk -f -p my_app'), but i think, that there is a little bit more elegant solution :-) results like this http://www.google.com/search?hl=en&newwindow=1&q=usage+python-apport tells me nothing, but i suppose, tha12:22
iat for adding apport support i should write in my py file something like "import apport" and add calls of functions from apport python module, but how exactly i should do this? i will be very appreciate for any clues. and, probably, such information will be very useful for apport's ubuntu wiki page. and excuse me for annoying.12:22
=== ember_ is now known as ember
popogomomowhy dont ububtu dev write utility in java rather slow and wiered python13:05
popogomomopython sucks13:05
trip0hmm... that's really subjective13:06
trip0as a developer who doesn't regularly use either, I can appreciate both13:07
trip0python syntax requires getting used to... especially if you are coming from a  c style language like java.13:08
popogomomoi find java more productive and easy13:09
popogomomoalso much more easy to maintain13:09
trip0both are very productive, 4th gen languages.13:10
trip0depends on how much experience you have though13:10
trip0a VB.NET programmer may be more productive in VB than he would in java13:11
popogomomoquality of code and maintainability is always better in java .......................13:12
popogomomoalso tools like IDE , frameworks impact productivity which is ample in java world13:12
=== kev__ is now known as triple0
=== triple0 is now known as tripzero0
=== asac_ is now known as asac
jdstrandslangasek, Riddell, kirkland, StevenK: syncbugbot still causing me problems. maybe launchpadbugs needs an update?14:44
jdstrandslangasek, Riddell, kirkland, StevenK: the problematic lines are:14:45
jdstrandb.comments.add(Bug.NewComment(text=''.join(output), subject=b.title))14:45
jdstrandtask.set_status("Fix Released")14:45
jdstrandslangasek, Riddell, kirkland, StevenK: fyi, if you hit this I worked around it by commented those out and closing the bugs manually14:46
jdstrandslangasek, Riddell, kirkland, StevenK: the problematic lines are: well, I also commented out 'b.commit()' immediately after the above two lines, since there was nothing to commit14:46
jdstrands/the problematic lines  are:14:47
jdstrandmeh14:47
kirklandjdstrand: ah, i hit that too, on Wednesday, was asking about it16:13
kirklandjdstrand: i tried updating my launchpad cookie, as it was obviously a problem in the launchpad communications16:14
kirklandjdstrand: i gave up on syncbugbot, and just did the syncs manually16:14
kirklandjdstrand: and the bug closes16:14
kirklandjdstrand: i think it might be worth getting pitti  to have a look at it :-)16:15
directhexslangasek, are you here today? can you give me feedback on a preinst before i commit to git?16:27
=== dwatson is now known as davewatson
jdstrandkirkland: I think it may be a simple as updating python-launchpadbugs, but we'll see16:59
=== jussi01 is now known as tuhina
kirklandjdstrand: bdmurray is pretty good with python-launchpadbugs, as I understand it :-)17:00
jdstrandkirkland: I familiar with it too, the issue isn't the use of it, but rather plb itself is dying17:01
jdstrandI'm17:01
jdstrandkirkland: but, we can see on monday17:01
calcit looks like armel needs to be set back to auto17:12
=== DktrKranz2 is now known as DktrKranz
Q-FUNKI welcome suggestions for an appropriate package to reassign bug #374140 to. :)17:18
ubottuLaunchpad bug 374140 in upgrade-system "on 8.04 success install cant upgrade to 8.10 because via/openchrome frezz screen" [Undecided,New] https://launchpad.net/bugs/37414017:18
ash211Q-FUNK: looks like a driver issue to me17:22
ash211ask the poster for the relevant info in https://wiki.ubuntu.com/X/Reporting17:22
ash211I think by "frezz" they mean "freeze" :)17:22
Q-FUNKyup, it indeed looks like one, but it was reported against the entirely wrong package17:23
Q-FUNKyup17:23
ash211it's understandable why it went against upgrade-system instead of any driver package17:23
ash211that's the program the person used right before it messed everything up17:23
ash211(oh nvm, that's the only bug reported against that package, so it must not do what I think it does)17:24
=== azeem_ is now known as azeem
jdstrandslangasek, Riddell, kirkland, StevenK, pitti: it just occurred to me that I have some launchpad api code I can steal/use to get syncbugbot working again-- I'll do that first thing on monday17:29
Q-FUNKash211: people regurlary report whatever went wrong during an upgrade against package 'upgrade-system', when there instead should be a separate task to report failed upgrades against.17:33
Q-FUNKthis is just one of many such occurences17:33
Q-FUNKI get a bunch of similar reportes every 6 months, whenever a new ubuntu release comes out - always against package 'upgrade-system'17:36
a|wenwhat is the status of libboost1.37 in karmic, can see that it is in main now ... is it okay to use, encouraged to use, or ?18:20
james_wencouraged18:21
a|wenokay, thx18:23
calca|wen: we will hopefully get boost1.38 working as well to transition to for karmic18:35
a|wencalc: okay... you are the person to talk to for boost?18:36
calca|wen: no, i just looked into it since OOo uses it also18:44
calca|wen: debian wasn't to transition off of boost1.37 so it would be good once boost1.38 can actually build to switch to using it18:45
a|wencalc: okay ... thx for info :)18:45
calca|wen: its probably failing to build for us due to using gcc 4.418:46
a|wencalc: most likely ... boost 1.35 looks to be busted as well :(18:46
calcyea18:46
calci had to switch OOo to use 1.37 which is why it is in main now18:47
a|wencalc: okay; then no wonder i can't make it due much18:47
a|wendo even18:47
calcthey already released 1.39 upstream but still haven't apparently tested it against gcc 4.4 yet18:48
a|wenwe'll see what happens; i'll switch to 1.37 for now as well then18:49
calcthere is at least one patch in their bug tracker to fix gcc 4.4 issues18:51
ScottKThat might be what 1.38 needs.18:51
calchopefully the debian boost people package 1.39 soon then we could just jump to that after any needed gcc 4.4 fixups18:52
calcit was released a week ago18:52
a|wen1.37 seems to work "okay" at least18:53
calchttps://svn.boost.org/trac/boost/ticket/3008 <- gcc 4.4 bug i found18:53
a|wencalc: well, compared to 1.35 it is luxury ... this is the file failing for me on 1.35 http://pastebin.com/f44e80488 :(18:54
calcheh18:54
LaserJockScottK: any chance of having 1.38 or so in -backports?18:55
* calc thinks he knows a way to club OOo into building on i386/lpia18:56
calci can just disable gcj entirely, heh :-\18:57
highvoltagehey LaserJock18:58
LaserJockhighvoltage: hola18:59
=== ScriptRipper_ is now known as ScriptRipper
=== hunger_t is now known as hunger
=== tuhina is now known as jussi01
kklimondawhat was called the utility which manipulates .diff files?19:51
geserin which way manipulate?20:06
kklimondaI have a big diff and I'd like to get part of it (only diff for .cc files to be exact)20:07
geserfilterdiff20:07
kklimondathanks20:07
DraconicusI have a small suggestion for the #ubuntu channel's management, and this is the only sane place I can think to present it.20:47
DraconicusEver thought of splitting the channel up with freenode managing an automatic redirect based on a user cap?20:48
DraconicusLike #ubuntu1 #ubuntu2 and #ubuntu3 - you already have an overflow channel, but #ubuntu remains massively overpopulated and very difficult to work in. There are plenty of assistants to go around these days.20:48
DraconicusI'm sure I'm not the first to suggest this... Perhaps it's futile to try.20:49
LaserJockDraconicus: I think #ubuntu-irc might be a better place20:56
DraconicusOho. Sorry. :P20:56
NafalloLaserJock: #ubuntu isn't a loco channel, no :-)21:02
NafalloLaserJock: #ubuntu-ops21:02
slangasekjdstrand: hrm, it's still not working for you?  works fine here - you know that you need a cookie for !edge, right?21:42
slangasekjdstrand: anyway, launchpadlib isn't really an option, you can't sanely run launchpadlib stuff remotely...21:43
kklimonda#ubuntu-irc will be a better place for this discussion22:02
=== vorian is now known as heHATEme
=== edsoncanto is now known as ecanto
=== tkamppeter__ is now known as tkamppeter
=== kklimonda_ is now known as kklimonda

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