/srv/irclogs.ubuntu.com/2006/03/02/#ubuntu-motu.txt

marcin`got a question12:10
marcin`could someone tell me it this is acceptable to create package that could change config file created by another package?12:11
marcin`s/me it/me if it/12:12
marcin`ehh12:12
marcin`sorry I'm tired - my english sucks - but I hope you get my point12:12
=== Hobbsee [n=Hobbsee@CPE-144-136-113-76.nsw.bigpond.net.au] has joined #ubuntu-motu
crimsunas in package X would alter a conffile of package Y?12:13
marcin`crimsun: yes12:13
crimsunI'm pretty sure directly doing so is a grave Policy violation12:13
marcin`I give an example - I would like to add language pack for some app12:14
marcin`and I need to add this language to some Array entry in main package config12:15
=== LaserJock [n=laserjoc@ubuntu/member/laserjock] has joined #ubuntu-motu
marcin`is this acceptable? or policy violation?12:15
crimsunhttp://www.debian.org/doc/debian-policy/ch-files.html#s10.7.412:18
=== bluefoxicy [n=bluefox@c-68-33-112-13.hsd1.md.comcast.net] has left #ubuntu-motu ["Ex-Chat"]
marcin`crimsun: thanks12:19
crimsunmarcin`: np12:20
minghuahello LaserJock12:22
marcin`crimsun: ok this is pretty clear12:23
marcin`crimsun: but now I don't know how to do one thing12:24
marcin`crimsun: maybe you could have some idea12:24
marcin`crimsun: thing is: I got package X that depends on A | B | C12:24
marcin`crimsun: so I can install any: A | B or C to satisfy dependency12:25
marcin`crimsun: then I got a little problem because I need to create some postinst script in X12:25
marcin`crimsun: because it has to set some settings in it's config file12:25
marcin`crimsun: it has to set if there is A or B or C installed12:26
marcin`crimsun: but it is doable12:26
=== janm [n=jmalonzo@ppp4592.dsl.pacific.net.au] has joined #ubuntu-motu
marcin`crimsun: problem is that for example I can install X + A + C12:27
marcin`crimsun: dependency will be ok12:27
marcin`crimsun: but then I can remove C - apt will not complain because there is still A12:27
crimsunmarcin`: do A && B && C all share one conffile?12:27
marcin`crimsun: so still no problem with dependencies12:27
marcin`crimsun: but then how could I force X to update it's conffile because C is removed?12:28
marcin`crimsun: I think that X will own conffile and will create this with postinst12:28
marcin`crimsun: so postinst script could detect if for example there is A and C12:29
marcin`crimsun: and will set this in conffile12:29
crimsunthat seems unwise architecturally12:30
marcin`crimsun: I know but don't have any better idea...12:31
LaserJockmarcin`: why isn't this stuff just all in the same package?12:31
marcin`crimsun: and this is why I ask gere12:31
marcin`here12:31
marcin`LaserJock: because they got different sources, separate development and can be pretty big12:31
crimsunok, do you have control over A, B, and C?12:32
marcin`crimsun: what do you mean 'control' ?12:32
crimsunmarcin`: what is the relation of X to A | B | C ?12:32
marcin`crimsun: X needs at last one of them to work properly12:33
marcin`crimsun: let's say that X is application and A = english | B = german | C = polish lang packs12:33
marcin`crimsun: and then there has to be at least one for this app to work12:34
marcin`crimsun: but this application X has to know about them - it needs a list of languages in conffile12:34
marcin`crimsun: if I set up dependency X -> A | B | C then I could install only B12:35
marcin`crimsun: and because X depends on B then B will be installed first then X12:35
minghuaone possible solution I can see is not making said config file a conffile12:36
marcin`crimsun: so, postinst in X will know that B is available and will add info about B to conffile12:36
minghuabut provide a tool in X to generate said file according to other configurations12:36
minghuathen call said tool in A, B, C 's postinst and postrm12:37
marcin`crimsun: but then if I'll add C and A there will be no way to add these to conffile owned by X12:37
crimsunyeah, that's the issue I'm trying to think of12:37
marcin`crimsun: without dpkg-reconfigure X12:37
crimsunbecause you don't necessarily have control over A's, B's, or C's prerm12:37
=== 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
marcin`minghua: could you tell more about your solution?12:43
marcin`minghua: I don't understand it yet12:43
crimsunthat solution is akin to what language-pack-* do12:43
marcin`crimsun: yes but unfortunately not in 100%12:45
crimsunlanguage-pack-* depend on locales, and each time a language-pack-* is installed, /usr/share/locales/install-language-pack is invoked12:45
crimsunyes, that's the issue of "control" that I'm referring to12:45
marcin`crimsun: because you can remove all language-pack- and applications that use languages12:45
crimsunbecause 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 X12:45
marcin`crimsun: will still work and will be set to default english12:45
marcin`crimsun: so you can remove all lang packs and for example gnome will still work12:46
marcin`crimsun: my X'app won't12:46
minghuamarcin`: that doesn't really matter, you can enforce that one of A, B or C must be installed by dependency12:49
minghuato make it easier to talk, say your X needs a /etc/X.conf config file12:49
marcin`ok and?12:50
minghuayou don't ship it in your X package, but provide a /usr/bin/update-X-config tool to generate it12:50
minghuathen your A, B, C can each ship a /etc/X.conf.d/{A,B,C} respectively12:51
minghuathe update-X-config tool can read these files in /etc/X.conf.d/ and generate a /etc/X.conf file accordingly12:51
minghuanow 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-config12:52
minghuaI think your problem should be solved12:52
marcin`minghua: you are optimist ;)12:53
crimsunit's more problematic if he's dealing with actual language packs, though, because he doesn't control their post*12:53
minghuawell, optimist for other people's problem :-)12:53
marcin`minghua: because this config file has to be in php syntax12:53
minghuacrimsun: that's true, I am assuming he has complete control for all X, A, B and C packages12:53
marcin`minghua: I will have complete control over X,A,B,C and D-Z ;)12:54
crimsunoh, in that case the "problem" is moot12:55
crimsunI'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:55
crimsunit sounds like your issue is much simpler :)12:56
marcin`hmm ok maybe but I see a little issue here...12:57
marcin`I got X and it provides 'configUpdateTool'12:57
marcin`and it depends on A | B | C and minghua says that they should call this configUpdateTool from their postinst?12:58
marcin`but they cannot while they don't depend on X :)12:58
marcin`and if X depends on A/B/C then one of them will be installed first ;)12:59
crimsunif A | B | C use a conffile that X owns, then they each must depend on X12:59
marcin`so X-> A | B | C and A->X B->X and so on?01:00
minghuahmm, good point01:00
minghuathat would be a circular dependency01:00
minghuanow I know why there is a libgtk2.0-bin package :-)01:00
=== Amaranth [n=travis@ubuntu/member/amaranth] has joined #ubuntu-motu
LaserJockhmm, I say upload it and see how many users complain ;-)01:01
=== LaserJock hides *g*
crimsunyep, that's why a lot of packages split out -base and -common, etc.01:01
minghuamarcin`: 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 X01:01
minghuaLaserJock: that seems to be some maintainer's opnion as well, unfortunately :-(01:02
LaserJockminghua: I don't know that it would make it past REVU and elmo though01:03
marcin`minghua: and which package should own this config-tool? X or X-bin ?01:03
crimsunthe latter01:03
crimsun(if you used the former, you'd be in precisely the predicament we've all described)01:04
marcin`I see smoke over my head....01:04
marcin`so I install X-bin first...01:05
minghuaLaserJock: well, as a matter of fact, they do01:05
marcin`then X which depends on A/B/C so at least one of them will have to be installed right?01:05
marcin`so they will run some ConfTool from X-bin to generate config for X ?01:06
marcin`am I right?01:06
minghuaLaserJock: I was sad to see the /usr/lib/pkgconfig/*.pc files installed in skim package, instead of libskim-dev, for example01:06
minghuaapparently the maintainer hasn't tried using libskim-dev in a pbuilder himself01:07
minghuamarcin`: roughly right, although you don't need to install X-bin first01:08
minghuaI believe you can install them together01:08
minghuaI 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
marcin`ok let's assume01:09
minghuanow after saying that, apparently postrm is not a good place as when running A's postrm X-bin can be already removed...01:09
marcin`I run: apt-get install X01:09
marcin`it will install X-bin, A, and X01:10
marcin`and it's ok01:10
crimsunin that case you want X-bin to be a PreDepends of A,B,C01:10
marcin`then I want to install B so I run01:10
marcin`apt-get install B01:10
marcin`X-bin is already there so this will install without problem01:11
marcin`but then how will X know that B is installed?01:11
=== Se7h [n=MUAHAHAH@bl4-85-34.dsl.telepac.pt] has joined #ubuntu-motu
marcin`B will have to update configuration?01:12
crimsunactually no, don't use PreDepends, as that's a special corner case01:12
crimsunPolicy 7.2 states that if configuring X is delayed until all of X-bin, A, B, and C are configured01:13
crimsuns/if//01:13
crimsunor in your case, until X and at least one of A | B | C01:13
crimsunargh01:13
crimsununtil X-bin and at least one of A | B | C01:13
=== 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
atie_hi, all01:36
LaserJockhi atie_01:36
atie_hi, LaserJock.01:37
atie_minghua, ping.01:37
Se7hhi01:56
LaserJockhi Se7h01:57
Se7hhey there LaserJock01:57
=== 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
atie_After writing uvf exception to motu ml, then do I need to upload source package to REVU by myself?02:24
crimsunis it a sync, a merge, or a new upstream not in Debian?02:24
crimsun(syncs don't need to be uploaded to REVU)02:24
atie_Updated version is in Debian.02:25
crimsunso it's a sync or a merge?02:25
atie_It's sync, I guess.02:25
crimsunthen there's no need to upload to REVU02:25
freeflyingatie_: hi02:25
atie_freeflying, hi02:26
atie_crimsun, then just wait for approval?02:26
crimsunyes02:26
freeflyingatie_: ttf-alee has new upstream released02:26
atie_freeflying, yes. I wrote uvf-exception for that.02:36
minghuaatie_: pong02:42
=== 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
atie_minghua, thank for the mail.02:54
=== bmonty [n=bmontgom@ubuntu/member/bmonty] has joined #ubuntu-motu
minghuaatie_: ah, sure, you are welcome :-)03:06
=== zakame [n=zakame@ubuntu/member/zakame] has joined #ubuntu-motu
zakamehi MOTUs03:06
=== 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"]
atie_minghua, does corrected one look OK?03:17
=== slomo_ [n=slomo@ubuntu/member/slomo] has joined #ubuntu-motu
Hobbseebug 868103:23
Ubugtumalone bug 8681 in control-center capplets "Changing keyboard layouts in keyboard configuration applet gives an error" [Normal,Rejected]  http://launchpad.net/bugs/868103:23
=== herzi [n=herzi@c184049.adsl.hansenet.de] has joined #ubuntu-motu
=== LaserJock [n=mantha@ubuntu/member/laserjock] has joined #ubuntu-motu
minghuaatie_: haven't looked carefully yet, will reply tonight03:38
atie_minghua, thank you.03:39
=== bmonty [n=bmontgom@ubuntu/member/bmonty] has joined #ubuntu-motu
LaserJockhi bmonty03:43
bmontyhey LaserJock03:43
=== 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
Psi-JackHmm. Where's the basic docs on building a new package? :/05:33
LaserJockPsi-Jack: I'd check out some of the links at wiki.ubuntu.com/UbuntuPackagingGuide/Resources05:34
Psi-JackI think I found it. Finally. ;)05:34
crimsunthat looks familiar, LaserJock ;)05:35
Psi-JackI'm trying to upgrade mldonkey-server to 2.7.3 for me. heh05:36
=== irvin [n=irvin@ubuntu/member/irvin] has joined #ubuntu-motu
LaserJockcrimsun: yep05:36
=== 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
zakameafternoon MOTUs07:16
Gloubiboulgamorning zakame ;)07:18
zakameheya Gloubiboulga! :D07:18
Hobbseehey zakame07:19
Hobbseehey Gloubiboulga07:19
Gloubiboulgahi Hobbsee07:19
=== Hobbsee wishes her machine built quicker!
zakameheya Hobbsee!07:22
Hobbsee:)07:23
zakamebuilt what?07:23
Hobbseekdenetwork07:24
Hobbseetrying to patch it, we'll see if it works07:24
Hobbseeheh, doesnt work - wont even build07:34
=== 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
zakameevening MOTUs02:02
freeflyingzakame: evening02:02
zakamehi freeflying :)02:03
=== 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
xerxashi03:03
xerxaswe're already in the freeze ?03:03
xerxasoops03:03
xerxastopic03:03
xerxassorry guys03:03
=== 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
LaserJockok, I must admit I'm a little confused about UVF exceptions08:11
LaserJockit 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:12
bmontyI think that if a package doesn't have any packages that depend on it, the UVF exception is a formality08:25
LaserJockhmm, well I wish I had known that earlier08:25
bmontywhy is that?08:26
LaserJockbecause there are quite a few science related packages that I could've gotten in08:26
bmontyLaserJock: well there is always dapper+1 :)08:27
LaserJockbmonty: yes, I just wish I had known. I guess I was taking UVF more seriously than I needed to08:28
=== 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
KyralLaserJock: just get them in Debian and then Sync them when Dapper+1 opens :D08:31
LaserJockKyral: I'm talking about syncing from Debian now. I think we could more updated science packages if I had know earlier08:32
Kyralah08:32
Kyralsoerry lol08:33
LaserJockhmm, yeah. we are up to 98 outdated packages in Dapper for MOTU Science.08:34
Kyralheh08:35
KyralI may cleanup EasyChem soon08:35
Kyrallike in debian/08:36
Kyraloh...are any outstanding accepted UVF Exceptions going to be brought in?08:36
LaserJockKyral: what do you mean?08:36
KyralDaniel accepted the UVFE for GTKEdit a couple weeks ago but I haven't seen it sync'd08:37
Kyralor Accepted08:38
LaserJockKyral: well the syncs and NEW are pretty backed up08:39
Kyralah08:39
LaserJockare UVF exceptions harder to get after FF?08:39
LaserJockI might try to get a few in before Dapper is released08:40
Kyralhmm08:53
KyralI should write a script to build the newest XFCE from SVN08:53
=== 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
tomaKyral: out of curiousity, do you know how many users use xfce as primary desktop?10:15
=== Amaranth [n=travis@ubuntu/member/amaranth] has joined #ubuntu-motu
marcin`do I need to be MOTU to post comment to REVU?10:20
Gloubiboulgamarcin`, I think so10:20
=== jpatrick [n=patrick@ubuntu/member/jpatrick] has joined #ubuntu-motu
marcin`Gloubiboulga: comments to my own packages too :) ?10:21
Gloubiboulgaoh10:22
Gloubiboulgayou have to login to comment your packages10:22
marcin`I'm in - and what then?10:23
Gloubiboulgamarcin`, the comment form is on the bottom of your package page10:25
Gloubiboulgaif you're correctly logged in, you can see and use it10:25
marcin`ehhh I see... it's because I'm comaintainer and maintainer did last upload10:26
marcin`so I cannot post comment to this package10:26
marcin`ok thanks10:26
Gloubiboulganp10:26
marcin`now I know what to do10:26
=== 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
marcin`another question - is REVU for new packages only?10:39
jpatrickno10:39
marcin`what if I would like to repackage some existing apps?10:39
jpatricknot if someone's working on it10:39
marcin`working -> you mean in REVU?10:40
jpatrickrecently updated10:41
marcin`jpatrick: recently updated in REVU or in universe?10:41
jpatrickrevu10:41
TomaszDexcuse, 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
marcin`jpatrick: ok10:42
marcin`jpatrick: but what if there is some package but I would like to prepare the same software but in different way?10:43
jpatrickI think no10:43
marcin`jpatrick: for example: I would like to use CDBS while currently someone doesn't want to... etc. ?10:43
marcin`jpatrick: what then?10:43
jpatrickwell you'll overwrite they're fiels10:44
bmontymarcin`: why repackage an app just to change the packaging system?10:44
marcin`bmonty: it was just an example10:45
=== netzmeister [n=netzmeis@p549FA3B8.dip0.t-ipconnect.de] has joined #ubuntu-motu
bmontymarcin`: it is better to coordinate your changes with the person who packaged the app in the first place10:46
marcin`bmonty: sure but what if we don't agre?10:47
marcin`agree?10:47
marcin`bmonty: and have different visions?10:47
bmontymarcin`: is this a hypothetical question, or are you currently trying to make a change the packager doesn't agree with10:49
marcin`bmonty: I'm not sure if I want to... because I'm tired, annoyed etc. so I'll propably just leave this10:50
marcin`bmonty: but there is such possibility10:50
marcin`bmonty: just asking now10:50
bmontymarcin`: 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 here10:51
marcin`bmonty: it's pretty hard while I'm not MOTU (yet)10:51
marcin`bmonty: and cannot comment uploads10:52
jpatrickemail to packager then10:53
marcin`jpatrick: sure but it's not good idea when packager rejects changes right?10:54
jpatrickit's up to him10:54
jpatrickor her10:54
spaceyif i want to add items to the gnome menu systemwide, where do i have to throw the desktop files? /usr/share/applications?10:56
Gloubiboulgaspacey, yes10:57
spaceydo i need to run a scrip to update the menu?10:57
spaceyor is it automagicly10:57
GloubiboulgaI think you have to run dh_desktop (not sure of this)10:58
spaceyupdate-desktop-database11:00
spaceyseems to be called from dh_desktop11:00
spaceyah crap11:03
spaceynot that easy11:03
Gloubiboulgawhat's the problem spacey ?11:05
=== minghua [n=minghua@69-153-139-36.dsl.hstntx.swbell.net] has joined #ubuntu-motu
=== TomaszD is away: Away for whatever reason.
spaceywell its not about packaging11:06
spaceyjust wanted to quickly add a few items systemwide11:07
LaserJock_awayhi minghua11:09
GloubiboulgaLaserJock, hi11:10
=== Hirion [n=hirion@draugr.de] has left #ubuntu-motu []
GloubiboulgaLaserJock, I've sent a mail to the debian mentors ML to find a sponsor for my texmaker package11:11
minghuahi LaserJock11:11
LaserJockhi Gloubiboulga11:11
LaserJockGloubiboulga: I saw that, great11:11
GloubiboulgaI hope someone will be interested :)11:11
minghuaGloubiboulga: yeah, just saw that, good luck11:11
Gloubiboulgathanks minghua :)11:11
Gloubiboulgamy first debian contribution...11:11
LaserJockGloubiboulga: yeah, I realy hope that gets through. I know there were quite a few posts on the ubuntufourms asking for a packag.11:14
=== minghua is glad to see texmaker 1.3-1 package having a much simpler dependency
=== jpatrick really has to get his packages to debian
GloubiboulgaI've also requested an UVF exception for this package11:16
GloubiboulgaI've also uploaded on REVU today11:16
Gloubiboulga+it11:16
LaserJockGloubiboulga: I got about 4 emails from REVU this morning :-)11:17
=== TheMuso [n=luke@dsl-202-173-132-131.nsw.westnet.com.au] has joined #ubuntu-motu
GloubiboulgaLaserJock, yeah, very minor fixe each time... but 4 uploads needed11:17
=== 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
desrttseng; !11:30
=== dolson [n=dana@d235-185-252.home1.cgocable.net] has joined #ubuntu-motu
desrttseng; muine is a real pain in the ass for a few reasons right now11:31
tsengdesrt: sorry to hear11:38
tsengdesrt: my local copy is elite11:38
tsengdesrt: ill upload it as soon as i get freeze aproval11:38
desrttseng; rocking.11:38
tsengdesrt: :D11:38
desrttseng; does it have gst0.10 and working dbus?11:39
tsengdesrt: mine does11:39
desrti <3 you11:39
tsengdesrt: im not sure if ill do gst0.1011:39
tsengits in cvs11:39
desrtyou need to11:39
tsengi might backport it11:39
desrtgst 0.8 doesn't exist in dapper, really11:39
tsengor snapshot11:39
tsengits not much of a backport, its well contained11:39
desrti just debfostered my system today and it uninstalled all of my gst0.8 plugins because they're no longer part of ubuntu-desktop11:39
tsengjust diff and go11:39
desrtso i had to reinstall alsa and vorbis to get muine going again11:40
tsengyeah i have another bug on that11:40
tsengsomeone actually managed to get a system without playbin11:40
tsengfor 0.811:40
desrtthe solution is not to introduce additional dependencies11:40
desrtthe solution is 0.10 :)11:40
tsengI agree.11:40
desrtdo you have anything for me to test?11:41
tsengnot quite11:41
desrtk11:41
tsengin /usr/bin i have a copy of the 0.8.4 package from debian11:41
tsengin /usr/local/bin i have a build of HEAD with gst 0.1011:42
tsengsomething in between is what ill upload11:42
desrti have an irrational aversion to /usr/local11:42
desrtprobably as a result of years of putting up with freebsd abusing my filesystem11:42
tsengi dont like to build random cvs crack in /usr11:42
tsengbut yeah, bsd gets it not quite right11:42
tseng/usr/local/etc makes me stabby11:42
desrt:)11:43
desrtfreebsd makes me feel like /usr/local isn't for me anymore11:43
desrtso i use /opt/gnome now11:43
tsengwe have a "network device" at work called an f5 bigip11:43
tsengruns freebsd11:43
tsengits a ssl load balancer11:43
tsengcomplete crack11:43
tsengafter the config file gets to a few thousand lines the web interface falls over and your configuration tool is classic vi11:44
tsengreal men use ^h11:44
desrtI WANT TO FUCKING MURDER EVOLUTION11:47
desrtahem11:47
=== greenpenguin13 [n=joseph@user-2325.lns4-c10.dsl.pol.co.uk] has joined #ubuntu-motu
tsengi gave up evolution for lent11:47
desrtit sucks so fucking bad these days11:48
desrtit's seriously turning into a heaping pile of dung11:48
tsenggo outsourcing11:48
desrtand thunderbird is so bloody ugly11:48
LaserJockI like thunderbird cause I can use it in linux, windows, and OSX but I haven't found a "Reply to list" button :(11:51
dolsonsame thing with Gmail for me.. no reply to list.. argh. stupid that only the Ubuntu lists don't set the ReplyTo11:51
minghuamutt rules ;-)11:51
dolsonhey, are any of you guys using Xgl with Gnome?11:52
desrti was.  it's freakin' awesome11:55
dolsonyes, it is awesome.11:55
dolsonbut I want to know if someone is using it right now and could test if MouseKeys works for them11:55
=== minghua wishes he has a video card with better opengl support
dolsonX crashes when I try to move the mouse cursor with Gnome mousekeys.11:56
dolsonthis is frustrating11:57
tepsipakkidolson: it crashed on me when I tried to write something with the shift down11:58
tepsipakkigave up then11:58
dolsonlol11:58
dolsondon't use caps!11:58
tepsipakkiheh11:58
tepsipakkidon't use environment variables :)11:58
=== crimsun [n=crimsun@pdpc/supporter/silver/crimsun] has joined #ubuntu-motu
dolsonargh, I can't take this anymore11:59
LaserJockhi crimsun12:00
dolsonbrb12:00
LaserJockright now I'm avoiding X anyway ;-) CLI for me12:00
crimsunhi LaserJock12:00
crimsunthat's funny, I'm having my stint w/ Kubuntu ;-)12:01
LaserJockcrimsun: cool12:01

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