[12:10] got a question [12:11] could someone tell me it this is acceptable to create package that could change config file created by another package? [12:12] s/me it/me if it/ [12:12] ehh [12:12] sorry I'm tired - my english sucks - but I hope you get my point === Hobbsee [n=Hobbsee@CPE-144-136-113-76.nsw.bigpond.net.au] has joined #ubuntu-motu [12:13] as in package X would alter a conffile of package Y? [12:13] crimsun: yes [12:13] I'm pretty sure directly doing so is a grave Policy violation [12:14] I give an example - I would like to add language pack for some app [12:15] and I need to add this language to some Array entry in main package config === LaserJock [n=laserjoc@ubuntu/member/laserjock] has joined #ubuntu-motu [12:15] is this acceptable? or policy violation? [12:18] http://www.debian.org/doc/debian-policy/ch-files.html#s10.7.4 === bluefoxicy [n=bluefox@c-68-33-112-13.hsd1.md.comcast.net] has left #ubuntu-motu ["Ex-Chat"] [12:19] crimsun: thanks [12:20] marcin`: np [12:22] hello LaserJock [12:23] crimsun: ok this is pretty clear [12:24] crimsun: but now I don't know how to do one thing [12:24] crimsun: maybe you could have some idea [12:24] crimsun: thing is: I got package X that depends on A | B | C [12:25] crimsun: so I can install any: A | B or C to satisfy dependency [12:25] crimsun: then I got a little problem because I need to create some postinst script in X [12:25] crimsun: because it has to set some settings in it's config file [12:26] crimsun: it has to set if there is A or B or C installed [12:26] crimsun: but it is doable === janm [n=jmalonzo@ppp4592.dsl.pacific.net.au] has joined #ubuntu-motu [12:27] crimsun: problem is that for example I can install X + A + C [12:27] crimsun: dependency will be ok [12:27] crimsun: but then I can remove C - apt will not complain because there is still A [12:27] marcin`: do A && B && C all share one conffile? [12:27] crimsun: so still no problem with dependencies [12:28] crimsun: but then how could I force X to update it's conffile because C is removed? [12:28] crimsun: I think that X will own conffile and will create this with postinst [12:29] crimsun: so postinst script could detect if for example there is A and C [12:29] crimsun: and will set this in conffile [12:30] that seems unwise architecturally [12:31] crimsun: I know but don't have any better idea... [12:31] marcin`: why isn't this stuff just all in the same package? [12:31] crimsun: and this is why I ask gere [12:31] here [12:31] LaserJock: because they got different sources, separate development and can be pretty big [12:32] ok, do you have control over A, B, and C? [12:32] crimsun: what do you mean 'control' ? [12:32] marcin`: what is the relation of X to A | B | C ? [12:33] crimsun: X needs at last one of them to work properly [12:33] crimsun: let's say that X is application and A = english | B = german | C = polish lang packs [12:34] crimsun: and then there has to be at least one for this app to work [12:34] crimsun: but this application X has to know about them - it needs a list of languages in conffile [12:35] crimsun: if I set up dependency X -> A | B | C then I could install only B [12:35] crimsun: and because X depends on B then B will be installed first then X [12:36] one possible solution I can see is not making said config file a conffile [12:36] crimsun: so, postinst in X will know that B is available and will add info about B to conffile [12:36] but provide a tool in X to generate said file according to other configurations [12:37] then call said tool in A, B, C 's postinst and postrm [12:37] crimsun: but then if I'll add C and A there will be no way to add these to conffile owned by X [12:37] yeah, that's the issue I'm trying to think of [12:37] crimsun: without dpkg-reconfigure X [12:37] because you don't necessarily have control over A's, B's, or C's prerm === persia [n=persia@p1119-ipbf510marunouchi.tokyo.ocn.ne.jp] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu [12:43] minghua: could you tell more about your solution? [12:43] minghua: I don't understand it yet [12:43] that solution is akin to what language-pack-* do [12:45] crimsun: yes but unfortunately not in 100% [12:45] language-pack-* depend on locales, and each time a language-pack-* is installed, /usr/share/locales/install-language-pack is invoked [12:45] yes, that's the issue of "control" that I'm referring to [12:45] crimsun: because you can remove all language-pack- and applications that use languages [12:45] because to have X function as you wish, you need to provide a means for A, B, and/or C to call some utility provided by X [12:45] crimsun: will still work and will be set to default english [12:46] crimsun: so you can remove all lang packs and for example gnome will still work [12:46] crimsun: my X'app won't [12:49] marcin`: that doesn't really matter, you can enforce that one of A, B or C must be installed by dependency [12:49] to make it easier to talk, say your X needs a /etc/X.conf config file [12:50] ok and? [12:50] you don't ship it in your X package, but provide a /usr/bin/update-X-config tool to generate it [12:51] then your A, B, C can each ship a /etc/X.conf.d/{A,B,C} respectively [12:51] the update-X-config tool can read these files in /etc/X.conf.d/ and generate a /etc/X.conf file accordingly [12:52] now you have X Depends: on A | B | C, and have A, B, and C's postinst and postrm scripts all call /usr/bin/update-X-config [12:52] I think your problem should be solved [12:53] minghua: you are optimist ;) [12:53] it's more problematic if he's dealing with actual language packs, though, because he doesn't control their post* [12:53] well, optimist for other people's problem :-) [12:53] minghua: because this config file has to be in php syntax [12:53] crimsun: that's true, I am assuming he has complete control for all X, A, B and C packages [12:54] minghua: I will have complete control over X,A,B,C and D-Z ;) [12:55] oh, in that case the "problem" is moot [12:55] I'm thinking more along the lines of actual language packs, where you might want to compare a hash of the mtime of /var/lib/locales/ [12:56] it sounds like your issue is much simpler :) [12:57] hmm ok maybe but I see a little issue here... [12:57] I got X and it provides 'configUpdateTool' [12:58] and it depends on A | B | C and minghua says that they should call this configUpdateTool from their postinst? [12:58] but they cannot while they don't depend on X :) [12:59] and if X depends on A/B/C then one of them will be installed first ;) [12:59] if A | B | C use a conffile that X owns, then they each must depend on X [01:00] so X-> A | B | C and A->X B->X and so on? [01:00] hmm, good point [01:00] that would be a circular dependency [01:00] now I know why there is a libgtk2.0-bin package :-) === Amaranth [n=travis@ubuntu/member/amaranth] has joined #ubuntu-motu [01:01] hmm, I say upload it and see how many users complain ;-) === LaserJock hides *g* [01:01] yep, that's why a lot of packages split out -base and -common, etc. [01:01] marcin`: split X to two packages, X and X-bin, X would depends on X-bin and A | B | C, but A, B, and C will only depend on X-bin, not X [01:02] LaserJock: that seems to be some maintainer's opnion as well, unfortunately :-( [01:03] minghua: I don't know that it would make it past REVU and elmo though [01:03] minghua: and which package should own this config-tool? X or X-bin ? [01:03] the latter [01:04] (if you used the former, you'd be in precisely the predicament we've all described) [01:04] I see smoke over my head.... [01:05] so I install X-bin first... [01:05] LaserJock: well, as a matter of fact, they do [01:05] then X which depends on A/B/C so at least one of them will have to be installed right? [01:06] so they will run some ConfTool from X-bin to generate config for X ? [01:06] am I right? [01:06] LaserJock: I was sad to see the /usr/lib/pkgconfig/*.pc files installed in skim package, instead of libskim-dev, for example [01:07] apparently the maintainer hasn't tried using libskim-dev in a pbuilder himself [01:08] marcin`: roughly right, although you don't need to install X-bin first [01:08] I believe you can install them together [01:09] I think A depending X-bin will make sure X-bin is unpacked and configured when A's postinst runs (but I may be wrong) [01:09] ok let's assume [01:09] now after saying that, apparently postrm is not a good place as when running A's postrm X-bin can be already removed... [01:09] I run: apt-get install X [01:10] it will install X-bin, A, and X [01:10] and it's ok [01:10] in that case you want X-bin to be a PreDepends of A,B,C [01:10] then I want to install B so I run [01:10] apt-get install B [01:11] X-bin is already there so this will install without problem [01:11] but then how will X know that B is installed? === Se7h [n=MUAHAHAH@bl4-85-34.dsl.telepac.pt] has joined #ubuntu-motu [01:12] B will have to update configuration? [01:12] actually no, don't use PreDepends, as that's a special corner case [01:13] Policy 7.2 states that if configuring X is delayed until all of X-bin, A, B, and C are configured [01:13] s/if// [01:13] or in your case, until X and at least one of A | B | C [01:13] argh [01:13] until X-bin and at least one of A | B | C === vivid [n=vivid@c-67-160-125-239.hsd1.wa.comcast.net] has joined #ubuntu-motu === persia [n=persia@p1119-ipbf510marunouchi.tokyo.ocn.ne.jp] has left #ubuntu-motu [] === Amaranth_ [n=travis@24-116-61-125.cpe.cableone.net] has joined #ubuntu-motu === lakin [n=lakin@dsl-hill-66-18-228-60-cgy.nucleus.com] has joined #ubuntu-motu === freeflying [n=freeflyi@61.190.65.25] has joined #ubuntu-motu === atie_ [n=atie@12.163.162.2] has joined #ubuntu-motu [01:36] hi, all [01:36] hi atie_ [01:37] hi, LaserJock. [01:37] minghua, ping. [01:56] hi [01:57] hi Se7h [01:57] hey there LaserJock === zakame [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu === hub [n=hub@toronto-hs-216-138-231-194.s-ip.magma.ca] has joined #ubuntu-motu === marcin` [n=user@194.114.146.58] has joined #ubuntu-motu [02:24] After writing uvf exception to motu ml, then do I need to upload source package to REVU by myself? [02:24] is it a sync, a merge, or a new upstream not in Debian? [02:24] (syncs don't need to be uploaded to REVU) [02:25] Updated version is in Debian. [02:25] so it's a sync or a merge? [02:25] It's sync, I guess. [02:25] then there's no need to upload to REVU [02:25] atie_: hi [02:26] freeflying, hi [02:26] crimsun, then just wait for approval? [02:26] yes [02:26] atie_: ttf-alee has new upstream released [02:36] freeflying, yes. I wrote uvf-exception for that. [02:42] atie_: pong === marcin` [n=user@194.114.146.58] has joined #ubuntu-motu === reggaemanu_ [n=manu@ARennes-257-1-106-85.w86-210.abo.wanadoo.fr] has joined #ubuntu-motu [02:54] minghua, thank for the mail. === bmonty [n=bmontgom@ubuntu/member/bmonty] has joined #ubuntu-motu [03:06] atie_: ah, sure, you are welcome :-) === zakame [n=zakame@ubuntu/member/zakame] has joined #ubuntu-motu [03:06] hi MOTUs === mhz [n=mhz_chil@pc-252-84-215-201.cm.vtr.net] has joined #ubuntu-motu === mhz [n=mhz_chil@moinmoin/fan/mhz] has left #ubuntu-motu ["Leaving"] === LaserJock_away [n=laserjoc@ubuntu/member/laserjock] has left #ubuntu-motu ["Leaving"] [03:17] minghua, does corrected one look OK? === slomo_ [n=slomo@ubuntu/member/slomo] has joined #ubuntu-motu [03:23] bug 8681 [03:23] malone bug 8681 in control-center capplets "Changing keyboard layouts in keyboard configuration applet gives an error" [Normal,Rejected] http://launchpad.net/bugs/8681 === herzi [n=herzi@c184049.adsl.hansenet.de] has joined #ubuntu-motu === LaserJock [n=mantha@ubuntu/member/laserjock] has joined #ubuntu-motu [03:38] atie_: haven't looked carefully yet, will reply tonight [03:39] minghua, thank you. === bmonty [n=bmontgom@ubuntu/member/bmonty] has joined #ubuntu-motu [03:43] hi bmonty [03:43] hey LaserJock === zenrox [n=zenrox@71.115.198.118] has joined #ubuntu-motu === Kyral [n=kyral@ubuntu/member/kyral] has joined #ubuntu-motu === atie_ [n=atie@12.163.162.2] has left #ubuntu-motu ["bye"] === lakin [n=lakin@dsl-hill-66-18-228-60-cgy.nucleus.com] has joined #ubuntu-motu === Psi-Jack [n=psi-jack@cpe-70-112-220-160.austin.res.rr.com] has joined #ubuntu-motu [05:33] Hmm. Where's the basic docs on building a new package? :/ [05:34] Psi-Jack: I'd check out some of the links at wiki.ubuntu.com/UbuntuPackagingGuide/Resources [05:34] I think I found it. Finally. ;) [05:35] that looks familiar, LaserJock ;) [05:36] I'm trying to upgrade mldonkey-server to 2.7.3 for me. heh === irvin [n=irvin@ubuntu/member/irvin] has joined #ubuntu-motu [05:36] crimsun: yep === reggaemanu [n=manu@ARennes-257-1-106-85.w86-210.abo.wanadoo.fr] has joined #ubuntu-motu === godiane [n=godiane@58.69.193.15] has joined #ubuntu-motu === Gloubiboulga [n=gauvain@ubuntu/member/gloubiboulga] has joined #ubuntu-motu === zakame [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu [07:16] afternoon MOTUs [07:18] morning zakame ;) [07:18] heya Gloubiboulga! :D [07:19] hey zakame [07:19] hey Gloubiboulga [07:19] hi Hobbsee === Hobbsee wishes her machine built quicker! [07:22] heya Hobbsee! [07:23] :) [07:23] built what? [07:24] kdenetwork [07:24] trying to patch it, we'll see if it works [07:34] heh, doesnt work - wont even build === Mez [n=Mez@ubuntu/member/mez] has joined #ubuntu-motu === jsgotangco [n=jsg@ubuntu/member/jsgotangco] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu === irvin [n=irvin@ubuntu/member/irvin] has joined #ubuntu-motu === Mez_ [n=mez@ubuntu/member/mez] has joined #ubuntu-motu === Mez_ [n=mez@ubuntu/member/mez] has left #ubuntu-motu ["Leaving"] === jsgotangco [n=jsg@ubuntu/member/jsgotangco] has joined #ubuntu-motu === j^ [n=j@e178062227.adsl.alicedsl.de] has joined #ubuntu-motu === nlindblad [n=nlindbla@user179.217-10-120.netatonce.net] has joined #ubuntu-motu === TheMuso [n=luke@dsl-202-173-132-131.nsw.westnet.com.au] has joined #ubuntu-motu === zakame [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu === tvelocity [n=tony@ipa222.13.tellas.gr] has joined #ubuntu-motu === ealden [n=ealden@203.76.212.175] has joined #ubuntu-motu === crimsun [n=crimsun@pdpc/supporter/silver/crimsun] has joined #ubuntu-motu === raphink [n=raphink@ubuntu/member/raphink] has joined #ubuntu-motu === tvelocity [n=tony@ipa41.2.tellas.gr] has joined #ubuntu-motu === freeflying [n=freeflyi@61.190.65.25] has joined #ubuntu-motu === raphink [n=raphink@ubuntu/member/raphink] has joined #ubuntu-motu === tvo [n=tobi@5354EA9B.cable.casema.nl] has joined #ubuntu-motu === Hirion [n=hirion@draugr.de] has joined #ubuntu-motu === MagnusR [n=magru@c83-250-59-127.bredband.comhem.se] has joined #ubuntu-motu === TheMuso [n=luke@dsl-202-173-132-131.nsw.westnet.com.au] has joined #ubuntu-motu === TheMuso [n=luke@dsl-202-173-132-131.nsw.westnet.com.au] has joined #ubuntu-motu === Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-motu === mhz [n=mhz_chil@pc-252-84-215-201.cm.vtr.net] has joined #ubuntu-motu === irvin [n=irvin@ubuntu/member/irvin] has joined #ubuntu-motu === Hobbsee_ [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-motu === Hobbsee_ [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-motu === TheMuso [n=luke@dsl-202-173-132-131.nsw.westnet.com.au] has joined #ubuntu-motu === vivid [n=vivid@c-67-160-125-239.hsd1.wa.comcast.net] has joined #ubuntu-motu === Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-motu === fredix [n=fredix@85.65.97-84.rev.gaoland.net] has joined #ubuntu-motu === trappist [i=trappist@tra.ppi.st] has joined #ubuntu-motu === tomas_ [n=tomas@81-234-92-64-no91.tbcn.telia.com] has joined #ubuntu-motu === spacey [n=herman@flits101-191.flits.rug.nl] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu === xophEr [n=xopher@a84-230-124-206.elisa-laajakaista.fi] has joined #ubuntu-motu === Hirion [n=hirion@draugr.de] has left #ubuntu-motu [] === Gloubiboulga [n=gauvain@ubuntu/member/gloubiboulga] has joined #ubuntu-motu === jsgotangco [n=jsg@ubuntu/member/jsgotangco] has joined #ubuntu-motu === j^_ [n=j@e178058094.adsl.alicedsl.de] has joined #ubuntu-motu === zakame [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu [02:02] evening MOTUs [02:02] zakame: evening [02:03] hi freeflying :) === zakame [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu === thierry [n=thierry@modemcable023.222-70-69.mc.videotron.ca] has joined #ubuntu-motu === j^ [n=j@e178058094.adsl.alicedsl.de] has joined #ubuntu-motu === tvelocity [n=tony@ipa41.2.tellas.gr] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu === JohnnyMast [n=rave@84-104-9-27.cable.quicknet.nl] has joined #ubuntu-motu === Gervystar [n=alessand@ip-124-244.adsl.cheapnet.it] has joined #ubuntu-motu === winkle [i=winkle@kleopatra.acc.umu.se] has joined #ubuntu-motu === winkle [i=winkle@kleopatra.acc.umu.se] has left #ubuntu-motu [] === Gervystar [n=alessand@ip-124-244.adsl.cheapnet.it] has joined #ubuntu-motu === doko [n=doko@dslb-084-059-116-248.pools.arcor-ip.net] has joined #ubuntu-motu === xerxas [n=xerxas@240.98.98-84.rev.gaoland.net] has joined #ubuntu-motu [03:03] hi [03:03] we're already in the freeze ? [03:03] oops [03:03] topic [03:03] sorry guys === sebest [n=sebest@sebest.ovibes.com] has left #ubuntu-motu ["Leaving"] === sebest [n=sebest@sebest.ovibes.com] has joined #ubuntu-motu === xerxas [n=xerxas@240.98.98-84.rev.gaoland.net] has joined #ubuntu-motu === iBalo [n=user@dslc-213-023-180-192.pools.arcor-ip.net] has joined #ubuntu-motu === tvo [n=tobi@5354EA9B.cable.casema.nl] has joined #ubuntu-motu === iBalo [n=user@dslc-213-023-180-192.pools.arcor-ip.net] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu === jpatrick [n=patrick@ubuntu/member/jpatrick] has joined #ubuntu-motu === iBalo [n=user@dslc-213-023-180-192.pools.arcor-ip.net] has left #ubuntu-motu [] === bmonty [n=bmontgom@ubuntu/member/bmonty] has joined #ubuntu-motu === sovvy2009 [n=sovvy200@82-37-32-193.cable.ubr01.brom.blueyonder.co.uk] has joined #ubuntu-motu === sovvy2009 [n=sovvy200@82-37-32-193.cable.ubr01.brom.blueyonder.co.uk] has left #ubuntu-motu [] === joe_alf [n=joey@n219077083119.netvigator.com] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu === lakin [n=lakin@dsl-hill-66-18-228-60-cgy.nucleus.com] has joined #ubuntu-motu === zenrox [n=zenrox@71.115.198.118] has joined #ubuntu-motu === zenrox [n=zenrox@71.115.198.118] has joined #ubuntu-motu === AstralJava [n=jaska@cm-217-078-207-6.lohjanpuhelin.fi] has joined #ubuntu-motu === dholbach [n=daniel@p54BE8D4E.dip0.t-ipconnect.de] has joined #ubuntu-motu === sebest [n=sebest@sebest.ovibes.com] has left #ubuntu-motu ["Leaving"] === zenrox [n=zenrox@71.115.198.118] has joined #ubuntu-motu === lakin [n=lakin@dsl-hill-66-18-228-60-cgy.nucleus.com] has joined #ubuntu-motu === dous [n=adpenara@efreet.edu.ms] has joined #ubuntu-motu === plugwash [i=plugwash@p10link.net] has joined #ubuntu-motu === Hirion [n=hirion@draugr.de] has joined #ubuntu-motu === ogra [n=ogra@ubuntu/member/ogra] has joined #ubuntu-motu === engla [n=ubuntu@kr-lun-116-144-233-83.3.cust.bredband2.com] has joined #ubuntu-motu === lakin [n=lakin@dsl-hill-66-18-228-60-cgy.nucleus.com] has joined #ubuntu-motu === lbm [n=lbm@130.225.243.71] has joined #ubuntu-motu === Arrogance [n=aks@ottawa-hs-209-217-79-56.d-ip.magma.ca] has joined #ubuntu-motu === spacey [n=herman@flits101-191.flits.rug.nl] has joined #ubuntu-motu === punkrockguy318 [n=lukas@c-68-84-69-12.hsd1.nj.comcast.net] has joined #ubuntu-motu === LaserJock [n=mantha@ubuntu/member/laserjock] has joined #ubuntu-motu [08:11] ok, I must admit I'm a little confused about UVF exceptions [08:12] it seems like anything that isn't going to cause problems is getting an exception. I thought it had to be important, bug-fix only changes. [08:25] I think that if a package doesn't have any packages that depend on it, the UVF exception is a formality [08:25] hmm, well I wish I had known that earlier [08:26] why is that? [08:26] because there are quite a few science related packages that I could've gotten in [08:27] LaserJock: well there is always dapper+1 :) [08:28] bmonty: yes, I just wish I had known. I guess I was taking UVF more seriously than I needed to === herzi [n=herzi@c184049.adsl.hansenet.de] has joined #ubuntu-motu === poningru [n=poningru@pool-71-251-119-151.tampfl.fios.verizon.net] has joined #ubuntu-motu [08:31] LaserJock: just get them in Debian and then Sync them when Dapper+1 opens :D [08:32] Kyral: I'm talking about syncing from Debian now. I think we could more updated science packages if I had know earlier [08:32] ah [08:33] soerry lol [08:34] hmm, yeah. we are up to 98 outdated packages in Dapper for MOTU Science. [08:35] heh [08:35] I may cleanup EasyChem soon [08:36] like in debian/ [08:36] oh...are any outstanding accepted UVF Exceptions going to be brought in? [08:36] Kyral: what do you mean? [08:37] Daniel accepted the UVFE for GTKEdit a couple weeks ago but I haven't seen it sync'd [08:38] or Accepted [08:39] Kyral: well the syncs and NEW are pretty backed up [08:39] ah [08:39] are UVF exceptions harder to get after FF? [08:40] I might try to get a few in before Dapper is released [08:53] hmm [08:53] I should write a script to build the newest XFCE from SVN === Hirion [n=hirion@draugr.de] has joined #ubuntu-motu === lionelp [n=lionel@ip-128.net-82-216-65.rev.numericable.fr] has joined #ubuntu-motu === Gloubiboulga [n=gauvain@ubuntu/member/gloubiboulga] has joined #ubuntu-motu === allee [n=ach@dialin-145-254-252-048.pools.arcor-ip.net] has joined #ubuntu-motu === kjcole [n=kjcole@72-254-140-8.client.stsn.net] has joined #ubuntu-motu === TomaszD [n=tomaszd@xdsl-2196.elblag.dialog.net.pl] has joined #ubuntu-motu === cassidy [n=cassidy@f1-pc174.ulb.ac.be] has joined #ubuntu-motu [10:15] Kyral: out of curiousity, do you know how many users use xfce as primary desktop? === Amaranth [n=travis@ubuntu/member/amaranth] has joined #ubuntu-motu [10:20] do I need to be MOTU to post comment to REVU? [10:20] marcin`, I think so === jpatrick [n=patrick@ubuntu/member/jpatrick] has joined #ubuntu-motu [10:21] Gloubiboulga: comments to my own packages too :) ? [10:22] oh [10:22] you have to login to comment your packages [10:23] I'm in - and what then? [10:25] marcin`, the comment form is on the bottom of your package page [10:25] if you're correctly logged in, you can see and use it [10:26] ehhh I see... it's because I'm comaintainer and maintainer did last upload [10:26] so I cannot post comment to this package [10:26] ok thanks [10:26] np [10:26] now I know what to do === Se7h [n=MUAHAHAH@81.193.84.175] has joined #ubuntu-motu === fredix [n=fredix@85.65.97-84.rev.gaoland.net] has joined #ubuntu-motu === Lure [n=luka@clj46-234.dial-up.arnes.si] has joined #ubuntu-motu [10:39] another question - is REVU for new packages only? [10:39] no [10:39] what if I would like to repackage some existing apps? [10:39] not if someone's working on it [10:40] working -> you mean in REVU? [10:41] recently updated [10:41] jpatrick: recently updated in REVU or in universe? [10:41] revu [10:42] excuse, there was talk on the motu list to update psi to 0.10. I still don't see Psi updated and it's been a big while. Any news on this? [10:42] jpatrick: ok [10:43] jpatrick: but what if there is some package but I would like to prepare the same software but in different way? [10:43] I think no [10:43] jpatrick: for example: I would like to use CDBS while currently someone doesn't want to... etc. ? [10:43] jpatrick: what then? [10:44] well you'll overwrite they're fiels [10:44] marcin`: why repackage an app just to change the packaging system? [10:45] bmonty: it was just an example === netzmeister [n=netzmeis@p549FA3B8.dip0.t-ipconnect.de] has joined #ubuntu-motu [10:46] marcin`: it is better to coordinate your changes with the person who packaged the app in the first place [10:47] bmonty: sure but what if we don't agre? [10:47] agree? [10:47] bmonty: and have different visions? [10:49] marcin`: is this a hypothetical question, or are you currently trying to make a change the packager doesn't agree with [10:50] bmonty: I'm not sure if I want to... because I'm tired, annoyed etc. so I'll propably just leave this [10:50] bmonty: but there is such possibility [10:50] bmonty: just asking now [10:51] marcin`: I guess I would say that in general you should coordinate your changes, but if you can't resolve them you should discuss your proposed changes here [10:51] bmonty: it's pretty hard while I'm not MOTU (yet) [10:52] bmonty: and cannot comment uploads [10:53] email to packager then [10:54] jpatrick: sure but it's not good idea when packager rejects changes right? [10:54] it's up to him [10:54] or her [10:56] if i want to add items to the gnome menu systemwide, where do i have to throw the desktop files? /usr/share/applications? [10:57] spacey, yes [10:57] do i need to run a scrip to update the menu? [10:57] or is it automagicly [10:58] I think you have to run dh_desktop (not sure of this) [11:00] update-desktop-database [11:00] seems to be called from dh_desktop [11:03] ah crap [11:03] not that easy [11:05] what's the problem spacey ? === minghua [n=minghua@69-153-139-36.dsl.hstntx.swbell.net] has joined #ubuntu-motu === TomaszD is away: Away for whatever reason. [11:06] well its not about packaging [11:07] just wanted to quickly add a few items systemwide [11:09] hi minghua [11:10] LaserJock, hi === Hirion [n=hirion@draugr.de] has left #ubuntu-motu [] [11:11] LaserJock, I've sent a mail to the debian mentors ML to find a sponsor for my texmaker package [11:11] hi LaserJock [11:11] hi Gloubiboulga [11:11] Gloubiboulga: I saw that, great [11:11] I hope someone will be interested :) [11:11] Gloubiboulga: yeah, just saw that, good luck [11:11] thanks minghua :) [11:11] my first debian contribution... [11:14] Gloubiboulga: yeah, I realy hope that gets through. I know there were quite a few posts on the ubuntufourms asking for a packag. === minghua is glad to see texmaker 1.3-1 package having a much simpler dependency === jpatrick really has to get his packages to debian [11:16] I've also requested an UVF exception for this package [11:16] I've also uploaded on REVU today [11:16] +it [11:17] Gloubiboulga: I got about 4 emails from REVU this morning :-) === TheMuso [n=luke@dsl-202-173-132-131.nsw.westnet.com.au] has joined #ubuntu-motu [11:17] LaserJock, yeah, very minor fixe each time... but 4 uploads needed === yosch [n=yosch@lns-bzn-56-82-255-209-160.adsl.proxad.net] has joined #ubuntu-motu === anibal [n=nnnnnnam@chaquen.v7w.com] has joined #ubuntu-motu === desrt [n=desrt@dhcp-0-20-af-d2-7c-3.cpe.mountaincable.net] has joined #ubuntu-motu [11:30] tseng; ! === dolson [n=dana@d235-185-252.home1.cgocable.net] has joined #ubuntu-motu [11:31] tseng; muine is a real pain in the ass for a few reasons right now [11:38] desrt: sorry to hear [11:38] desrt: my local copy is elite [11:38] desrt: ill upload it as soon as i get freeze aproval [11:38] tseng; rocking. [11:38] desrt: :D [11:39] tseng; does it have gst0.10 and working dbus? [11:39] desrt: mine does [11:39] i <3 you [11:39] desrt: im not sure if ill do gst0.10 [11:39] its in cvs [11:39] you need to [11:39] i might backport it [11:39] gst 0.8 doesn't exist in dapper, really [11:39] or snapshot [11:39] its not much of a backport, its well contained [11:39] i just debfostered my system today and it uninstalled all of my gst0.8 plugins because they're no longer part of ubuntu-desktop [11:39] just diff and go [11:40] so i had to reinstall alsa and vorbis to get muine going again [11:40] yeah i have another bug on that [11:40] someone actually managed to get a system without playbin [11:40] for 0.8 [11:40] the solution is not to introduce additional dependencies [11:40] the solution is 0.10 :) [11:40] I agree. [11:41] do you have anything for me to test? [11:41] not quite [11:41] k [11:41] in /usr/bin i have a copy of the 0.8.4 package from debian [11:42] in /usr/local/bin i have a build of HEAD with gst 0.10 [11:42] something in between is what ill upload [11:42] i have an irrational aversion to /usr/local [11:42] probably as a result of years of putting up with freebsd abusing my filesystem [11:42] i dont like to build random cvs crack in /usr [11:42] but yeah, bsd gets it not quite right [11:42] /usr/local/etc makes me stabby [11:43] :) [11:43] freebsd makes me feel like /usr/local isn't for me anymore [11:43] so i use /opt/gnome now [11:43] we have a "network device" at work called an f5 bigip [11:43] runs freebsd [11:43] its a ssl load balancer [11:43] complete crack [11:44] after the config file gets to a few thousand lines the web interface falls over and your configuration tool is classic vi [11:44] real men use ^h [11:47] I WANT TO FUCKING MURDER EVOLUTION [11:47] ahem === greenpenguin13 [n=joseph@user-2325.lns4-c10.dsl.pol.co.uk] has joined #ubuntu-motu [11:47] i gave up evolution for lent [11:48] it sucks so fucking bad these days [11:48] it's seriously turning into a heaping pile of dung [11:48] go outsourcing [11:48] and thunderbird is so bloody ugly [11:51] I like thunderbird cause I can use it in linux, windows, and OSX but I haven't found a "Reply to list" button :( [11:51] same thing with Gmail for me.. no reply to list.. argh. stupid that only the Ubuntu lists don't set the ReplyTo [11:51] mutt rules ;-) [11:52] hey, are any of you guys using Xgl with Gnome? [11:55] i was. it's freakin' awesome [11:55] yes, it is awesome. [11:55] but I want to know if someone is using it right now and could test if MouseKeys works for them === minghua wishes he has a video card with better opengl support [11:56] X crashes when I try to move the mouse cursor with Gnome mousekeys. [11:57] this is frustrating [11:58] dolson: it crashed on me when I tried to write something with the shift down [11:58] gave up then [11:58] lol [11:58] don't use caps! [11:58] heh [11:58] don't use environment variables :) === crimsun [n=crimsun@pdpc/supporter/silver/crimsun] has joined #ubuntu-motu [11:59] argh, I can't take this anymore [12:00] hi crimsun [12:00] brb [12:00] right now I'm avoiding X anyway ;-) CLI for me [12:00] hi LaserJock [12:01] that's funny, I'm having my stint w/ Kubuntu ;-) [12:01] crimsun: cool