[00:01] Ultimately some kind of software engineering discipline is required. Let's figure out how to have infinite variants of all libraries interact with each other is a recipe for insanity. [00:01] ScottK: We all agree on that. We are trying to deal with exactly that lack of discipline by providing the ability to assemble multiple versions of Ubuntu/Debian packaged software for a single application's expectations. [00:02] SpamapS: I think that's the wrong solution. [00:02] its pretty much the way the web is developed these days. [00:02] sane or not [00:03] SpamapS: folk can choose to publish source or not [00:03] I think it's reasonable for developers to be able to layer cpan/pypy/maven/gems/etc on top of the distro, but I think can't make that part of the distro. [00:03] some upstreams are insane, and need to be helped to learn about open *SOURCE* [00:03] You're saying if 99% of zope is good, but 1% of it breaks its API in the next release of Ubuntu, people who are relying on said API should ... not use zope? [00:04] ScottK: I think that we've segued. [00:04] OK. [00:04] ScottK: I'm not talking about mass important pypi [00:04] or maven.org [00:04] I do see Scott's point though. That we're facilitating API madness. [00:04] * ScottK was in transit for a while. [00:04] ScottK: I'm talking about removing the *technical limitation* that prevents coinstalling incompatible versions of a dependency shared by either (other packages) or (user installed software) [00:04] Yes. Please don't do that. [00:05] lifeless: If packages are packaged for co-installation that's not a problem. People just have to be convinced it's worth the trouble. See the postgresql packaging for a excellent example of how to do it. [00:05] ScottK: right now for C/C++/CLR packages we support this by putting the soname in the library package, and making clients of the library depend on the libraryname-soname package, with some minimum version specified [00:05] (I know you know that) [00:06] ScottK: ack [00:06] ScottK: so the thing is that neither the java nor python packaging policies cater for this. [00:06] True, but we also normally only ship one version in a final release unless there are multiple source packages. [00:07] ScottK: *and* we need some sensible upstream support/blessing for making 'get the newest $soname-like thing' for the more dynamic (python and ruby specifically) languages. [00:07] lifeless: Actually what we're trying to do with separate binary packages for Python 3 is a form of this. [00:07] ScottK: cool; I have to admit I haven't looked really closely at that. [00:07] ScottK: did you see my use case on the debian-python list? [00:07] lifeless: I did, but I confess I only skimmed it. [00:07] ScottK: fair enough [00:08] very briefly, the scenario is to be able to have two versions of launchpad installed on a machine, (which commonly requires two different releases of (say) zope.publication) [00:09] this is orthogonal to whether launchpad itself would be a package. [00:10] ScottK: re: different source packages & binary packages - I would expect different source packages in this scenario [00:11] ScottK: all the discussion about maven and pypi glue for finding stuff is simply saying: if we can support a richer set of $language packages, then we can -more easily- do the following things: [00:11] (in no particular order) [00:12] - have packages that build with easy_install and the like be fenced off from the internet and get their requirements from apt [00:12] - when a user is using easy_install, have it preferentially find versions from apt [00:12] (for java s/easy_install/maven/, etc) [00:13] I'd personally still expect to be looking at a deb source package and putting license metadata into place - perhaps assisteded by some automation, but such automation is also orthogonal [00:17] In the world of cheap VMs isn't this a bit overenginieered? [00:19] lifeless: Why not just run a separate VM for each one and don't worry about conflicts? [00:22] ScottK: for a developer doing development, who has the same issues, vms are not at all that cheap. [00:23] ScottK: one could say the same thing about having libgettext4 and libgettext5 installed - just use a vm fo rthe programs that need the old/new thing. [00:24] OK. [00:24] Basically, just allow debian packagers to produce binary packages that play in upstream packaging space. [00:25] if pypi has a way to do version requirements, allow a .deb to satisfy that... [00:27] SpamapS: I agree with that. [00:27] Isn't that (at least sort of) what our patched easy_install does now? [00:29] ScottK: two key missing points: [00:29] - packagekit integration to get extra requirements on the fly [00:29] - packaging policy change to put the version number (or as many significant bits as we choose) in the package name. [00:29] packagekit is pretty broken with respect to Debian packages anyway. [00:30] sadly :( [00:30] In order for Kpackagekit to know if it needs extra packages, it actually has to attempt a simulated install and see the results (or something close to that) [00:30] so the idea though, of user space code being able to say "I need this library, please, now" is useful but not strictly needed. [00:43] lifeless: or you could package your app, and the requirement would be resolved at install time. [00:44] SpamapS: that doesn't help with runtime determined dependencies [00:44] SpamapS: doesn't help *us* the *packagers* [00:55] lifeless: ok, my brain's full.. will need to process this a bit to feel good about it. :) === bjf is now known as bjf[afk] [01:36] SpamapS: I think run time dependency discovery is not a great idea. Imagine a web page waiting for a new library to install before it can render. [01:37] ScottK: by runtime I'm primarily thinking about build chains that do runtime determination [01:37] ScottK: not after-packagin runtime dependencies [01:37] Ah. OK. [01:37] That's a bit different. [01:37] POX has done some stuff kind around that idea in dh_python2/3. [01:42] Probably nice to split the problem space: have one thing that tries to determine what is missing. Have an entirely different thing that tries to address this perceived lack. [01:42] The first is hugely useful for packagers. The latter is potentially useful for someone. [01:42] If the output of the first is compatible to the input of the second, folk share. [01:43] Step 0 though is upstreams that are willing to maintain API/ABI compatbility or document when they change. [01:44] ScottK: I don't really see that as hugely important; we can do what we did with e.g. libcamel for upstreams that don't. [01:44] ScottK: its nice then they do, but we don'tneed it. [01:45] There's vast potential to improve the interface for upstreams to be able to do so easily. Some languages don't even have a convention available to indicate a version. [01:45] Just use releases as API/ABI surrogates? [01:45] sure [01:46] That said, I've found it a rare upstream that isn't willing to track API/ABI, assuming they can be shown how to do so. [01:46] as long as upstreams know how to [01:46] instead of doing things like bumping SONAME for every upstream release, or the equivalent [01:47] Right, hence the importance of making better tools available, or *any* tools/convention for things like Java. [01:48] and we're back to changing the packaging policy to encode more data ;) [01:48] yeah, we had this debate yesterday in #debian-cli :) [01:48] lifeless: I'd start with an upstream concept and see how to extend it. [01:48] For example, what do Python eggs not have that we need? [01:48] Or if they have it, how do we exploit it? [01:49] ScottK: thats where I started [01:49] ScottK: pkg_resources.require, which is a setuptools (not distutils) thing, supports versioning of dependencies [01:50] if we say (reasonably so) that you should use that if you need versioned depends, then the upstream angle is taken vare of [01:50] lifeless: I'd talk to POX about what he's already doing to automatically generate versioned depends in dh_python. [01:50] {2,3} [01:50] where does he hang ou? [01:50] And we can use that to populate autodependencies (${Python:Depends} in this case) [01:51] persia: sure, but that is orthogonal to the problem I want to solve [01:51] lifeless: #debian-python on OFTC is best, but #ubuntu-motu also often works. He's in .pl, so likely sleeping. [01:52] lifeless, I'm thinking about "by runtime I'm primarily thinking about build chains that do runtime determination". Why would the build-chain output not want to auto-generate package dependencies? end-user-runtime differs. [01:56] persia: I think it would nice to do so. [01:57] persia: I'm saying that that is a separate benefit to being able to even *build* such things more easily. [01:57] You want build-time installation of build-deps? [01:57] persia: and to being able to *install* concurrent versions [01:58] persia: yes, its a key thing for both maven and easy_install chains; its not -mandatory- but we can save a lot of packager headache if we do it well [01:59] Concurrent installation isn't hard, if one packages it in a namespace-safe manner. That said, having been involved with the pain that was maven, I'm convinced the idea of build-time install of build-deps is misguided at best, and potentially actively harmful. [01:59] We have a solution for maven. [01:59] persia: hah. no, we don't. [01:59] Have had it for > 1 year. [01:59] doesn't scale, doesn't handle enough cases. [01:59] doesn't scale how? [01:59] What cases doesn't it handle? [02:00] Show me bugs, or explain yourself :) [02:00] it doesn't handle the concurrent-deps case [02:00] OSGI apps for instance [02:00] Does if the package of the dep is concurrent-install safe. [02:00] That we choose not to do that much is a different thing :) [02:01] No policy changes are needed to do so, just will to do the work. [02:01] persia: they aren't orthogonal; the maven helper whose code I saw doesn't understand concurrent installs [02:01] ScottK: in which case it will be easy. [02:01] Hi, I'm looking at https://bugs.launchpad.net/ubuntu/+source/bzr/+bug/644015, and in debian/rules, there's the following line: ifneq (,$(findstring test,$(DEB_BUILD_OPTIONS))) [02:01] . I'm guessing that's to disable testing? [02:01] Launchpad bug 644015 in bzr (Ubuntu) "bzr package build should run the test suite" [Undecided,New] [02:02] If so, changing 'ifneq' to 'ifeq' should enable it, right? [02:02] hey, I'm not trying to make this it a Big Thing. Last I checked though, bother the java and python policy specified *how* packages were named, and didn't provide an abi-or-equivalent field. [02:02] lifeless, It's been a while since I looked, but my memory was that concurrency was experessed by installing two different packages (versioned), which provided two different .pom files, which maven happily processed. [02:03] lifeless, Dunno much about python, but for Java, nthykier and mjj29 have been working on that for some time. [02:04] Won't hit policy until there's a healthy bundle of stuff in the archive, and very unlikely to go pre-squeeze-release because of the RC load that level of policy violation would create (RT would kill folk) [02:04] ok, java policy has been updated [02:05] Some package must also provide a symbolic link from... <- a bit fragile for upgrades, still. [02:07] however http://www.debian.org/doc/packaging-manuals/python-policy/ch-module_packages.html is still no-allowance-for-concurrent [02:08] with the cli policy, libraries are installed into a versioned directory & can be requested by version, because they contain the version information within them [02:09] lifeless, Java policy is still work-in-progress :) For python policy, definitely talk to POX before trying to invent something. [02:09] persia: I hear you [02:09] persia: I sent mail to barry/spamaps/jos precisely because I don't have time to invent something... but I want to benefit from it ;) [02:10] Then they ought go talk to debian-python :) [02:10] Which is where barry started. [02:11] Excellent. Why are we talking about it here then? It's an interesting discussion, but I'm now confused. [02:11] Not sure, but that's only the Python bits of this anyway. [02:12] persia: because SpamapS told me his head was exploding. [02:12] persia: and then we started over 3 times as new people weighed in [02:13] * persia gives SpamapS a exceedingly strong head restraint, for preservation of skull [02:13] lifeless, I didn't see that much repetition in the restarts, but maybe I didn't read closely enough. [02:13] lifeless: fwiw, i understand what you want to achieve. there's a similar problem in perl (except require foo 2.3 works). this does seem like an issue for python/debian-python though that we might support, not one we can likely drive =/ [02:14] jiboumans: oh hai :P [02:14] It's going to take someone that wants it enough to champion it. [02:14] * jiboumans omnipresent [02:14] jiboumans: I'm looking in the long term [02:15] lifeless: not being a python expert, is there a 'proper' python way to do it now if i were installing from source/github? [02:15] jiboumans: I'm happy to help organise etc, I don't think I can put in lots of time. [02:15] jiboumans: pkg_resources.require, part of the setuptools (now distribute) stack. [02:15] * ScottK calls on the spirit of barry to cover all things Pythonic. [02:15] jiboumans, eggs are about as close as you'll find for that sort of thing, and the cheeseshop is a better example than github for use. [02:15] which is in equal parts reviled and adored all the Python worlds. [02:16] persia: i... failed to parse that.. eggs? cheese? [02:16] lifeless: what i'm getting at is that if there's a best practice, we can probably integrate and codify it [02:16] or at least give it a shot [02:17] jiboumans, Uhhh : python things to help folk shop for code? Ask someone who doesn't run and hide when confronted with pythong. [02:17] jiboumans: yes, thats what it is [02:18] jiboumans: the 'it all works easily stuff' is built on: [02:18] - distribute (new shiny) [02:18] - eggs [02:18] they have an ongoing discussion about metadata [02:18] heh [02:18] but the critical bit is that in a app/library you say [02:18] require('foo==1.3.2') [02:18] import foo [02:18] i've been through this with perl, i have a vague idea of the space :) [02:18] and you either get an error, or foo 1.3.2 [02:19] require('foo>=1.3.2') [02:19] import foo [02:19] and you might get foo 1.4 [02:19] lifeless: right, so now we have to make sure you can install foo 1.3.2 and foo 1.3.3 at the same time and life is good [02:19] jiboumans: exactly [02:19] jiboumans: which requires two things: [02:19] - disk layout [02:19] - a symlink or something so that a trivial script that just does [02:19] 'import foo [02:19] ' [02:19] will pickup the latest shiny. [02:20] (or most stable shiny, whatever - policy not mechanism) [02:21] right.. alternatives can do that [02:21] we'd want debian to adopt that though, or we'd carry a nasty delta [02:21] alternatives, a meta package (supplying the symlink and current 'best' dependency) [02:21] Rather, we'd want to inherit the solution from Debian, although some of us may participate in it's creation. [02:21] pysupport could put the link in place [02:22] it is, in principle, very simple [02:22] SMOP ;) [02:22] hah, perl 6 you say? [02:22] smop! [02:23] jiboumans, More than that, programming + working with all the people who need to use the feature to make sure they adopt it as the one-true-way. [02:23] and mind you, there's a release of perl 6 ;) [02:23] persia: *nods* [02:24] intuitively it feels like debian is the place where this would happen though and we'd follow, even as you said we'd participate in the creation [02:24] the 'we' there is not very likely my team though given our goals [02:24] Yep. We tried the other way once (dh_iconcache) and it only made it harder to reach the correct final state. [02:24] (the latter we, who'd create it ;)... damn it's getting late [02:26] food calls & [02:28] Hmm. So, bzr tests are running, and the fails so far have been unicode encoding errors. Can these be safely ignored? [02:28] No. [02:28] …ok then. [02:28] Lots of folk use Ubuntu in places where non-unicode is unreadable confusing garbage. [02:29] Do they fail only on the buildds or also run locally? [02:29] possible a stable build-dep on testtools 0.9.6 [02:29] I think the buildds default to C as a locale, which complicates things. [02:29] persia: we turn off relevant test sfor that case [02:30] Oh? Hm. I'm just running it in pbuilder at the moment. I'm new to this :) [02:30] persia: but yes, it could be related [02:30] lifeless, OK. That's safe then. [02:30] ldunn: you might like to chat to maxb [02:30] * persia hasn't ever seen unicode work right when LANG=C [02:31] alrighty [02:37] * ldunn sits around, waits for tests to finish === hunger is now known as Guest97520 [02:43] * ScottK is sitting around waiting for builds to start. [02:49] ScottK: for what build? [02:50] bdrung_: PPA uploads of the new clamav release for Lucid, Karmic, Jaunty, Hardy, and Dapper. [02:53] ... bzr build failed. >:( [03:40] persia: hi! [03:40] persia: is there a standard way to find the current JAVA_HOME? [03:57] mathiaz, In what context? [03:57] So is there a better more up to date source for info on app submission process then : https://wiki.ubuntu.com/PostReleaseApps/Process -- I need info for a session at Code Camp [03:57] persia: https://issues.cloudera.org/browse/DISTRO-2 [03:58] persia: ^^ trying to support building with default-jdk *and* sun-java-jdk [03:58] persia: depending on which one is installed [03:58] persia: JAVA_HOME will be different IIUC [03:58] MarkDude, That's about as close as it gets. Note that under current semantics that submits applications to something that isn't Ubuntu, but dependent on Ubuntu. [03:58] persia: it seems that /usr/lib/jvm/default-java/ won't point to the sun-jdk if installed [03:58] Yes, JAVA_HOME would differ. Why would you want to support building with sun-jdk? [04:00] persia: because that's what upstream strongly recommends [04:00] ok persia - and the important thing for me to stress would be that; the process is *still fluid*. Also that the process is *open* and public - correct? [04:01] Right, looking at recent discussions, it seems we're trying to move away from any expectation or dependence on JAVA_HOME [04:01] MarkDude, Could you explain more about the topic and audience? I may be able to provide more targeted advice. [04:02] It will be primarily an MS crowd [04:02] not all tho [04:02] Silverlight, etc and Iphone [04:02] But some Android devs also [04:03] Yeah, that's probably best for now. There are other processes (also still fluid) that would be more appropriate for people working on primary system applications, but if you're talking to a bundle of folk who just want to have some little bit, they can use that. [04:04] Note that if their work is interesting, it might make sense to incorporate that as a system application, but that's a more complicated message than is easy to put across in a short time (plus, making it a system application creates an expectation of ongoing maintenance, etc.) [04:05] Cool. ty. I might come back in a week or so to see if I could get some nice person to glance at my notes :) [04:06] That would make sense- but I would use that info after - when talking to a specific person [04:06] Thank you developers, you folks ROCK! [04:06] mathiaz, I've just reviewed the current draft of what will become Java policy, and it specifically fails to mention JAVA_HOME, as most stuff is packaged to not require this. [04:07] mathiaz, My recommendation for the upstream solution would be to check for the JAVA_HOME environment variable, and if not set, use the regular Ubuntu way to build stuff. If set, use it. [04:08] mathiaz, For extra points, remind upstream of the upcoming EOL date for sun-java, and that even Oracle primarily extends openjdk these days. [04:15] persia: yop - that's what I'm saying to upstream [04:16] persia: it seems that they're running into issues when using openjdk [04:16] persia: I'll look at the debian/rules again [04:16] persia: thanks again for your input on JAVA_HOME [04:16] OpenJDK isn't bug free :) That said, when issues are encountered, upstream is usually happy to get patches. [04:17] Sorry I didn't have more useful news. JAVA_HOME was all the rage some time back. [04:19] Blugh. I'm lost with these tests [04:19] ldunn: for the bzr package? [04:19] yeah [04:19] Pastebin the failures? [04:20] Err. They're going way past my scrollback in gnome-terminal. Does pbuilder keep logs somewhere? [04:22] I don't know, sorry. (But I am a bzr dev, so I may be able to help with the bzr test failures) [04:22] Hm, well there were 16 failures, I think about 5 were related to unicode errors, and a few were broken pipes with the HTTP server [04:23] * ldunn re-runs pbuilder and collects failures as they come [04:29] heh, I'm not going to be able to catch all of them [04:30] http://ubuntu.pastebin.com/tYxTJ9i8 spiv, that's more or less what's come up so far, up to ~2500/25000 [04:30] It's not possible to redirect the output with > or tee? [04:30] uh. Let me check [04:32] there we go. [04:33] pbuilder *does* make logs (although I don't use it, so don't know where). Check the docs, and save yourself hassles. [04:34] bah, --logfile. :D [05:05] ... ok, so... that... didn't really seem to work. [05:05] Unless it doesn't store the log in the pwd [05:07] In which case... here's a few more failures http://ubuntu.pastebin.com/ZgxFLrBn [05:12] ldunn: You need to do --logfile [path to logfile from pwd including name] [05:12] i.e. --logfile log [05:12] That's what I have [05:12] sudo pbuilder build bzr_2.2.0-1ubuntu1.dsc --logfile pbuilder.log [05:13] Needs to go after build and before the .dsc [05:13] pbuilder doesn't look after the .dsc [05:13] ... oh! [05:13] *that's* more like it. Thanks :) [05:13] * ldunn waits another half hour [05:14] You're welcome. [05:14] ldunn: you might like to try sbuild, it works much faster ;-) [05:14] especially those aufs + tmpfs builds [05:15] oh? I'll investigate [05:15] ;-) [05:21] james_w: ahoy there! You're doing package training on Thursday - just a reminder :) === almaisan-away is now known as al-maisan [06:33] Ok! Finally. http://pastebin.com/kVa8N0Pa === amitk-afk is now known as amitk [06:36] 5750 lines... o.o [06:36] ldunn, Yep, but only the test failures are interesting: most of the rest is just context. [06:37] Yeah [06:37] I figured I may as well paste it all in case there's some other info that might help [06:37] from the looks of it, the tests store test logs somewhere: is the dirty build environment still available? There may be files of interest there. [06:38] It seems like pbuilder removes the environment. "I: removing directory /var/cache/pbuilder/build//2021 and its subdirectories" [06:38] * ldunn[laptop] pokes the manpage a bit more [06:38] There's some argument that preserves it (again, I have no idea which) [06:38] If there's no way to preserve it, that's a bug in pbuilder [06:38] yeah [06:40] It's also worth inspecting the test source: lots of times it's possible to figure out the issue from the way the test fails and the test source. [06:45] persia: bzr includes the log entries with the failures [06:45] spiv, Those little 4-5 line bits are the entirely of the test failure output? [06:46] Yes, although some are much longer! [06:46] See e.g. the log starting at line 4092 [06:46] Tracebacks are interesting, but I have to admit, I really appreciate exception handlers that try to explain what went wrong for test failures. [06:47] Yes, me too :) [06:47] Some tests are much better than others at that... [06:48] It's always the case. It's easy to mandate that folk write tests when committing code. It's much harder to convince folk that their tests need to fail in a helpful manner without accusations of recursive TDD [06:49] So, I guess some of these tests are failing because the pbuilder env isn't set up for unicode? [06:50] ldunn, To put that another way, perhaps the tests are making unwarranted assumptions about the environment in which they are run. [06:50] Well, bzr's test suite is supposed to cope with LANG=C. [06:50] hmmm. [06:50] (By skipping tests, if necessary) [06:51] It skipped 246 unicode-related tests, apparently [06:51] Mind you, skipping tests isn't usually the best way to get around stuff, as it might defeat the point of the tests running during the build :) [06:51] This is true. [06:52] Another option would be to adjust build-depends, force LANG=${something-else}, and then run the tests. [06:52] Either way, looks like a bug in the test suite (the test should have been skipped if it depended on LANG != C ) [06:53] Hm. :/ [06:54] That said, at least the bzrlib.tests.blackbox.test_alias.TestAlias.test_unicode_alias failure is reproducible with LANG=C [06:55] So it appears our test suite has some bugs here :/ [06:56] So, at the moment, the test suite probably shouldn't be enabled on this package? [06:56] * spiv kicks off a local test run [06:56] At the moment, yes :( [06:57] Please attach that log to the relevant bug, if you haven't already. [06:57] I haven't, I'll do that [06:57] ldunn, Based on the meeting last night, I believe the test suite is required to be enabled on that package. [06:57] I'll see how easy it is to fix these failures, it's probably not hard. [06:57] new microrelease coming up ? :) [06:58] If LANG=C is the only cause, a reasonable workaround may be to set it to something else (and cause more tests to run too, as an added benefit) [06:58] (might wait until the test suite passes in a buildd environment before placing the final tag) [06:58] *nod* [06:59] Hmm, I notice python-paramiko isn't installed in that environment... that's good, paramiko has a bug that causes a test failure ;) [07:00] (I've submitted a patch to upstream and to the bug for the ubuntu package, but no response yet) [07:00] That's part of why we use the specialised environment: we can control what packages are installed there (save a certain minimal set, but anything that doesn't work with those is probably suspect anyway) [07:01] Right. [07:02] In an ideal world, perhaps the package build would manage to run the test suite twice: once with the minimal dependencies, and once with all the Recommends and Suggests as well. [07:02] But I expect that would be pretty tricky to do. [07:04] spiv, Requires turning on (limited) network access mid-build, which then permits packages to significantly vary behaviour based on contents of internet sources, which permits a number of interesting avenues to enable running arbitrary code on arbitrary machines. That said, a responsible upstream wanting to make sure their testsuite runs under adverse conditions can always add all sorts of random things to build-depends to test it. [07:06] Well, we already have http://babune.ladeuil.net:24842/ [07:07] Which currently exercises our trunk on a variety of platforms [07:07] I note it failed on maverick :P [07:07] (In addition to merges to trunk and the stable branches having to go through PQM, which runs 'make check') [07:07] That's probably the right place to exercise it in a variety of environments on each platform then. [07:08] * persia has a 5 line patch that passes "make check" and causes complete system failure for all users [07:08] ldunn[laptop]: failed to fetch the code due to a config issue: [07:08] http://babune.ladeuil.net:24842/job/selftest-maverick/lastFailedBuild/console [07:08] oh. Alright, heh [07:08] Ah, so I see. [07:09] persia: Me too, how about we apply it to the packaging? ;) [07:09] Please no :) [07:09] I think that fails the intent of the request to run the test suite, even if it satisfies the letter. [07:09] Right. [07:10] Good morning [07:47] Morrrrrning [07:49] moin [07:52] hey Keybuk [07:52] morning pitti [07:57] Right, time to get the day started; it's Emacs time, baby, yeah! [07:57] M-x start-day [08:02] emacs kills IRC clients!! [08:02] that's why vim is better!!11! [08:03] :k irc [08:03] Or something. [08:12] tkamppeter: I reject your "ignore every error" uploads; this is a way too big hammer (and a wrong one, too) to fix this crash [08:33] tseliot: can you please upload fglrx-installer for maverick as well? [08:34] pitti: yes, now I can, however it was broken in maverick because it wasn't compatible with the new X (not only because of the security fix) [08:47] tseliot: ah, right; we disabled it in jockey, didn't we? [08:47] tseliot: so, not urgent then [08:47] pitti: yep, I'll revert that change when the driver is ready === apachelogger_ is now known as apachelogger === spike_ is now known as spikeWRK [09:16] ara: nice work on qa.u.c.! [09:19] pitti, thanks :) [09:30] pitti, are we making work items db for natty yet ? [09:31] apw: we don't [09:31] pitti, any idea when we're going to ? [09:31] I guess I should finally move the stuff from ~pitti to ~platform :) [09:50] hmm, looks like there is an issue with the recent apache2 security update [09:50] Three reports of bug 644853 [09:50] Launchpad bug 644853 in apache2 (Ubuntu) "apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: Module reqtimeout does not exist!" [High,Confirmed] https://launchpad.net/bugs/644853 [09:52] !regression-alert ^^ [09:52] !regression-alert [09:52] cjwatson, jdong, pitti, slangasek, ScottK, mdz, kees, ttx, marjo, seb128: reporting regression in a stable release update; investigate severity, start an incident report, perhaps have the package blacklisted from the archive [09:53] mdeslaur: ^ [09:58] hm, strange [09:59] weird, did that change in the packaging? [10:00] pitti: not in the security update... I suspect a more general upgrade issue introduced in a past update [10:00] http://launchpadlibrarian.net/53953428/apache2_2.2.14-5ubuntu8.1_2.2.14-5ubuntu8.2.diff.gz looks really strange, though [10:01] yes [10:02] * ttx checks out branch [10:03] beh, no lucid-updates branch [10:06] That debdiff is wrong. There were actual changes in the upload. [10:07] None that should cause this, though. [10:07] I found these two, though: [10:07] https://bugs.edge.launchpad.net/ubuntu/+source/apache2/+bug/576255 [10:07] Launchpad bug 576255 in apache2 (Ubuntu) "can't install apache2.2-common (2.2.14-5ubuntu8)" [Low,Invalid] [10:07] https://bugs.edge.launchpad.net/ubuntu/+source/apache2/+bug/562370 [10:07] Launchpad bug 562370 in apache2 (Ubuntu Lucid) "Upgrade from 2.2.14-5ubuntu6 to 2.2.14-5ubuntu7 results in syntax error, missing module" [Critical,Fix released] [10:08] right, the 8 -> 8.2 debdiff is clean [10:10] $ dpkg -c /home/lp_archive/ubuntu/pool/main/a/apache2/apache2.2-bin_2.2.14-5ubuntu8.2_i386.deb | grep reqtimeout [10:10] -rw-r--r-- root/root 13704 2010-08-19 03:23 ./usr/lib/apache2/modules/mod_reqtimeout.so [10:10] and that package was just configured ... [10:10] if dpkg --compare-versions "$2" lt 2.2.15-1~0; [10:11] looks really weird in a package with version 2.2.14-5ubuntu8.2 [10:11] But maybe that's just me. [10:11] (from apache2.2-common.postinst) [10:14] Oh. [10:14] soren: yes, maybe the error is triggered once you pass twice that piece of code. [10:14] so the error specifically means that /etc/apache2/mods-available/reqtimeout.load doesn't exist [10:14] a2enmod decides whether a module exists based on whether a conffile exists. [10:14] ...so if the use deletes said conffile, the postinst goes boom. [10:14] Forever. [10:14] quite so [10:15] so those three users would just have played too much manually with their conffiles ? [10:16] ah! ah! [10:16] a2enmod is supposed to be run only once. And with that update, it runs twice. [10:16] ttx: I still don't see how that could cause that error [10:17] a2enmod doesn't remove the .load file [10:17] cjwatson: wouldn't /etc/apache2/mods-available/reqtimeout.load move to mods-enabled or something ? [10:17] symlink [10:17] it's not moved, no. [10:17] arh, too bad for my explanation [10:17] * ttx should just set up a reproduction. [10:17] a2enmod should be idempotent [10:18] the added a2enmod in the postinst matches the pattern of a2enmod calls above [10:18] It's the exact same bug as this: [10:18] https://bugs.edge.launchpad.net/ubuntu/+source/apache2/+bug/576255 [10:18] Launchpad bug 576255 in apache2 (Ubuntu) "can't install apache2.2-common (2.2.14-5ubuntu8)" [Low,Invalid] [10:18] albeit ones for a fairly old version [10:18] cjwatson: except that the above ones are much more restrictive in versioning. [10:18] sure, but nevertheless [10:18] The user reporting it just failed to mention that he got the error on upgrade, so it was marked Invalid. [10:19] infinity probabaly assuming that the user just tried manually doing "a2enmod reqtimeout" and having removed the corresponding .load file had caused it himself. [10:19] certainly seems like || true would be a sufficient fix [10:19] *nod* [10:19] and that the version guard should be fixed for the backport to lucid [10:20] It's rather surprising this never happened before. [10:20] There's a bunch of a2enmod calls in that postinst. [10:20] There's probably a howto somewhere on the internetz telling people to delete that file. [10:20] *sigh* [10:20] soren: there's a howto for every bad idea ;P [10:21] having the list of available modules effectively come from /etc isn't really a great design === ldunn[laptop] is now known as ldunn [10:21] lifeless: Some day we should clear out the internet and start over. [10:22] soren: and appoint you as BMP reviewer, maybe [10:22] ttx: BMP? [10:22] branch merge proposal [10:22] Oh. [10:22] "Internet core committer" [10:22] Yeah, keeping the internet in bzr sounds like a good idea. [10:23] I can think of a few pages, I'd like to run "bzr blame" on. [10:23] lol [10:23] soren: I see which precise one you mean. [10:23] ttx: I'm sure you do :) [10:23] * soren shakes his fist in the Internet's general directoin [10:25] * ttx discards the regression alert on the "Internet's fault" pile [10:26] sorry for the noise chaps. Blame those 3 concurrent bug reports. === hanska is now known as dapal [10:50] pitti, what about only ignoring IOError (this upstream has introduced a little later) for bug 618017? [10:50] Launchpad bug 618017 in splix (Ubuntu) "openprinting-ppds crashed with IOError in ls()" [High,Triaged] https://launchpad.net/bugs/618017 [10:50] tkamppeter: you can do that, but only at the actual print statement, not for the entire program [10:51] if it fails to open an output file, it should fail properly [10:56] pitti, this program is rather simple. It only takes data which it contains by itself (the compressed PPDs are embedded in the program) and it does nothing else than putting the data out to stdout. It does not open any files. [10:57] ev: hey, before you release the next ubiquity version, if you can just look at my merge proposal (bump dep on libindicator for ABI change). Thanks! [10:57] didrocks: absolutely [10:57] tkamppeter: well, but hiding each and every error in it will make debugging a pain; you won't even know that it's this program which is at fault then [10:58] ev: thanks a lot :) the new libindicator-dev will be available within the day [10:58] didrocks: wow, ubiquity is using indicators now? [10:58] pitti, in the new minimal panel :) [10:59] pitti: yeah, in the "install only" mode [10:59] pitti, normally the program is called by CUPS and the output is piped into another program. The other program does not necessarily read all the output of the PPD archive and closes before the archive program finishes. This situation should not trigger Apport. [10:59] pitti: you have a top panel now [11:00] didrocks, pitti, or in oem-config mode [11:00] its really slick and small [11:00] tkamppeter: ah, right; so the print should catch that IOError and cleanly exit the program then [11:00] we should use it everywhere ! [11:00] tkamppeter: this at least explains the pipe error [11:01] ogra_ac: yeah, it's great :) [11:03] hello guys, is there any API on linux similar to page 73 of this http://www.aquaphoenix.com/hardware/ledlamp/reference/synaptics_touchpad_interfacing_guide.pdf [11:04] or if you know a better channel to ask that, please forward me there [11:07] pitti, I can do one of two things: [11:09] pitti, 1. I use the upstream version of pyppd, as usually one should use programs as they come from upstream. It catches only KeyboardInterrupt and IOError but for the whole program. [11:11] pitti, 2. I can consider the upstream program as not acceptable (reporting a bug to upstream), letting only KeyboardInterrupt being caught for the whole program and IOError only for the two print statements for the list and for the PPDs. [11:11] pitti, WDYT? [11:12] tkamppeter: hm, I think use 1. and report a bug to them to only catch the IOError on the print [11:12] pitti, OK. I will do so. [11:13] didrocks: FYI the Build-Depends change needs to be done in d-i/update-control [11:13] (in addition) [11:13] actually I should just say that in the merge proposal, shouldn't I [11:14] cjwatson: really? I don't see them as rdepends of libindicator0 [11:14] oh, the path [11:14] * didrocks is tired, sorry :) [11:14] cjwatson: ok, fixing that ;) [11:17] cjwatson: merge reproposed, sorry for not seeing it [11:18] cjwatson: btw, I processed unapproved this morning (and now again); light-themes, compiz, and telepathy require more input, but I can't self-approve my udev and p-common uploads === amitk is now known as amitk-afk [11:42] pitti, new version of foomatic-db uploaded. Please check and tell me whether it is OK, after that I will do the rest. [11:43] pitti, the pyppd there is now unpatched upstream. Functional change is only the "try: ... except: ...", all the noise in the debdiff is doc files and version number change. [11:46] tkamppeter: perhaps you could replace "apport popup" with "crash on SIGPIPE" [11:46] (but don't worry about that for foomatic-db) [11:48] tkamppeter: looks fine to me, accepting [12:03] mvo, sw-center change works (enables the PPA), but i get an "untrusted packages" error when trying to install from the PPA [12:10] ogra: thanks, could you file a bug please? [12:11] mvo, will do [12:11] any specific logs you want ? === MacSlow is now known as MacSlow|lunch [12:15] hi [12:15] ogra: no, I think I know what the problem is [12:15] ogra: just the bug so that I can target it [12:16] mvo, k [12:16] filing as we speak :) [12:16] thanks! [12:22] mvo, bug 645120 for you [12:22] Launchpad bug 645120 in software-center (Ubuntu Maverick) "using an apturl source that also enables a PPA pops up an "Untrusted Packages" message when installing from the PPA" [High,New] https://launchpad.net/bugs/645120 === dmart_ is now known as dmart [12:28] mvo, oh ... i didnt click past the error message yet, seems hitting the install button is a no-op [12:28] is that a separate bug or related ? [12:31] pitti, hplip is uploaded. [12:32] ogra: please add it to the bugreport (the info) [12:33] ok === amitk-afk is now known as amitk [12:34] done [12:36] ev: I'm doing a fresh install now and selected "use entire disk" but in the confirmation screen I have only a ext4 now, no mention of a swap device. is that intentional (information most users will not care about). or did it for some reason not create a swap device? [12:36] * mvo is trying to reproduce the apt-cdrom bug that keybuk mentioned yesterday [12:36] yeah, sorry, I oddly haven't been able to reproduce now it's all installed [12:36] what I originally did: [12:36] reinstall ! [12:36] :) [12:36] installed from CD-ROM, no network connection [12:37] Keybuk: no worries, I wanted to see the new installer anyway (its shinny!) [12:37] Keybuk: desktop install or alternate install? [12:37] did apt-cdrom add, apt-get update (which complained obv. about no network) then apt-get install bcmwl-kernel-source [12:37] desktop [12:37] then apt complained that it couldn't find the files [12:37] it gave the name of the CD exactly as it was [12:37] and it gave the paths exactly as they were on CD [12:37] CD was mounted at /media/apt [12:38] ogra: it was rather too much of a fight to get things installed in the first place! [12:39] Keybuk, yeah ... [12:39] * ogra has no ubuntu probelms anymore since he bought an armel netbook :) [12:39] Keybuk: so it was the desktop-install cd? [12:39] it was [12:39] thanks [12:39] * mvo is doing the install now [12:39] ev: its really shinny, kudos [12:40] right, lunch - grab me later or tomorrow if you can't replicate and I'll try and help out [12:41] Keybuk: bon appetite [12:44] mvo, hmm ... now i'm trying to install oo.o here, seemingly using the metapackage (sw-center says: openoffice.org office suite in the UI) but that only offers me an "update now" button, installing one of the components works though [12:52] ogra: oh, i check [12:53] mvo, seems i get the metapackage offered in "addon packages" in the writer screen [12:53] * ogra wonders if thats just a wanted design i'm to dumb to understand [12:54] ogra: that OOo is not there is a bug === al-maisan is now known as almaisan-away [12:55] mvo, ah, k, i was doubting my skills to understand mpt's decisions :) [12:55] you are not a target user ;) [12:55] wait what? [12:55] ogra: but seriously, this one is a bug [12:56] ogra: I think a bug in the meta-data to be precise [12:56] ogra: is that on i386?amd64?*cough* arm? [12:57] mvo, *cough* arm indeed :) [12:57] There shouldn't be an "Update Now" button anywhere afaik [12:57] ogra: ohhhhh [12:57] but writer installs just fine [12:58] oo.o finished building yesterday [12:58] so data should be available [12:58] mpt: it appears if there is meta-data for a item but we have no package for it, it usually means that /var/lib/apt/lists is empty for some reason [12:58] mpt: and a update fixes the issue [12:58] ah, I see [12:58] mpt: but apparently ogra has hit a bug on arm [12:59] \o/ [12:59] another one :) [12:59] ogra: what does apt-cache policy openoffice.org give you? [12:59] lets see [13:00] ogra: dude, if you find more bugs, you will have to rotate into QA! [13:00] installed and candidate say (none), rest is empty [13:01] mvo, nah, rotate more QA ppl to arm so i dont have to search them :) [13:01] ogra: hm, why is this? is the package not availalbe for arm at all? [13:01] * ogra cant ssh in currently and a writer install is running, i need to test OO.o for doko ... so i have to copy/brain/paste here [13:01] ogra: at least LP says it is [13:01] yes, it is [13:02] but why does apt not know about it then :) ? [13:02] no idea [13:03] does the apturl stuff run an apt-get update if it enables them ? [13:03] s/them/PPAs/ [13:04] though the package cache should be up to date, the image was rolled this morning ... (3h ago) === dendrobates is now known as dendro-afk [13:14] What is an »unseeded package«? As in "ubuntu-release delegations for unseeded packages in universe/multiverse" [13:15] bullgard4: usually packages without a Task [13:16] micahg: Thank you. [13:23] mvo: thanks! Very much appreciated. === almaisan-away is now known as al-maisan [13:31] mvo: Keybuk's problem might have been an installer bug instead - just uploaded a backport of a change I made to Debian a couple of days ago to fix a similar problem [13:31] ev: I just saw that a swap device is created so my earlier question is solved [13:32] cjwatson: aha, ok. what branch should I look at to see the diff? === MacSlow|lunch is now known as MacSlow [13:36] mvo: lp:~ubuntu-core-dev/base-installer/ubuntu [13:36] thanks [13:37] cjwatson: that seems to be a bit confusing, I check why apt is requiring both [13:37] (confusing on apts side) [13:48] mvo, hmm, so even after apt-get update i dont see oo.o meta in apt-cache policy [13:49] mvo, http://paste.ubuntu.com/498447/ [13:49] * ogra has ssh now [13:52] ogra: I can't see it in the packages file for armel on ports [13:53] weird [13:53] publisher hiccup ? [13:53] possible [13:53] Unlikely. [13:53] * wgrant looks. [13:54] ogra: you don't have universe enabled [13:54] openoffice.org | 1:3.2.1-6ubuntu2 | maverick/universe | amd64, armel, i386, powerpc [13:54] the metapackage has been in universe since lucid (I don't know why) [13:55] if it needs to be re-promoted, somebody should seed it [13:55] I can do that, I need to seed ubuntu-extras-keyring anyway [13:56] cjwatson, oh, weird [13:56] thanks ! [13:56] hey. I'd like to get this tiny bugfix in the cairo2 package -- should I just file a bug pointing to it? https://bugs.freedesktop.org/show_bug.cgi?id=30115 [13:56] Freedesktop bug 30115 in general "cairo_device_type_t enum has a trailing comma" [Normal,Resolved: fixed] [13:56] cjwatson: can I ask for a quick advice? should I seed it into desktop ? or rather platform? I think desktop is better as we probably leave it out on the server, but I don't have a strong opinion. as it only contains new stuff it should not harm much to have it as a recommends on ubuntu-standard [13:58] cjwatson, mvo, hmm, shouldnt sw-center have told me that its in universe though ? (and offer to enable it) [13:58] mvo: I think ubuntu.maverick/supported-desktop-extra, given that there's already oo.o stuff there [13:58] ogra: it should have, that is a bug in the meta-data, I add a test for this [13:59] ok [13:59] thats what i thought [13:59] cjwatson: I meant where to seed "ubuntu-extras-keyring" :) [14:01] oh [14:01] mvo: my gut feel would be platform.maverick/desktop-common [14:03] cjwatson: yeah, that makes sense, thanks [14:07] hm, it looks like openoffice.org depends on some other universe stuff (like openoffice.org-filter-mobiledev [14:13] imho we dont need it seeded in main [14:15] ogra: ok, I fix the meta-data [14:16] (we dont use it on armel at all btw) [14:16] (in the images) === badipod_ is now known as badipod [14:44] I have good news - armel cross compiler 4.5 landed in ubuntu (gcc-4.4 is on a way) === bjf[afk] is now known as bjf [15:13] pitti, all new packages for bug 618017 uploaded. [15:13] <\sh> how can someone disable on lucid the write_net_rules script to overwrite self written /etc/udev/rules.d/70-persistent-net.rules file? during jaunty this behaviour was different somehow.. [15:13] Launchpad bug 618017 in splix (Ubuntu) "openprinting-ppds crashed with IOError in ls()" [High,Fix committed] https://launchpad.net/bugs/618017 === hanska is now known as dapal [15:18] <\sh> oh damn....the format changed...halleluja [15:23] ScottK, in case you have a bored minute i'd like to draw youre attention to bug 645200 :) [15:23] Launchpad bug 645200 in systemtap (Ubuntu) "please sync systemtap 1.3 from debian experimental" [Undecided,New] https://launchpad.net/bugs/645200 === hanska is now known as dapal === ivoks-afk is now known as ivoks [15:58] kenvandine, i found a glaring ambiance/radiance bug not fixed by your new release. [15:58] should i mark its bug for uife? [15:59] LLStarks, file a bug for sure... i know very little about the theme :) [15:59] but i can make sure someone looks at it asap [16:00] https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/622284 [16:00] Launchpad bug 622284 in light-themes (Ubuntu) "font blur on some buttons in beta theme" [Medium,Confirmed] [16:01] oh wow [16:01] mark already jumped on it [16:02] i feel honored. [16:05] mvo: http://paste.ubuntu.com/498545/ - interested? [16:06] charlie-tca: https://wiki.ubuntu.com/UbuntuOpenWeek/Timetable can you pass that along to xubuntu folks? Sessions wanted! [16:06] ev: yes, checking [16:06] that's roughly: fakeroot fakechroot -s debootstrap --variant=fakechroot maverick maverick; fakeroot fakechroot -s chroot maverick; apt-get -y install ubiquity ubiquity-frontend-gtk; apt-get -f install [16:07] Be happy to.Thanks for letting us know [16:07] I noticed you fixed a similar bug relatively recently, in ubuntu1, not sure if this is related though [16:08] ev: so that is from debootstrap? [16:08] correct [16:09] well [16:09] sorry [16:09] the error is not from bootstrap [16:09] that succeeds after it retries a few times [16:09] the error is from chrooting into the presumably successfully created chroot and trying to install ubiquity [16:10] debootstrap returns 0 [16:41] <\sh> oh I'm stucked now...I'm writing my own 70-persistent-net.rules file, and in jaunty write_net_rules never touched it when it was there..now on lucid, it always replaces my rules with its own...which is totally different behaviour, even chmod 444 of this file doesn't prevent udev to overwrite [16:43] cjwatson: it seems like the btrfs patch you added to GParted causes it to crash - https://bugs.launchpad.net/ubuntu/+source/gparted/+bug/609447 [16:43] Launchpad bug 609447 in gparted (Ubuntu) "gpartedbin crashed with signal 5 in Glib::exception_handlers_invoke()" [Medium,Confirmed] [16:44] psurbhi: ^- that was your btrfs patch for gparted - could you look at that, please? === dendro-afk is now known as dendrobates [16:47] cjwatson: you are the one who generates the cdimage .manifest-daily right :)? === ivoks is now known as ivoks-afk [16:49] RoAkSoAx: scripts that I operate do it, yes [16:50] (though I am but one of the operators these days) [16:51] cjwatson: Well I think there might be a mistake with this entry: " ubuntu maverick /kubuntu-mobile/daily-live/current/maverick-mobile-i386.iso 701138944"sionce it is pointing a kubuntu ISO instead of an ubuntu one :) [16:51] pitti: 618017> the packages seem to have been accepted, in spite of your nack in the bug log - did you and tkamppeter work this out off-line? [16:53] slangasek: yes, I rejected the original ones, and he uploaded fixed versinos [16:53] pitti: oh; the changelogs still all refer to try: main() except: pass [16:54] slangasek: really? where? [16:54] hplip (3.10.6-1ubuntu10) maverick; urgency=low [16:54] * debian/local/pyppd/pyppd/: Updated to pyppd 0.4.9, to suppress runtime [16:54] error tracebacks by putting a "try: ... except ...: pass" construct around [16:54] the main function call. This avoids Apport pop-ups when the execution of the [16:54] self-extracting compressed PPD file archives gets stopped by the calling [16:54] process (LP: #618017). [16:54] slangasek: those were the ones I've seen [16:54] slangasek: I think there was one package which got accepted before, something with p* [16:54] slangasek: but it got fixed again as well [16:55] pitti: "around the main function call" - looks to me like exactly what you were objecting to [16:55] anyway, if you're aware of it, I assume all is as it should be :) [16:55] slangasek: right, but now only KeyboardInterrupt and IOError [16:55] ahh, ok [16:55] slangasek: the latter is still not quite well, but I asked Till to file an upstream bug [16:56] slangasek: and since the program is basically just one fancy print statement, I considered it "good enough" [16:56] RoAkSoAx: thanks, fixed [16:56] but I didn't want it to shadow things like ImportError, or wrong format strings, etc. [16:57] tkamppeter: bug 645328> oops, sorry about that, and thanks for finding; I'll get it fixed first thing tomorrow [16:57] Launchpad bug 645328 in cups (Ubuntu Maverick) "use of dpkg-vendor requires dpkg-dev" [Undecided,New] https://launchpad.net/bugs/645328 [16:57] cjwatson: thank you :) === al-maisan is now known as almaisan-away [17:03] pitti, thanks for passing through my uploads. Don't you have access to pass through ptouch-driver? [17:05] tkamppeter: perhaps it wasn't in the queue yet when I processed it; but we'll get it in, don't worry [17:05] * pitti -> dinner === dendrobates is now known as dendro-afk [17:15] zul: I noticed that after a recent upgrade squid seems to be not always started anymore, is that a know issue? might be something with squid-deb-proxy, I have not investigated yet [17:16] mvo: ill take a look [17:16] thanks, I can dig more into it tomorrow (almost dinner time for me :) === hrw is now known as hrw|gone [17:34] ev: apt bug is fixed, thanks for reporting it [17:34] mvo: you rock! [17:35] thanks :) [17:36] * mvo will not say just how silly the bug was [17:38] <\sh> anyone have a short hint on how to enable debugging mode for udev? udev.conf: udev_log="debug" or something like this? [17:39] yes, that. or udevadm control --log-priority=debug [17:39] run update-initramfs -u after editing the file if you want debug output in the initramfs too [17:41] <\sh> oh wow...if this is not a big bug [17:42] <\sh> ok...here it goes: /lib/udev/write_net_rules writes into /etc/udev/rules.d/70-persistent-net.rules, while debugging enabled, it reads this 70-persistent-net.rules file, but adds stuff into the very same file, because the main rules files which triggers write_net_rules is 75-persistent-net-generator.rules [17:42] <\sh> so 70 comes first, and 75 changes everything [17:43] I thought it had to be that way. the purpose of writing the net rules is to record the state of the mac->device mapping in this boot, to preserve it for future boots. thus writing the net rules has to come last [17:44] but I'm going out so can't debug this now [17:44] <\sh> cjwatson: if you want to have a nic named "eth0 " on a different device, you need to say that normally in 70-persistent-net.rules but somehow this is not wanted by /lib/udev/rules.d [17:45] <\sh> if the admin tells udev to "this is the action you need to do when finding this device with mac address X:Y:Z", the system shouldn't overwrite his wish [17:45] <\sh> s/his/his\/her/ [17:51] <\sh> the second bug I would say is, that write_net_rules helper script can't be prevented to write the 70-persistent-net.rules file, even if admin says that this file is chmod 444 === beuno is now known as beuno-lunch === deryck is now known as deryck[lunch] [17:57] Why do the graphical package management tools use apt-get instead of aptitude? [17:57] They don't flag packages as installed as a dependancy, right? [18:08] how does debuild -S decide what files to keep? iow, how does it decide whether to ignore .git/ ? [18:13] hallyn: the DEBUILD_DPKG_BUILDPACKAGE_OPTS environment variable lets you control that [18:14] ev: thanks! [18:15] (wonder if there is a way to get 'bzr dailydeb' to honor that) [18:15] ~/.devscripts most likely [18:17] DEBUILD_DPKG_BUILDPACKAGE_OPTS="-i -I" [18:17] always a good thing to have [18:17] http://qa.ubuntuwire.com/ftbfs/ isn't updated anymore === ivoks-afk is now known as ivoks [18:29] doko: The admin for that is away right now, but I've pinged them. [18:30] ScottK: thanks [18:32] <\sh> cjwatson: ok, the workaround is to overwrite 75-persistent-net-generator.rules in /etc/udev/rules.d/ but this should not be the case, when the README tells something else [18:36] <\sh> and that doesn't work when you do it when you start the server up...*grmpf* === rickspencer3_ is now known as rickspencer3 === BlackZ_ is now known as BlackZ [18:52] does anyone know who calls sysv-style initscripts like "reboot" and "shutdown"? if i issue them as root from the cmdline, i think i'm directly calling the binaries in /sbin... === beuno-lunch is now known as beuno === deryck[lunch] is now known as deryck === dendro-afk is now known as dendrobates [19:07] charlie-tca: I've got karl looking at the tomboy menu thing [19:07] Thank you [19:07] I hope we can get it fixed [19:08] It just seems not everyone can reproduce it. [19:08] I think we got it [19:09] charlie-tca: was there someone working on appindicator support for XFCE somewhere? I remember seeing something a while back. [19:09] I don't remember. I will have to go looking [19:10] ok if you run into anything lmk. (That being said the fallback is supposed to be working anyway) [19:10] I will do that. Thanks [19:11] if someone is interested but needs help I can get them help too === dendrobates is now known as dendro-afk [19:17] jcastro: not really. There's a panel plugin (xfce4-indicator-plugin), but nothing in xfce core. [19:19] pitti, I have reported the pyppd problem upstream now. === dendro-afk is now known as dendrobates [20:18] hggdh: my bug-control membership is about to expire, you're listed as someone to get in touch with - can you renew? [20:19] hallyn: doing it now [20:19] hggdh: thanks! [20:19] hallyn: what is your LP id? [20:21] hallyn: forget, got it. You are all set. === hrw|gone is now known as hrw === dendrobates is now known as dendro-afk === dendro-afk is now known as dendrobates === hrw is now known as hrw|gone [20:54] ogra: the channel adding stuff should be fixed in trunk now (in software-center) === dendrobates is now known as dendro-afk === dendro-afk is now known as dendrobates === bjf is now known as bjf[afk] === tkamppeter_ is now known as tkamppeter === ivoks is now known as ivoks-afk === dendrobates is now known as dendro-afk === dendro-afk is now known as dendrobates