/srv/irclogs.ubuntu.com/2010/07/16/#ubuntu-devel.txt

=== fta_ is now known as fta
=== jjohansen is now known as jjohansen-afk
macohighvoltage: you online right now? americas rmb isnt making quorum. can we borrow you?01:13
highvoltagemaco: I really wish I could but I need to leave right now01:20
=== fta_ is now known as fta
bitshufflerHi guys. I have some trouble with deps & packaging. What is the proper name for depending on e.g. libboost-filesystem1.38-dev - as in 9.10 has 1.38, 10.04 has 1.40 and so on ... What canonical name can I use to require those on all versions?01:50
micahgbitshuffler: libboost-filesystem-dev?01:52
bitshufflermicahg: thanks, I'm currently trying libboost-dev perhaps that works01:53
bitshufflerAnother question is that "libboost-dev" doesn't work on debian 5.0 cause I need 1.35 but the default is 1.34 or so. Is there some %if version = 1.2.3 for packaging debs?01:54
bitshufflerSo I can explicitly require libboost_1.35 on Debian 5.0 and use whatever the distro provides for the rest of the stuff?01:55
micahgbitshuffler: you might want to look at this: http://www.debian.org/doc/debian-policy/ch-relationships.html01:56
bitshufflermicahg: so I e.g. could do something like "Depends: libboost_1.35-dev | libboost-dev" and Debian would take the first while later Ubuntu version would take the later?01:57
bitshuffler(assumed that Debian 5.0 has libboost_1.35-dev and alter Ubuntu libboost-dev)01:58
micahgbitshuffler: no, "Depends: libboost-dev (>= 1.35)" would probably be better, Debian would just pull in 1.34 in your example01:58
micahgbitshuffler: oh really01:58
bitshufflermicahg: "oh really?"01:59
micahgbitshuffler: then your solution is better :)01:59
micahgbitshuffler: I didn't realize lenny had multiple 1.35 also01:59
bitshufflermicahg: ah, so I can rest assured that it will take the first if available and the other stuff only as fallback?01:59
bitshufflermicahg: cheers, thanks a lot, you helped me out of my misery ;D02:00
micahgbitshuffler: it should, yes, it should go left to right to install if none of them are installed02:00
bitshufflerit has 1.35 I'm just not sure about the package name but it was just for the sake of having an example.02:00
bitshufflermicahg: great, thanks a lot :)02:00
micahgbitshuffler: np02:00
=== yofel_ is now known as yofel
bitshufflerOk, hope fully the last one :D How do I add some "Prefer" for stuff like "have choice for libstdc++-dev: libstdc++6-4.1-dev libstdc++6-4.2-dev libstdc++6-4.3-dev" - as in I need libstdc++-dev and for some reason there are 3 libs providing this?02:13
bitshuffleras in does .deb know some Prefer tag or how do you deal with that?02:14
micahgbitshuffler: separate with | with the favorite on the left02:15
bitshufflermicahg: like in "Depends: libstdc++-dev | libstdc++6-4.3-dev" ?02:16
* bitshuffler scratches head02:17
bitshuffleron thinking about it it makes sense02:17
bitshufflermicahg: Thanks a lot once again :)02:17
micahgbitshuffler: yeah, I think so02:17
micahgbitshuffler: np02:17
bitshufflerComming from rpm packaging that is like having to wrap your head around nosql after you got used to relational dbs ;D02:18
RAOFbitshuffler: It looks like you're going about this the hard way - why are you manually populating the Depends field, anyway?02:18
bitshufflerRAOF: I have to. I am not running Ubuntu / Debain but using OBS to create package for 0ad and there are some version "differences" if you try to create the stuff for Debian, Fedora, Mandriva, openSUSE and Ubuntu from 2 files ;D02:19
bitshufflerso I'm used to packaging rpms but with debs I often encounter "unseen land" ;D02:19
RAOFWon't OBS rebuild the source package for each of the different targets?02:20
bitshufflerRAOF: yes, of course, but for that to succeed you have to provide proper packaging info for whatever distro version you use.02:20
RAOFI mean, we've got a nice robust infrastructure for populating the Depends field from the libraries the package actually links to.02:20
RAOFRight.  So, you Build-Depend on libstdc++-dev, the package gets built against whatever version of libstdc++ that target has, and then use ${shlibs:Depends} to automatically populate the Depends field with the appropriate dependency.02:21
bitshuffleroh, you mean something like autorequires? That works there fine too for the binary but for the source package it is a bit harder (at least if you have to satisfy every supported debian & ubuntu version)02:22
bitshufflergiven for debian 4 and your old lts version (6.x or so iirc) it wont work anyways so I just target debian 5 and the latet 3 Ubuntu versions.02:23
bitshufflers/3/2/02:23
RAOFSo far you've got Build-Depends: libboost-dev (>= 1.35), libstdc++-dev02:23
bitshufflerheh, gimme a sec, I'm trying it currently locally and setting up the chroot takes ages :)02:23
micahgRAOF: mutiple libboost-devs are required since debian 5.0 has 1.34 by default02:24
RAOFmicahg: Ah, so that needs to be libboost-dev (>= 1.35) | libboost1.35-dev, right.02:25
micahgRAOF: yeah02:25
bitshufflerRAOF: yes, on debian 5.0 I can use libboost-dev since that installs 1.34 but I apparently need min 1.35 and later Ubuntu versions just work with libboost-dev since that is 1.38+02:27
bitshuffler*on debian 5.0 I can _not_ use libboost-dev02:29
micahgbitshuffler: that's why you have the minimum version specified libboost-dev (>= 1.35)02:29
RAOFAnd have the alternative “ | libboost1.35-dev”02:31
bitshufflermicahg: yes, that prolly is the cleanest solution02:31
bitshufflerotoh I get now "unresolvable: nothing provides libboost-signals-dev, nothing provides libboost-filesystem-dev" for 10.04 (_without_ univers) Does that make sense?02:32
micahgbitshuffler: yes02:33
bitshufflermicahg: in what way?02:33
micahgbitshuffler: well, if your chroot doesn't have universe enabled, then you can't get those packages02:33
bitshufflermicahg: well, I have libboost-filesystem1.40.0_1.40.0-4ubuntu4_i386.deb on 10.04 i586 but apparently it doesn't "provide" (dunno the dep name for that) "libboost-filesystem-dev". That's correct or am I mixing something up?02:34
bitshuffler*deb name02:35
bitshufflerer, make that "libboost-filesystem1.40-dev_1.40.0-4ubuntu4_i386.deb" obviously02:35
micahgbitshuffler: yes, well, the metapackage is in universe and the versioned package is in main02:36
* bitshuffler facepalms02:36
bitshufflermicahg: what is the reasoning behind that?02:36
micahgbitshuffler: the binary was probably needed for something in main02:36
* micahg supposes the correct versioned package should provide the metapackage02:37
bitshuffler(on rpm packages just would do "Provide: libboost-filesystem-dev" and I could happily do "Depends: libboost-filesystem-dev". Don't you guys have something similar?02:37
bitshufflermicahg: could you look that up please with apt-get or whatever you folks use please?02:38
micahgbitshuffler: yes, I checked, it doesn't seem to do it02:38
micahgbitshuffler: we have a provides as well02:38
=== bjf is now known as bjf[afk]
micahgbitshuffler: I'm going to suggest we move to #ubuntu-packaging since that channel is specifically for packaging issues02:39
bitshufflermicahg: hm, so the only way to make me happy without relying on universe (which is no option) is to make some "Depends: $libboost_ubuntu9.10 | $libboost_ubuntu10.04" line?02:39
bitshufflermicahg: sure, thanks :)02:39
=== fta_ is now known as fta
=== Lutin is now known as Guest62773
=== dendro-afk is now known as dendrobates
=== fta_ is now known as fta
=== sconklin is now known as sconklin-gone
=== nhandler_ is now known as nhandler
=== jra is now known as Guest23079
=== fta_ is now known as fta
=== almaisan-away is now known as al-maisan
pittiGood morning05:22
=== fta_ is now known as fta
micahgpitti:  if a retracer bug hasn't been retraced after a month, is that an issue?06:10
pittimicahg: uh, yes; the maverick/lucid ones are working quite well06:21
micahgpitti: this is for karmic06:21
pittiah, right; no retracers for that one06:22
micahgpitti: is there a way to let people know that when they file bugs?06:22
micahgpitti: what other supported versions are there no retracers for?06:22
pittinot currently06:22
micahgpitti: even hardy?06:22
pittipeople are not really meant to file crashes on stables in the first place :)06:23
* micahg should stop asking for them then06:23
pittimicahg: we do have hardy retracers still, but they are rather unstable (too old launchpadlib/apport stack)06:23
pittimicahg: I still have karmic chroots, but ATM I can't quite remember why I disabled karmic06:24
pittiI guess it was that gdb/glibc breakage again06:24
micahgpitti: well, I'd like to let the bugsquad know what the status is/should be06:24
pittimicahg: what's the particular bug #?06:24
micahgpitti: bug 59632106:24
ubottuLaunchpad bug 596321 in pidgin (Ubuntu) "pidgin crashed with SIGSEGV" [Undecided,New] https://launchpad.net/bugs/59632106:24
pittimicahg: I can re-add the karmic one, and we'll see how far it gets06:24
pitti(done)06:25
micahgpitti: thanks06:25
=== Guest62773 is now known as Lutin
=== fta_ is now known as fta
dholbachgood morning07:39
pittihey dholbach07:39
dholbachhey pitti07:39
=== fta_ is now known as fta
=== amitk is now known as amitk-afk
rock?08:42
micahgpitti: the problem with the eclipse/xulrunner issue is actually a xulrunner/cairo issue which actually affects Seamonkey as well, but I haven't had a chance to fix it yet, where do you think the breaks should go now?09:10
=== tkamppeter_ is now known as tkamppeter
pittimicahg: it seems to me that 1.9.2 should conflicts:/replaces: 1.9.1, so that the old 1.9.1 package is cleaned up for everyone (not just eclipse users); WDYT?09:11
pittiI wonder why this isn't done already09:11
* micahg forgot why we didn't do that...IIRC, we did it for karmic09:11
pittiwouldn't users pile up xulrunner versions right now?09:11
micahgapparently we didn't have a transitional package in karmic...09:12
micahgpitti: yes09:12
micahgpitti: yeah, it makes sense, I'll discuss with chrisccoulson_09:12
pittimicahg: thanks; in this case we should reopen the xulrunner-1.9.2 tasks and close the eclipse ones09:15
=== fta_ is now known as fta
micahgpitti: well, the actual bug was fixed in xul19209:16
pittimicahg: right; but we need a xulrunner task if we want to change/SRU that09:16
micahgpitti: k09:17
dupondjepitti: https://bugs.launchpad.net/ubuntu/+source/aegir-provision/+bug/543662 added debdiff :)09:21
ubottuLaunchpad bug 543662 in aegir-provision (Ubuntu Lucid) "Crashes due to wrong permissions of sudoers file." [Undecided,Triaged]09:21
pittidupondje: please get it uploaded09:22
dupondjeah it first needs to get in maverick with ubunu1 tag ?09:24
pittidupondje: no, upload to lucid09:25
dupondjei'll spam some motu :) don't have upload perms09:26
=== amitk-afk is now known as amitk
geserpitti: I just sponsored dupondje ; it should be now in the SRU queue10:03
pittithanks10:03
=== fta_ is now known as fta
=== fta_ is now known as fta
=== doko__ is now known as doko
=== al-maisan is now known as almaisan-away
=== fta__ is now known as fta
evanyone mind giving a spot check of this patch to sphinxsearch that packages the library and language bindings? http://paste.ubuntu.com/464472/11:44
evhttp://paste.ubuntu.com/464475/ - updated; I failed to mention the build failure patch in the changelog11:47
=== fta_ is now known as fta
=== roccity is now known as roccity_
=== fta_ is now known as fta
=== fta_ is now known as fta
=== almaisan-away is now known as al-maisan
=== al-maisan is now known as almaisan-away
=== fta_ is now known as fta
cjwatsonzul: could you merge gpib?  you're the last uploader, and it's on my list of packages not merged since karmic13:00
zulcjwatson: sure13:00
cjwatsonthanks13:01
cjwatsonStevenK: did you have a plan for hildon-desktop and libosso?  I seem to remember something going past on IRC13:04
StevenKcjwatson: I had no plan, no13:05
seb128cjwatson, I think pitti investigated those some days ago, he was speaking about them on IRC13:05
StevenKTo be brutally honest, we can probably lose the Ubuntu changes for both and just sync them13:07
cjwatsonStevenK: could you either file bugs for those or do it?13:08
cjwatsonI just want them off my list :-)13:08
StevenKcjwatson: I still have privs, so I can JFDI if you wish13:08
cjwatsonthat's fine by me13:09
cjwatsonthat'll be down five today, out of 1813:09
seb128getting there ;-)13:10
ScottKcjwatson: Thanks for the stale merges initiative.  I think it's a very valuable exercise.13:13
StevenKcjwatson: Synced, thanks for the prod.13:16
cjwatsonScottK: I think we'll probably have to do it every cycle (except perhaps LTS cycles?)13:17
ScottKIt might be worth investing some time in automation then.13:17
seb128cjwatson, is there so much value doing those? we have some desktop packages where we decided it's often not worh the work13:17
seb128ie hours of work to not get any value changes13:18
seb128valuable13:18
cjwatsonseb128: the threshold is that they haven't been done for well over a year13:18
cjwatsonseb128: I think it's reasonable enough to at least look at them by that point13:18
seb128right, my comment was rather on about doing it every cycle13:19
cjwatsonwell, the threshold would still be two cycles back from whenever we were doing it13:19
seb128I'm wondering if we should claim that we stop merging that few sources13:20
cjwatsonsomething that people just don't bother with for one cycle don't register13:20
cjwatsonseb128: if you read the spec, it has several alternatives other than doing the merge13:20
cjwatsonI excluded anything in the sync-blacklist, for instance13:20
cjwatsonall I ask is that some active decision be taken, rather than simply letting it fester13:21
seb128I've read your email, I guess I don't feel we never want to merge those again, it's just lot of work for little benefit so we tend to just not do it13:21
StevenKcjwatson: While I'm actually on cocoplum, am I okay to NBS out -7?13:21
cjwatsonStevenK: leave it another day, please - CD builds failed today13:21
* StevenK removes a few NBS binaries, sadly, only 4 or so13:26
psurbhihie ! i can see in git://git.debian.org/debian-ha/redhat-cluster.git references to upstream? what is upstream location for this git?13:30
psurbhithe ubuntu redhat-cluster package needs to be updated. The git patch for this update is huge13:30
psurbhiso wanted to look at a possible smaller patch.13:31
=== fta_ is now known as fta
=== warp11 is now known as warp10
=== fta_ is now known as fta
=== MacSlow is now known as MacSlow|lunch
didrocksdholbach: "the audience even forgave him to try to make French the official language of Ubuntu Development." <- ahah :)14:09
dholbach"ahah" :)14:10
* dholbach hugs didrocks14:10
* didrocks hugs dholbach back14:10
loolpitti: Hey14:11
loolpitti: Do you know why armel apparenlty misses .ddebs?14:11
pittilool: no, they're supposed to be there14:11
=== almaisan-away is now known as al-maisan
loolpitti: For some reason, eglibc for instance is missing14:15
loolpitti: How would I dive into the issue?14:15
pittihmm; /me looks14:15
pittilool: hm, not sure; everythign seems alright with ddeb-retriever, it does collect for armel14:17
pittihttp://ddebs.ubuntu.com/dists/maverick/main/binary-armel/Packages14:19
pittithat seems quite complete14:19
pittiddebs@macquarie:/srv/ddebs.ubuntu.com/public_html/pool$ find -name '*_armel.ddeb'|wc -l14:19
pitti1284514:19
pittilool: so, not sure; must be bad luck with eglibc14:19
pittithis stuff isn't very reliable14:19
loolpitti: Hmm ok14:20
pittisometimes apache on the buildds hangs forever, and thus blocks the retriever for hours or days14:20
loolAh14:20
pittiI guess the ultimate answer is "wait until we enable ddeb support in soyuz" :/14:20
=== cking__ is now known as cking1
=== fta_ is now known as fta
asacmterry_: poke bug 59264014:51
ubottuLaunchpad bug 592640 in avogadro (Ubuntu) "[MIR] avogadro" [Undecided,New] https://launchpad.net/bugs/59264014:51
mterry_asac, getting to it.  I noticed it got removed from debian testing because of python2.6 issues...  i know we worked around them in ubuntu, but still14:54
asacmterry_: so that one is stuck not because you are overloaded? e.g. does it mean you have slots for two or three more?14:54
asacmterry_: i guess you like cloud stuff?14:54
mterry_asac, heh.  I just worked through most of my mir queue.  I don't like this reward  :)14:55
mterry_asac, I'm still working on avogadro, just wanted to finish investigation14:55
mterry_asac, I could take more, if you're willing to suffer a delay to review14:55
asacmterry_: ok. i will give you one more for today ;) ... and leave you alone for a week to give you air to breath ;)14:55
asacmterry_: i think 1-2 weeks is ok (unless its blocking alpha3)14:56
=== MacSlow|lunch is now known as MacSlow
JontheEchidnaavogadro is an optional build dep, but we shipped with avogadro support in the past when the library was part of kdeedu. So it won't block alpha 3 for it to not be in main, but is a priority to us to get in before final as to prevent a feature regression14:57
asacJontheEchidna: lets not remove pressure from that MIR then ... just fix whatever mterry_ wants you to fix15:00
asac:)15:00
JontheEchidna:)15:00
mterry_JontheEchidna, plus, I believe it was already promoted and the review is an after-the-fact deal15:04
* ogra wonders why calling reboot from an init-bottom initramfs script doesnt do anything15:17
LucidFoxGah, so many magic numbers in Murrine15:31
cjwatsonchrisccoulson_: could you look at bug 601009?  I see you were the last uploader15:34
ubottuLaunchpad bug 601009 in swt-gtk (Ubuntu Maverick) "swt-gtk fails to build from source in maverick" [High,Confirmed] https://launchpad.net/bugs/60100915:34
chrisccoulsoncjwatson, yeah, will try and look at that later15:38
=== bjf[afk] is now known as bjf
cjwatsonchrisccoulson: thanks, can I assign it to you?15:43
chrisccoulsoncjwatson, yeah, feel free to15:43
cjwatsondone, thanks15:44
bvleurAnyone know where I can learn more about btrfsck output? I've got lots of lines ending in "errors 400", but I can't seem to find what that means16:03
cjwatsonbvleur: #btrfs is more likely to be able to give a good answer than here, I think16:12
bvleurcjwatson: Thanks!16:13
dholbachLast day of https://wiki.ubuntu.com/UbuntuDeveloperWeek starting in 33 minutes in #ubuntu-classroom16:27
dholbachwarp10, BlackZ: ready? :)16:28
BlackZdholbach: of course! \o16:33
dholbachexcellent16:33
=== fta_ is now known as fta
=== MacSlow is now known as MacSlow|break
=== al-maisan is now known as almaisan-away
=== beuno is now known as beuno-lunch
=== fta_ is now known as fta
=== beuno-lunch is now known as beuno
=== dendrobates is now known as dendro-afk
jdstrandcjwatson: hi! so, micahg just asked me to handle bug #60545318:42
ubottuLaunchpad bug 605453 in weave (Ubuntu) "Please add to the Mozilla Package Set" [Undecided,New] https://launchpad.net/bugs/60545318:42
jdstrandcjwatson: he was told that AAs would be able to do this, but I don't know how and there isn't anything in ArchiveAdministration that I can see that deals with this18:43
jdstrandcjwatson: a) is this something AAs should be doing and b) is there a wiki page describing the process?18:43
cjwatsonjdstrand: if they all look mozilla-ish to you, then that's fine; use an up-to-date lp:ubuntu-archive-tools, and ./edit_acl.py -P mozilla -S maverick -s foo -s bar -s baz ... add18:43
cjwatsonno docs for this that I'm aware of, sorry18:43
jdstrandcjwatson: do you mind if I add it to the wiki?18:43
cjwatsonthat's OK - just don't add permissions for *people* using that tool without the approval of the TB/DMB as appropriate18:44
cjwatsonin general assigning packages to package sets is much like assigning them to components in terms of privilege level, i.e. yes it's something AAs can and should be doing18:44
jdstrandcjwatson: I'll be sure to mention that this is for established teams18:44
cjwatsonthat wasn't quite what I meant18:45
cjwatsonbut yes, I guess that's close enough :)18:45
jdstrandyeah, I guess there could be individuals that already have access18:45
cjwatsonedit_acl.py can also grant a person access to a package set, and that sort of thing18:45
jdstrandanyway, I'll add something about being careful18:45
jdstrandk18:46
cjwatsonand there are also some permissions for individuals that it's OK to extend; for instance till-kamppeter has general approval to upload printing packages, although at present there's no package set for that since it's just him18:46
jdstrandcjwatson: are these permissions that the TB has approved listed somewhere?18:46
jdstrandI could refer to that18:47
cjwatsonjdstrand: probably not :-/18:50
jdstrandk18:51
jdstrandcjwatson: thanks for the info18:51
=== warp10 is now known as warp10_
geserjdstrand: I guess you should ask for a link to the minutes where it was approved if you want to be sure19:12
=== warp10_ is now known as warp10
jdstrandcjwatson: I added https://wiki.ubuntu.com/ArchiveAdministration#Adjusting%20Launchpad%20ACLs19:16
jdstrandcjwatson: though, the command doesn't work for me:19:17
jdstrand$ ./edit_acl.py -P mozilla -S maverick -s instantbird  addThere was an error:19:17
jdstrand(<lp.soyuz.model.packageset.Packageset object at 0x2aaab6a60b10>, 'addSources', 'launchpad.Edit')19:17
jdstrandthat didn't paste right19:17
jdstrand./edit_acl.py -P mozilla -S maverick -s instantbird  add19:17
jdstrandThere was an error:19:17
jdstrand(<lp.soyuz.model.packageset.Packageset object at 0x2aaab6a60b10>, 'addSources', 'launchpad.Edit')19:17
geserIIRC only TB members can do it19:19
=== dendro-afk is now known as dendrobates
geserbug #56245119:22
ubottuLaunchpad bug 562451 in Soyuz "developer-membership-board should be able to edit ArchivePermissionSet" [High,Triaged] https://launchpad.net/bugs/56245119:22
=== bjf is now known as bjf[afk]
jdstranda19:23
jdstrandh19:23
jdstrandgeser: ok, thanks19:23
jdstrandwiki adjusted19:25
=== fta_ is now known as fta
geserjdstrand: I looked at the LP code and *if* I understood it correctly, then LP admins and the owner of a packageset can edit it. The owner of all (except two) package sets it the TB (the owner of the remaining two is DMB).19:40
jdstrandinteresting19:42
=== dendrobates is now known as dendro-afk
micahgcjwatson: jdstrand was stopped by bug 562451, what should I do (if anything)?20:06
ubottuLaunchpad bug 562451 in Soyuz "developer-membership-board should be able to edit ArchivePermissionSet" [High,Triaged] https://launchpad.net/bugs/56245120:06
diekiIf a screenshot in the software center is out of date or incorrect, where do I report a bug? Against the package? Against the software center?20:10
JontheEchidnadieki: submit a new one at screenshots.debian.net20:14
JontheEchidna(this is where the screenshots come from)20:15
diekiJontheEchindna: I did. Months ago. Nothing ever happened with it.20:17
diekiIt was for the package gimp, so I'm sure other people have submitted screenshots as well. However, the current screenshot still shows GIMP 2.4.20:19
=== MacSlow|break is now known as MacSlow
diekiJontheEchidna: Since that failed, what should I do next?20:25
JontheEchidnawait, I guess20:26
JontheEchidnafiling a bug report won't really help, since we have just about as much controll over screenshots.debian.net as you do20:27
diekiOkay.20:27
diekiI wish Canonical/Ubuntu would handle screenshots themselves...20:27
maxwellianDoes anybody have a link to a good explanation of how fakeroot works?  I've read the part about wrapping standard library functions, but how does it keep track of the changes it's pretending to make?  Why do other utilities believe these changes took place?20:31
maxwellianIt seems like black magic to me.20:32
geserjdstrand: if you agree that the request from bug 605453 is valid, I could try if being the owner of the package set is enough to edit it add those packages (the mozilla package set is owned by DMB)20:33
ubottuLaunchpad bug 605453 in weave (Ubuntu) "Please add to the Mozilla Package Set" [Undecided,New] https://launchpad.net/bugs/60545320:33
=== fta_ is now known as fta
jdstrandgeser: I was fine with instantbird, nspluginwrapper and weave. the other three are all in universe, but it wasn't clear why they should be in the package set (gxine and mongodb build depends on xul, but mediatomb is unclear)20:41
chrisccoulsonjdstrand, mediatomb is using spidermonkey20:41
chrisccoulsonas are gxine and mongodb20:41
micahgjdstrand: sorry, I should have specified more about those20:42
chrisccoulsoninstantbird looks pretty neat20:42
jdstranddoes just using those packages mean that they should be in the mozilla package set? forgive me, but I am new to these acls20:42
hdonhi all. i am using jaunty on x86_64 platform. apparently the glibc has gnu ifunc but the gdb does not. is there a repo somewhere that has the correct gdb? i cannot do simple things in gdb like: call strlen("test")20:43
micahgjdstrand: I was trying to add stuff that I'd be likely to maintain20:43
chrisccoulsonjdstrand, that was the idea for this packageset (it would contain the packages that the mozillateam regularly touches)20:43
jdstrandwell, I can't actually do anything about it. geser can make the call on those, but I imagine he would like an email/wiki reference20:44
gesermicahg, jdstrand: Added weave, instantbird, nspluginwrapper (being owner of the package set works)20:45
micahggeser: thanks, but what about the other ones ( the mozjs packages)?20:47
geserchecking what exactly got approved by the DMB and if those package match it20:48
jdstrandgeser: thanks for working on this :)20:49
micahggeser: here's the package set if it helps: http://qa.ubuntuwire.com/multidistrotools/mozilla.html20:49
chrisccoulsongeser - things like gnome-shell and gjs have been approved (as an example of other spidermonkey applications)20:49
gesermicahg, chrisccoulson: sorry for being extra cautious, it's the first time I edit a package set. mongodb and gxine have a xulrunner-dev build-dependency => so they are ok (xulrunner rdepends). But where is the connection from mediatomb to xulrunner?20:57
micahggeser: no problem, mediatomb js was disabled, but I was going to add it back since people wanted it20:58
geserchrisccoulson, micahg: added the three other too21:01
micahggeser: awesome :) thank you very much21:01
chrisccoulsonthanks geser :)21:02
micahgjdstrand: thanks to you too21:02
=== dendro-afk is now known as dendrobates
jdstrandgeser: thanks21:03
gesercjwatson: adding packages to the mozilla package set is done21:03
micahggeser: how should I go about these requests in the future?21:04
gesermicahg: good question, I don't think there is process for it yet. But filing a bug looks good, subscribe the DMB to it (as the DMB is owner of the Mozilla package set and can edit it) and poke a DMB member (I don't believe the DMB looks at bugs regularly yet)21:07
micahggeser: ok21:08
micahggeser: I was also wondering if the package set could be allowed for Lucid21:09
gesermicahg: don't know, perhaps cjwatson can answer that21:14
cjwatsonjdstrand: hm, drat, I thought you had access but obviously not21:14
geserin any case, the owner of a package set can edit it, but only TB members can create them21:14
cjwatsongeser: thanks for handling that21:15
micahgcjwatson: I was wondering if the package set could be allowed for Lucid21:16
cjwatsonmicahg: I haven't generally been doing them for stable releases, no, because it takes ages to sync everything up and stable uploads require special approval anyway21:16
micahgcjwatson: ok, thanks21:16
cjwatsoneach series has a different instance of the package set ... this is necessary, but it does mean things are painful to do retroactively21:17
=== fta_ is now known as fta
* achiang can't seem to wrap his head around GRUB_HIDDEN_TIMEOUT and GRUB_TIMEOUT21:44
achiangif the former=10, and the latter=10, my impression was that the menu is supposed to be hidden for 10 seconds, and then we boot into whatever the default menu option was21:46
achiangother documentation makes it seem like the only way to turn off the menu is to set GRUB_TIMEOUT=021:47
=== fta_ is now known as fta
=== sconklin is now known as sconklin-gone
=== dendrobates is now known as dendro-afk
=== bjf[afk] is now known as bjf
=== fta_ is now known as fta
* ccheney forgot the syntax to push a branched bzr repo to his own area on lp23:19
ccheneyanyone happen to know where to point me?23:19
ccheneyi thought it was something like: bzr push lp:~ccheney/+branches/uec-provisioning  but that appears to not be quite right23:21
ccheneyah managed to get bzr to tell me23:23
ccheneybzr push lp:~ccheney/uec-provisioning/branch23:23
=== bjf is now known as bjf[afk]
=== tkamppeter_ is now known as tkamppeter

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