/srv/irclogs.ubuntu.com/2010/03/08/#ubuntu-motu.txt

persiacody-somerville: Tell the CC, not me :)00:18
=== kamalmostafa is now known as kamalmostafa-out
RoAkSoAxhey guys how to make autotool update patches during build with debhelper?00:58
RoAkSoAxi meant, how to make autotool files get update during build with dh7?00:58
persiaHow much of an update do you want?00:59
RoAkSoAxpersia, let me explain, lighttpd used to be package with cdbs and in UBuntu the lighttpd-dev package was itnroduced and they were using DEB_AUTO_UPDATE_* variables to ensure autotool files get updated with the ubuntu patches. however, now lgihttpd has been changed to dh7. How would I do the same to ensure that autotool update its file with the patches?01:01
persiaDo you understand what DEB_AUTO_UPDATE_* did?01:04
RoAkSoAxpersia, just ensure automake's version to use?01:05
persiaheh.  No.01:05
persiaSo, which of DEB_AUTO_UPDATE_* were actually used?01:06
RoAkSoAxpersia, http://paste.ubuntu.com/390707/01:06
persiaGenerally the definitions of those can be derived from /usr/share/cdbs/1/class/autotools-files.mk01:06
persia(although autotools.mk and autotools-vars.mk have some)01:08
persiaOnce you know what you actually wanted to do, you'd probably want to add an override_dh_auto_configure: rule.01:09
RoAkSoAxok01:09
persiaLooks to me like it's intending to go all the way from libtoolize onwards.01:11
persiaNote that you can call dh_auto_configure in your override_dh_auto_configure: rule to take care of the rest once you're finished with the autotools stuff.01:11
RoAkSoAxawesome. Thanks a lot01:13
=== kamalmostafa-out is now known as kamalmostafa
RoAkSoAxpersia, where can I find good documentation to learn everything about this?01:20
rdzhi all. i am trying to create a package for my ppa. everything seems to compile fine. howerver, the resulting deb files does not contain any binaries, although i see that those are compiled01:21
persiaRoAkSoAx: For CDBS, search for "CDBS Documentation", but mostly read the source.  For dh(1), man dh and look at the sequences in the dh source.01:25
persiaFor autotools, get the goat book01:25
RAOFpersia, RoAkSoAx: Also, running dh --no-act $TARGET in a packaging directory will list the sequence, including any overrides you've specified.01:26
persiardz: One of four things is true 1) your debian/rules install rule is wonky, 2) You didn't set some variable you need to feed the upstream build system to define the install target, 3) the upstream build system is wonky, or 4) you need to add more hints to dh_install01:26
persiaRAOF: Nifty.  Thanks for the hint.01:27
RoAkSoAxpersia, awesome thanks :)01:27
RoAkSoAxRAOF, and good tip :)01:27
persias/One of/At least one of the following/01:28
rdzpersia, thanks for the hints...... but how can i find out, which one applies?01:33
rdzdo the version and major varibals in the #shared library versions-section do have influence on this?01:34
persiardz: They can, but it's potentially more complicated than that.01:36
rdzpersia, here it the respective section from pbuilder output: http://pastebin.ca/182797401:36
rdzi don't understand what is happening here, but it looks to me as in certain cases, files are removed01:36
rdzpersia, netsplit: could you read my last message (i don't understand... )01:38
persiardz: Are you trying to make multiple binary packages from a single source package?01:39
rdzpersia, no.. i am trying to make a lib package01:39
rdzpersia, i admit it's my first trial of creaeting a ppa package.. so i might made some mistakes01:40
rdzpersia, actrually the only important file doesn't get included..01:40
rdzwhich is: /usr/lib/libsomelibraries.so01:41
persiaThat's not supposed to be an important file.  That should be a symlink.01:41
rdzwhich is: /usr/lib/libsomelibraries.so.1.0.001:41
rdzwould be the file, ,you're right01:41
persiaBut I'll strongly recommend you go work with other sorts of packages first.  libraries are hard for several reasons, and learning packaging and library packaging, and library management all at the same time is likely an exercise in frustration.01:41
rdzwhat makes library managment specially hard?01:42
rdzpersia, the only thing, that seems not working right now, is that the file is not included.. is that a impossible to solve problem? it seems so silly to me01:43
persiardz: It's an easy to solve problem.  The issue is entirely in your dh_install hint file contents.  I'm just certain that it's a lot to get right, and you'll end up finding a bunch of little issues.01:44
rdzpersia, which i am willing to solve01:44
persiardz: Also, have you read the prior IRC sessions about packaging libraries?01:44
rdzpersia, this library comes with only one binary..01:44
rdzpersia, no, but i will01:44
rdzpersia, thanks for mentioning those01:45
persiardz: A library should *never* come with just one binary.  At a minimum you want libfoo1.0.0 and libfoo-dev01:45
rdzpersia, both packages are built.. i mean that libfoo package only contains 1 single binary01:46
persiaOh, right.  That's normal.  paste your libfoo.install file?01:47
rdzpersia, hm.. now you're asking me that, i realize what might be wrong01:48
rdzthe package is called 'libgavl1', however the files in debian are called simply gavl01:48
rdzgavl.*01:48
rdzlike gavl1.install.. should they be called libgavl1.install etc?01:49
persiaSomething like that.  Should be a binary package name.01:49
persia(double-check against debian/control)01:49
rdzpersia, thanks..01:49
rdzthe package is called libgavl1, libgavl1-dev and libgavl1-doc01:50
rdzhowever, the 'source' is gavl01:53
rdzi mean the source field in debian/control01:53
persiardz: That sounds right.01:54
rdzpersia, but that means, that all files in debian need to be called libgavl1.install and the like?01:55
persiardz: Well, ${binary-package-name}.${function}, but yeah.01:56
rdzpersia, thanks.. for being so precise01:56
rdzpersia, something is still worng.. how can i find out the ${binary-package-name}?01:57
persiaIt's listed in debian/control01:57
rdzpersia, hm.. then there is something wrong with my debian/control file01:59
rdzi cannot find a variable like that01:59
persiardz: It's not a variable.  It's the Package: name01:59
rdzah.. ok.. then the files are named correctly02:00
RoAkSoAxpersia, do you think it would be a good idea to add a lighttpd.pc.in and modify configure and Makefile without using a patching system since debian has dropped the use of it.02:13
persiaRoAkSoAx: I need more context to have an opinion.02:14
RoAkSoAxpersia, here's the changes made to enable the build of -dev package: http://paste.ubuntu.com/390741/02:16
persiaRoAkSoAx: You'll also need lighttpd-dev.install02:17
persiaRoAkSoAx: But are you saying there's no longer a patch system used in Debian, but there once was?02:18
rdzhow is the libfoo.symbols files generated?02:18
RoAkSoAxpersia, yeah there was one, I was thinking on enabling quilt and place what I've pasted in the patch, but I did that, added the --with quilt, but this way it's not building02:19
persiardz: https://wiki.ubuntu.com/stefanlsd/dpkg-gensymbols is a good guide to what you seek to do that also happens to answer the question you asked.02:19
RoAkSoAxi applied the patch directly to the source and it builds and I can't figure out what might be wrong with it02:20
rdzpersia, many trhanks02:20
persiaRoAkSoAx: Race condition:  Check the build log.  If you want separated patches, but need them early, consider source format 3.0(quilt).02:20
RoAkSoAxpersia, will look into it then. thanks :)02:22
jayveepersia: you got me to update tahoe-lafs to 1.6.1 for zooko. I still haven't heard back from him, but I just put the .diff.gz on the bug at https://bugs.launchpad.net/ubuntu/+source/tahoe-lafs/+bug/52935002:27
ubottuLaunchpad bug 529350 in tahoe-lafs "please upgrade Tahoe-LAFS in Lucid to v1.6.1 of Tahoe-LAFS" [Undecided,In progress]02:27
persiajayvee: OK.  The next step is to request upload.  Just subscribe the sponsors if you feel that this is uploadable.  As both zooko and you have noted, it shouldn't need a freeze exception.02:28
jayveepersia: who are the sponsors? is that the package maintainer?02:30
persia!sponsor02:30
persiahttps://wiki.ubuntu.com/SponsorshipProcess02:30
jayveeoh right02:31
jayveeI'd seen that before, but it didn't twig.02:31
persiajayvee: No worries.  Takes a while to get familiar with the processes, etc.02:31
jayveeI was trying to think of the team to subscribe, but I couldn't for the life of me remember it.02:31
persiaThanks a lot for helping out.02:31
jayveeOn my other libvirt bug, mathiaz removed the ubuntu-main-sponsors subscription. He didn't give any clues as to why he might have done that. Do you have any idea?02:34
jayveeIs that normal after it gets looked at?02:34
persiaYes, but it's typically followed by an upload shortly.  What was that bug number again?02:35
rdzpersia, i checked the four points you mentioned and the .so file is still not included.02:35
jayveehttps://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/52893402:35
ubottuLaunchpad bug 528934 in libvirt "IPv6 shouldn’t be disabled by default in libvirt" [Wishlist,Triaged]02:35
persiardz: Considering that you can force-include it with debian/${binary-package}.install, I'm certain there's an issue with that file.  You aren't using a leading / in the target, are you?02:36
rdzpersia, that is the content of libgavl1.install: usr/lib/libgavl.so.1*02:37
rdzpersia, can it be, that might something goes wrong even before that?02:37
persiajayvee: mathiaz would have removed the subscription when asking for the upstream link, etc.  Once you've addressed the concerns in his comment (which you did), just resubscribe the team.  This is done to try to reduce the queue to only those things needing active sponsoring.02:38
jayveeOh, I get it.02:38
jayveeJust re-added it.02:38
persiardz: Maybe that file doesn't exist?  Maybe something went wrong earlier.  Try setting DH_VERBOSE=1 and reading the build log carefully.02:39
rdzpersia, is it possible to log to a file instead a of to stdout?02:39
persiardz: How are you building your package?02:40
persiaAny of debuild, pbuilder, sbuild, cowbuilder, etc. will put the log in a file.02:41
rdzpersia, debuild -S, then 'pbuilder build libgavl-xxxxxxxx.dsc'02:41
persiardz: So pbuilder creates a log file somewhere (I don't know where), and you can inspect that.02:41
persiajayvee: Also, nominations for the current release don't usually mean anything.  If someone rejects it, don't think that means it won't hit lucid.  Nominations are more interesting for old releases.02:42
jayveeGood to know, thanks.02:43
persiaAlso, I'll encourage you to hang out in #ubuntu-server : that's a better place to get advice on working with server packages, contact server developers, etc.02:44
jayveeyeah, I was there the other day — had a good chat02:44
persia(not that we won't help you here: most of us are too lazy to check if some package falls into our purview, and will just answer questions)02:44
jayveeand I really appreciate the answers. :)02:45
rdzpersia, the log doesn't reveal any specific.. am i supposed to put 'export DH_VEBOSE=1' into debian/rules ?03:05
persiardz: Yes.03:05
rdzpersia, probably i need to omit the 'export' part03:06
persiaNo.  You want the export part.03:06
rdzvim syntax highlighting seems to indicate that at least03:06
persiaThe vim needs to read the make manual :)03:06
rdzpersia, there is no error nor something else suspicious03:06
rdzpersia, hehe03:06
persiaYou aren't looking for an error.  You're looking to understand precisely what is happening so that you can see why what you expect isn't happening.03:07
rdzit compiles find, but then i am not able to trace what happens to the binary03:07
rdzpersia, it's hidden in some obscure libtool commands03:08
rdzi am running out of ideas...03:09
rdz:-/03:09
persiardz: That's part of why I said this was complicated to do all at once :)03:09
persiardz: Try a local build (not using pbuilder) and inspect the leftovers after it's done.03:10
rdzpersia, you mean: make && make install ?03:10
persiaIf you use debuild -b after debuild -S, you can usually safely remove the entire working directory and reunpack the source package with dpkg-source to get back where you were (ideally, the clean rule does this, but just in case your package is buggy)03:10
RoAkSoAxpersia, if i put in build-stamp dh_quilt_patch, should I have to put also a dh_quilt_unpatch ?03:11
persiardz: No, you want to exercise the build scripts in packaging.03:11
rdzpersia, aha03:11
persiaRoAkSoAx: No idea.  I never do it that way.03:11
persiaRoAkSoAx: What are you trying to accomplish?03:11
rdzpersia, where do i get some variables from ? $(CFLAGS)?03:14
RoAkSoAxpersia, well I actually discovered how to make quilt to patch the source by adding dh_quilt_patch in build-stamp: http://pastebin.ubuntu.com/390768/ However, I do not know if I should create a clean target to put dh_quilt_unpatch or override the clean rule, or where03:14
persiardz: Just run debuild -b in the package directory.  Anything that doesn't work wouldn't work in pbuilder anyway.03:14
persiaRoAkSoAx: Just use --with quilt (man dh) for that.03:15
persiaRoAkSoAx: Also, you may as well drop your binary and binary-arch rules: they don't do anything interesting.03:15
persiaRoAkSoAx: Also, your life will be a lot easier if you replace the entire build/build-stamp section with an override_dh_auto_configure rule.03:16
rdzdpkg-checkbuilddeps: Unmet build dependencies: doxygen03:16
rdzhowever, it is mentioned in debian/control:build-depends03:16
persiaRoAkSoAx: You probably want to do your chmods in an override_dh_fixperms rule (see man dh)03:16
persiaRoAkSoAx: And finally, you ought be doing the install with dh_install rather than sticking it in install-stamp.  Allof these will make your rules file easier to read.03:17
persiardz: debuild doesn't automatically install your build-dependencies.  Just install them.03:17
RoAkSoAxpersia, I tried using '--with quilt', however, it wasn't actually patching the source so that's why It wouldn't get the changes for the -dev package, that's why I needed to figure out another way to make it patch the source before the configure and I did it that way and now the package builds03:18
rdzpersia, thanks03:18
RoAkSoAxpersia, binary,binary-arch, build/build-stamp, install-stamp all come from debian, should I just fix that and submit a patch?03:18
persiaRoAkSoAx: Only if you wish, and don't change it if they do it that way.  To me, it's not an elegant way to use dh(1), but well.03:19
persiaThe reason --with quilt wasn't working for you is because you didn't add it to all the relevant dh calls.03:20
persiaWell, and also, perhaps, because of timing issues, but that's separate.03:20
RoAkSoAxpersia, where/what are those relevant dh calls, binary-arch:install ?03:21
persiaRoAkSoAx: There are dh calls in build-stamp and install-stamp and binary-arch that don't have --with quilt03:22
persiaThere's also an unexpected dh_quilt_patch03:22
RoAkSoAxpersia, oh so *all* have to be --with quilt03:22
rdzpersia, the file is there in <package-src>gavl/.libs/libgavl.so.1.0.003:22
RoAkSoAxi thought they only had to be in03:22
RoAkSoAx%:03:22
RoAkSoAx        dh --with quilt $@03:22
persiaRoAkSoAx: Well, either that, or you need to manage quilt separately (e.g. with dh_quilt_patch and dh_quilt_unpatch at appropriate times)03:23
persiaIt only has to be there if that's the only dh call :)03:23
persiaIt's still a makefile, and %: only gets hit if nothing else matches.03:23
RoAkSoAxoh it now make sense then, so that might actually be the problem why It wasn't patching03:24
RoAkSoAxthanks for the enlightenment :)03:25
persiaRoAkSoAx: The key is to understand the tools you use.  Once you have that, everything becomes easy :)03:25
RoAkSoAxpersia, indeed though I haven't played with the new source format much yet :) So It is just matter of practice and reading03:26
persiaRoAkSoAx: There's heaps of patches in the bugtracker, if you just want a target for experimentation.  Just grab one, test it, get it integrated in the packaging, and submit.03:27
rdzpersia, i think, that is the relevant part of the log: http://pastebin.ca/1828110, but i cannot see anythin suspicious.. all pathes seem correct03:28
persiardz: The first line is incorrect.  It doesn't matter if "/usr/lib" exists, because that's not the target.03:29
persiaSo the directory is probably not being created.03:29
persiaAlso, you have a warning: perhaps libtool hasn't actually done stuff.03:30
rdzpersia, ah03:31
persiaDid the file get placed in the right location in a test build?03:31
RoAkSoAxpersia, any link in specific where i can look for them?03:31
rdzpersia, no03:31
rdzit's empty as well03:31
rdzpersia, by testbuild you mean the resulting deb file?03:31
persiaRoAkSoAx: https://bugs.launchpad.net/ubuntu/+bugs?orderby=-date_last_updated&search=Search&field.status%3Alist=NEW&field.status%3Alist=INCOMPLETE_WITH_RESPONSE&field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&field.status%3Alist=CONFIRMED&field.status%3Alist=TRIAGED&field.status%3Alist=INPROGRESS&field.omit_dupes=on&field.has_patch=on03:32
persiardz: No, I mean by running debuild -b locally.03:32
rdzpersia, that is what i did03:32
persiardz: That lets you check what happened and what didn't, and may help you understand what is going wrong.03:32
rdzand it created deb files03:32
persiaRight, but did it create /home/roman/sources/gavl-1.2.0pre1/debian/tmp/usr/lib/libgavl.so.1.0.003:33
rdzah03:33
* persia suspects it didn't03:33
persiaThe point of the local build is to be able to inspect the leftovers, not to look at the logs.03:33
rdzindeed, the file is there03:33
rdzpersia, gotcha.. thanks for your patience03:33
rdzpersia, everything seems to be there in debian/tmp03:34
persiardz: Now, did it get copied to debian/libgavl1 (or whatever) A?03:34
RoAkSoAxpersia, awesome! Well I'll call it for the night. Thanks a lot for the help. Have a good one :)03:34
persiardz: Just follow along the expected path until you find the missing bit.  Then fix that.03:34
persiaRoAkSoAx: Have a good night.03:34
rdzpersia, no,it is not there03:35
persiardz: Then you have an issue with your dh_install call.03:36
rdzhm.. i don't have a clue what03:36
rdzyo... persia thanks so far.. you're a great help03:38
rdzdh_install: libgavl-dev missing files (usr/lib/lib*.a), aborting03:38
persiaThere you go.  That's the issue.03:38
persiaDon't install those anyway.03:38
rdzpersia, great.. dh_instal doesn't produce any errors......03:42
rdzpersia, many many thanks03:42
rdzpersia, i wonder, why i don't see the very same error in the log?03:42
persiaSo, anyone wanting support for packaging in general, not related to MOTU work, please go to #ubuntu-packaging03:51
persiaAnyone willing to offer such support may want o idle there.03:51
ScottKpersia: So we don't have enough channels already?03:55
rdzpersia, am i right in assuming that the rules are executed as fakeroot?03:55
persiaScottK: I got tired of the ping-pong match between here and #launchpad about where to get PPA support, so I just created a channel.03:55
persiaInterested people can use it.03:55
persiaBut there's no *requirement* to use it.03:55
ScottKOK. so "not related to MOTU" is about PPAs (at least in part)?03:56
persiaScottK: Right.  PPAs, new packages, other random stuff.03:58
ScottKUntil Universe actually gets disestablished in some manner, I think that new packages are related to MOTU.03:58
persiaWhereas helping track down something that needs fixing in one of our packages, is more on-topic here.03:58
ScottKCertainly.03:58
persiaSure, for new packages trying to actually enter the distribution.  Lots of support seems to be about new packages for PPAs, and I doin't think MOTU should be the support channel for that.03:59
jdong what's the latest on how long / in what capacity is the MOTU entity supposed to stay around?03:59
ScottKpersia: Agreed.03:59
ScottKjdong: Indefinitely.  Mostly like now.03:59
jdongok04:00
persiajdong: Go read the "Future of MOTU" thread on the mailing list.04:00
ScottKThere are quite a number of fine points around that 'mostly', but I think it's generally correct.04:00
jdongI was loosely following it04:00
persiaMy initial post covered the history, status, and expected plans fairly well (but real implementation depends on support from all MOTU)04:00
ScottKThanks for taking care of that persia.04:01
jdongindeed, thank you persia04:01
jdongreading your initial post again more carefully04:01
persiaScottK: The issue is that I know I can't staff it myself, so whether this actually works depends on their being enough folk willing to make it happen.  I just fiddled the IRC server.04:01
psusio/ jdong04:03
jdonghey psusi04:03
jdonglong time no see!04:03
psusiyea, been a while ;)04:03
psusisay, you know much about udev?  I'm trying to track down what appears to be an infinite udev loop in 10.04 related to udev04:04
psusirelated to dmraid rather04:05
rdzwhere can i read about the debian/rules file?04:09
crimsunrdz: http://www.debian.org/doc/debian-policy/ch-source.html#s-debianrules04:10
rdzcrimsun, thanks04:11
rdzpersia, just for your information.. my issue is finally solved. many many thanks for all your help and your patience04:21
rdzpersia, i could really learn a lot today, with your help04:22
persiardz: Glad to hear it :)04:36
rdzam i right in thinking, that dh_makeshlibs is used to create automatically the postinst and postrm scripts, so that ldconfig is executed after installation/removal?04:38
RAOFIt's primary purpose is to make the shlibs files, but it also adds the ldconfig calls, yes.04:41
rdzRAOF, when i simply do 'fakeroot dh_makeshlibs' i don't get any postrm / postinst scripts04:41
RAOFHm.  I'm not sure off the top of my head if you'd expect that.04:46
RAOFYou're running dh_makeshlibs in the root of your packaging directory, and you actually have some shared libraries there?04:47
rdzRAOF, yup04:47
rdzi see the file debian/libgavl1.postinst.debhelper file growing, but actually cannot find the actual script04:48
RAOFWhat about after running dh_installdeb?04:49
rdzRAOF, many thanks04:51
dholbachgood morning06:28
micahgYokoZar: did you ever file that bug for pidgin-mbpurple?06:40
wrapsteri have a control file like this.. http://pastie.org/859191 and i wanted to add 'Conflicts' to the pkg 'sprosslnk' I added/built the entire pkg.. but when i try to install that pkg i see that I can find this entry missing..When i open up the control file (the one i've pasted) after buildpkg, I can see that the entry im made is missing.. why so.. and how do i add it ?08:02
persiawrapster: I'll suggest you ask in #ubuntu-packaging (as we don't have that package, and it's past feature-freeze, so we're not concentrating on new packages)08:11
wrapsterpersia: they dont seem to be responding.. and hardly anyone on that channel08:13
persiawrapster: Just wait a bit.  I'm certain someone will help ;)08:17
lifelesswrapster: generally you don't want a conflicts08:39
lifelesswrapster: breaks is usually better08:39
wrapsterlifeless: ok.08:39
lifelesswrapster: see policy for their specific meanings.08:39
wrapsterok08:39
persiaIn python, if I have a sequence "A and B or C and D or E and F" will that behave the same as "A && B || C && D || E && F" in shell?08:55
* persia suspects so based on playing with the python interactive environment, but would like confirmation08:55
lifelesspersia: yes08:57
persialifeless: Thanks.08:57
lifelessor rather, 'near enough'08:58
lifelessas python has evaluations for true/false that shell doesn't.08:58
persiaThe important part was just that if the current state is false and the next word is "and" drop it, if the current state is true and the next word is "or" drop it, and otherwise continue.08:59
lifelessit also returns the last thing looked up09:01
lifelessfalse or 0 -> 009:01
superm1persia, why don't you just add some extra parentheses to clarify your intent though?  surely someone who is reading over that code will have difficulty making sense of it and trying to figure out the order of operations otherwise09:01
persiasuperm1: Um...  I was saving them for the lisp hackers fund?09:02
* persia adds parentheses09:02
hyperairiulian: it seems that the last person who touched gdeskcal in ubuntu was you. why was XB-Python-Version switched away from ${python:Versions} to >= 2.4?09:04
=== noodles785 is now known as noodles775
slytherindoes anyone know if FFe are still being approved for packages in universe/multiverse?09:58
persiaslytherin: On a case by case basis, FFes may be approved until release day.  Note that we are also currently in UI Freeze.  More freezes come into effect over time, and there will be more limitations.10:01
slytherinpersia: Fine. The package I am working does not seem to break UI freeze. So I suppose it will get approved.10:02
persiaDepends on the features, etc.10:02
slytherinpersia: The package is gst-plugins-ugly-multiverse0.10. It is more of 'make it work with latest x264' release. But reading the changelog I feel like there are few feature additions.10:06
persiaslytherin: If you're not sure, ask for ubuntu-release review.10:09
slytherinyes I am filing a FFe bug.10:09
=== Guest78773 is now known as NCommander
=== NCommander is now known as Guest33867
=== mcasadevall_ is now known as NCommander
mok0NCommander: I wanted to send you an email today, but your address is not on your LP page10:40
NCommandermok0: there's a "Send this user email" link if need be10:40
* NCommander probably should de-private his email addresses again10:40
mok0NCommander: it doesn't hurt :-)10:41
NCommandermok0: what can I do for you?10:41
* NCommander notes he's recovering from a harddrive crash, so I'm a bit disorganized ATM10:41
mok0NCommander: it concerns getting backporters team up to speed10:41
mok0NCommander: ... and I see you are a member of that team :-)10:42
NCommandereek10:42
mok0hehe10:42
* NCommander runs out the nearest airlock10:42
NCommandermok0: I don't have a lot of free time to look at backports so much recently, but if you have a specific backport you want looked at ...10:42
mok0NCommander: That's not my problem10:43
mok0NCommander: let me send you the mail10:44
NCommandermok0: sure, but I won't be reading it for awhile. Still have to re-seutp mail clients10:44
mok0NCommander: I'll just use the web interface10:44
mok0NCommander: OK, I'll pastebinit10:44
=== ogra_ is now known as ogra
iulianhyperair: Yay, that was a looong time ago.  I have no idea, sorry.11:04
rdzi uploaded a package to my ppa to be built for hardy, but i made the source package on karmic. now i am getting this error: dh_clean: Sorry, but 6 is the highest compatibility level supported by this debhelper.. is there a way for me to make the necessary files compat level 6?11:57
hyperairiulian: lol then you'll be okay with me dropping almost all the changes you made? =p11:58
persiardz: We've a new channel to answer questions like that: #ubuntu-packaging.  Come visit.11:58
rdzwould it be sufficient to just change the content of debian/compat to 6?11:58
rdzpersia, hi btw11:58
rdzpersia, thanks. i will11:58
=== mcasadevall is now known as Guest20793
=== Guest20793 is now known as NCommander
DktrKranzoh! multiprocessing strikes again!12:54
AnAntHello, could someone grant FFe to LP 530204 ? especially it also fixes LP 491784, I asked on #ubuntu-release, but no one replies there12:56
ubottuLaunchpad bug 530204 in libbasicplayer-java "FFe: Sync libbasicplayer-java 3.0-5 (universe) from Debian unstable (main)" [Wishlist,New] https://launchpad.net/bugs/53020412:56
ubottuLaunchpad bug 491784 in openjdk-6 "Sound does not work with openjdk" [Undecided,New] https://launchpad.net/bugs/49178412:56
=== keffie_jayx_ is now known as effie_jayx
=== hannesw_ is now known as hannesw
persiaAnAnt: You want to subscribe the ubuntu-release team.  If you're in a huge hurry, you can ask on #ubuntu-release.  If anyone here is able to address your request, it is purely by coincidence.13:00
AnAntok13:00
persiaAnd just because nobody gets back to you soon there doesn't make this a better place :)13:00
persiaThey bugs will be reviewed.  Someone will respond.  This may take a bit of time.13:00
AnAntpersia: I just found out that Steve Langasek subscribed ubuntu-release already 4 days ago13:00
persiaWell then, it's under consideration :)13:00
AnAntok13:00
AnAntsorry then13:01
persiaNo worries.  The procedures are complicated and changing.13:01
AnAntyeah, the requestsync tool subscribed motu-release instead of ubuntu-release13:01
AnAntseems that Steve realized that & fixed it13:02
slytherinAnAnt: It is quite possible that Steve did that because requestsync script subscribes motu-release by default in karmic (which is wrong as per updated policy).13:02
AnAntyup13:02
slytheringeser: Any chance requestsync could be fixed in karmic?13:02
DktrKranzjames_w: mind removing (again) python-multiprocessing from lucid (bug #418280) ? Thanks!13:03
ubottuLaunchpad bug 418280 in python-multiprocessing "Please remove python-multiprocessing from Lucid" [Wishlist,New] https://launchpad.net/bugs/41828013:03
persiaslytherin: You could fix it too :)13:03
slytherinpersia: I could upload it in karmic-proposed. But I usually avoid that when I am not a regular maintainer.13:04
POX_DktrKranz: seriously? LOL13:04
persiaslytherin: we don't have maintainers in Ubuntu.  Just do it :)13:04
persiaslytherin: If you're not sure, ask someone else to review your change before you upload.13:04
DktrKranzPOX_: yeah, I asked for blacklist, so it wouldn't have reappeared, but I had no luck.13:05
slytherinpersia: geser already fixed it in lucid so I thought he might be interested in doing SRU. :-)13:05
AnAntslytherin: I see you're interested in gnusim8085 btw13:05
slytherinAnAnt: interested in what way?13:05
AnAntslytherin: aren't you the one who've been making the last couple of packages for it in Debian ?13:06
slytherinAnAnt: yes I am. Considering that I am primary maintainer upstream it seemed more natural. :-)13:06
slytherinAnAnt: We (upstream) could use help in completing Arabic translation. :-D13:07
AnAntoh, I never noticed that13:08
AnAntthat's nice13:08
slytherinAnAnt: It is pretty recent development. I am trying to get FFe for the latest release. Meanwhile you can check - https://translations.edge.launchpad.net/gnusim808513:09
AnAntslytherin: hmmm, I'm not into translation (especially that we study/work in the electronics field in English language), but, there is a guy doing arabic translation for gEDA13:09
slytherinAnAnt: Never mind. I thought you were working on translations.13:11
AnAntAdnene knows arabic ?13:12
AnAnthmm, never mind13:13
iulianhyperair: If that is the right thing to do, then yes, sure.13:25
hyperairiulian: i'm in favour of dropping most of the changes to reduce the debian-ubuntu delta, since i can't see why they were added, other than for maintenance purposes. stuff like the standards-version bump.13:31
hyperairi'd just like to reconfirm that this dropping these changes is correct before i go ahead and do it13:31
mok0hyperair: sounds sensible to me13:32
hyperairwell then. i'll get to work =)13:32
mok0hyperair: requestsync?13:32
micahgYokoZar: did you ever file that bug for pidgin-mbpurple?14:34
=== mcasadevall is now known as NCommander
persiaIf anyone is handy with pbuilder and has time to create a stanza to add to http://people.ubuntu.com/~persia/pull-soyuz-chroot whilst I'm idle, I'd appreciate the help.  Corrections would be nice too :)14:44
=== AndrewGe1 is now known as AndrewGee
cemcanybody any comments on bug #534261 ?14:51
ubottuLaunchpad bug 534261 in pdns-recursor "Wishlist: new upstream version 3.2" [Undecided,New] https://launchpad.net/bugs/53426114:51
Rhondacemc: That one is not yet packaged in Debian and the release date is pretty short of a notice. :/14:53
cemcRhonda: too bad ;) does it need to be packaged in debian though?14:54
Rhondacemc: I would try to get in contact with Christoph Haas, the DD who maintains the package in Debain, from what I remember he usually is pretty responsive.14:54
RhondaSo that no duplicate efforts happen in that respect.14:54
cemcgot it14:56
cemcthx14:56
Rhondacemc: I'm currently chatting with him. :)14:57
cemcsent a mail too14:58
cemcRhonda: what's he saying? :)15:01
cemchow's the weather? :)15:01
Rhondacemc: Christoph isn't on the team anymore he said. :P  But I got the jabberID of the other person and he promised to look into the update tonight.15:07
Rhondaeuropean time, I guess15:08
cemcRhonda: cool, thanks! can you ping me if (news()) ?15:09
Rhondacemc: And I'm not too sure if your PPA version is proper, does this take into account any possible Debian update?15:11
Rhondacemc: About news, PTS subscribe to source uploads, http://packages.qa.debian.org/pdns-recursor :)15:11
cemcRhonda: thanks. about the ppa versioning, I'm not sure... those packages I really did for myself for testing mainly... is it incorrect?15:13
RhondaI have no clue, I guess it would work properly though. :)15:13
cemcRhonda: I think if debian will have 3.2-1 that should be > 3.2-0whatever, right?15:16
RhondaYes, that's my thoughts too. :)15:16
Rhondacemc: I think some non-maintainer update to the new upstream version might though use 3.2-0.115:17
RhondaSo I guess -0~whatever might be more suiting. I'm not sure if there are some suggestions hanging around on the wiki, though.15:18
YokoZarmicahg: not just yet15:25
micahgYokoZar: there was a bug filed about the conflict15:25
YokoZarprobably a result of my mailing list thread15:26
micahgno, an install bug15:26
micahgbug 53066015:26
ubottuLaunchpad bug 530660 in pidgin-microblog "package pidgin-microblog (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/purple-2/liboldtwitter.so', which is also in package pidgin-mbpurple 0:0.2.4-0ubuntu1" [Medium,Triaged] https://launchpad.net/bugs/53066015:26
YokoZarahh, well there you are15:26
micahgYokoZar: do you want to take it and prepare teh debdiff?15:27
duanedesignreviewing some patches. looking for some help adding some man pages to a package15:45
randomactionduanedesign: what's the problem?15:47
duanedesignrandomaction: do i just place them in a directory called for instance: debian/db4.2-doc.manpages15:48
duanedesignthen make a patch?15:49
randomactionYou can call dh_installman from debian/rules. It will install manpages listed in debian/PACKAGENAME.manpages, see "man dh_installman".15:51
duanedesignthe pages were already written and attached to a bug report about the missing manpages.15:51
duanedesignrandomaction: ahh. ok15:51
duanedesignrandomaction: i messed around with dh_installman and wasnt getting it right :)15:51
randomaction*.manpages is a text file, not a directory15:52
BlackZonce finished to modify a debian package for ubuntu to add a dependence in debian/control file, what's the next step? and, can be that a good reason for an exceptionfreeze?16:07
geserBlackZ: does the new dependency enable a new feature?17:13
imbrandonmorning all17:30
geserHi imbrandon17:33
=== dpm is now known as dpm-afk
imbrandonnot support chan, i know i know, but i got a quick question , ok i got a ubuntu 9.10 install ( headless server , only access via ssh ) that seems to be going to sleep or hybernate every half an hour or so, i thought i disabled all PM and even removed some of the packages, what log can i look in to track this down ?17:42
imbrandonthe reason i know its asleep is i can go in the other room and pound on the keyboard and it "wakes"17:42
hyperairimbrandon: are you sure it's really asleep, not just the screen?17:45
imbrandonthere is no screen, nfs mounts lock and ssh access is dropped17:46
hyperairhmm17:46
hyperairi se17:46
imbrandonso i assume is asleep or hybernated, but i have no monitor on it17:46
hyperairweird.17:46
hyperairssh in, check dmesg?17:46
imbrandonyea lookin at dmsg now, and syslog, nothing looks crazy though17:47
hyperairdoes dmesg say anything about PM17:47
imbrandonnah, some rpc stuff and other misc stuff17:47
hyperairand do you have X/some DE running?17:47
imbrandonno17:48
imbrandongnome is installed, but gdm is off on boot17:48
hyperairif dmesg doesn't say anything about PM, then it definitely isn't suspending/hibernating at work17:48
imbrandonthis box has been running for years, just upgraded it to 9.10 though and thats when this stuff happened17:48
hyperairsome hardware-level crappiness perhaps?17:48
hyperairheh weird17:48
hyperairlemme see your dmesg anyway?17:48
imbrandonkk, lemme pastebin it17:49
hyperairimbrandon: hurry up before i pass out. i'm dead tired and need sleep.17:51
imbrandonheh pastin now, its a 200 line paste17:51
imbrandonhttp://imbrandon.pastebin.com/xa9PeTJM17:52
hyperairyou should go get pastebinit17:52
hyperairit's as simple as dmesg | pastebinit17:52
imbrandonyea i have it on my desktops, but i try to keep this box minimal17:52
imbrandonlol17:52
hyperairer17:52
hyperairthat's a very short dmesg17:52
hyperairhas this box gone through suspend already?17:53
imbrandonyea, look about the time it says "link down"17:53
imbrandonthats when it was off17:53
hyperairwhat do you mean when it was off?17:53
imbrandonunreachable17:53
imbrandonssh nfs etc17:54
imbrandonpound keyboard and it "wakes"17:54
hyperairimbrandon: i want dmesg *after* it wakes up.17:54
hyperairand mind, i can't find anything about eth1 link down apart from when eth1 is first discovered17:55
imbrandonyes thats a dmesg from both before and after17:55
hyperairwhich is 20 seconds into the kernel starting.17:55
imbrandonits awake now at the end of that17:55
hyperairwhat before and after?!17:55
hyperairyou didn't do any strange stitching right?17:55
imbrandonhyperair, exactly, it dosent show anything in dmsg, thus my confusion17:55
hyperairif it dioesn't show anything your hardware is weird and doing things it shouldn't be17:56
hyperairbecause the kernel isn't suspending17:56
hyperairgo downgrade and see if it happens17:56
imbrandonk17:56
hyperairlike stick a live medium in17:56
hyperairliveusb/livecd17:56
hyperairan older one17:56
imbrandonyea a liveusb wont sleep, did try that17:57
hyperairhuh17:57
hyperairweird stuff, that is17:57
hyperairjust to check, do you have a /var/log/pm-suspend.log?17:57
imbrandondefinatly, in my 4 years of ubuntu never had this issue17:57
imbrandonlookin17:57
imbrandonnope17:57
hyperairsee, linux isn't doing the suspend.17:58
hyperairwhat machine is this?17:58
imbrandonx8617:58
imbrandon32bit17:58
hyperairdid you tweak something in the bios? perhaps a hardware-level suspend-to-whatever that doesn't tell the kernel it's doing it17:58
hyperairi mean vendor/model17:58
hyperairnot architecture.17:59
imbrandonahh via c717:59
hyperairvia? meh notorious rand.17:59
hyperairbrand17:59
imbrandonno bios pm17:59
* hyperair shrugs17:59
hyperairgo poke some people in #ubuntu-kernel18:00
hyperairmaybe they'll know something18:00
imbrandonno worries, i'll dig a little more, thanks for tryin18:00
hyperairi honestly haven't seen a machine that can suspend-to-ram and come back without the kernel noticing.18:00
hyperairsave for virtual machines18:00
hyperairthose can do weird things.18:00
imbrandonyea its def strange, i'm wondering if the nic is just going to sleep and walkin on kbrd18:00
imbrandonbut that would be strange too18:01
hyperaircheck the cpu fan18:01
hyperairhard disk18:01
hyperairumm18:01
hyperairleds?18:01
imbrandonwhat about leds ?18:01
hyperairdon't they blink in some way when suspended?18:01
imbrandonand its fanless :)18:01
hyperairi know my desktop's power led blinked when suspended18:01
hyperairas does my notebook's18:01
hyperairbah. fanless.18:02
imbrandonahh no power is solid the whole time18:02
imbrandonhrm18:02
hyperairi don't think it's actually going through any PM18:02
hyperairstick a monitor to it18:02
hyperairheadless debugging is a pita.18:02
imbrandonheh easier said then done, sa i said its been runnin years, its in the attic ceiling18:02
imbrandonlol18:02
* hyperair groans.18:03
imbrandon:)18:03
hyperaircan't you bring it down?18:03
hyperairit shouldn't be that huge a box, right?18:03
imbrandonyea i think that will be a weekend task18:03
imbrandonno very small18:03
hyperairyeah, see18:03
imbrandonlike 10cm by 14cm18:03
hyperairjust bring it down, stick it to a monitor18:03
hyperairi figured as much, when you said via c7 and fanless18:03
imbrandonbut its very tucked away18:03
hyperairouch18:04
imbrandonbtw even fanless it runs like at 20c 99% of the time18:04
imbrandonlove it so far, till now18:05
imbrandonlol18:05
hyperairimbrandon: a simple test: run a bash loop in a screen session calling date at 1-second intervals. if there is a lapse where it has "suspended" then you know it has really suspended.18:05
imbrandonhahahahahah yea did that18:05
imbrandon#!/bin/bash18:05
imbrandonfor (( c=1; c<=1000000; c++ ))18:05
imbrandondo18:05
imbrandon        echo "Garbage Busy Work $c times..."18:05
imbrandon        sleep 118:05
imbrandondone18:05
hyperairwhile date; do sleep 1; done18:05
imbrandonLOL18:05
hyperairheh18:05
hyperairwell that works too =\18:05
imbrandonyea thought of that one18:05
hyperairimo mine's simpler18:06
hyperairand you get to see the actual lapse in seconds18:06
imbrandonits runs and counts, then "stops" about 1800 untill i pound the kbrd18:06
imbrandonthen it resumes18:06
imbrandonlike it never stoped18:06
hyperairuse mine instead.18:06
hyperaircheck if there is a lapse.18:06
hyperairif there is a lapse of time, your timestamps will have a gap of more than one second18:06
imbrandonk18:07
ScottL_can someone make sure I'm not doing anything brain dead for packaging a Plymouth theme (I've done some packaging before)?18:13
imbrandonhyperair, hah i found the issue, not to fix the problem18:13
hyperair?18:13
imbrandonseems the nic goes to sleep ( realtek ) with the new drivers18:13
hyperairlol18:14
imbrandons/not/now18:14
hyperairimbrandon: well, check if someone has bisected your issue. otherwise try compiling kernels and bisecting it =p18:14
imbrandonyup18:15
=== hannesw_ is now known as hannesw
fagandirecthex: you around?19:08
faganAre you going to make an application indicator for banshee?19:09
* fagan doesnt mind making a plugin for it 19:10
jcastrofagan: qense has one and has submitted it upstream19:11
faganjcastro: nice I was wondering because its not in banshee for lucid19:12
siretartany kubuntu user around? in what package is the gtk style for qt application?19:12
jcastroyeah it's releasing this week sometime19:12
* fagan loves low hanging fruit 19:12
jcastrohttps://bugs.edge.launchpad.net/ubuntu/+source/banshee/+bug/51817119:12
ubottuLaunchpad bug 518171 in banshee "Support Application Indicators" [Wishlist,In progress]19:12
jcastroif you want to test it and +1 it that would help19:12
faganjcastro: any more that need porting19:12
* fagan has some free time for some dev 19:13
jcastrolots in universe I am sure19:13
jcastrofagan: Deluge would be nice!19:13
faganDeluge sure ill go have a look and report back :)19:14
faganOh and do I remove the current notification area stuff when I port it?19:15
faganOr just comment it out19:15
* fagan just realises he could do that in a plugin anyway dumb question19:16
jcastrofagan: check the docks, it has a fallback mechanism for when indiscator session isn't running19:25
jcastroer, /docs/, not where boats live19:25
faganAh ok19:25
jcastrofagan: and remember it doesn't count until it's submitted upstream!19:26
faganjcastro: could you help with that pretty please :)19:26
faganIll have a patch tomorrow19:26
jcastrofagan: https://bugzilla.gnome.org/show_bug.cgi?id=60780019:27
jcastroeasy example. :D19:27
ubottuGnome bug 607800 in User Interface "Support for application-indicators/StatusNotifierIcon" [Enhancement,Unconfirmed]19:27
faganOh so I should just go to their bug tracker and say here, makes sense19:28
* fagan doesnt push much bugs to projects that he doesnt know19:28
faganPatches not bugs19:28
fagancrap the deluge guys dont allow the public to submit bugs it seems19:30
faganIll just ask on their list19:31
jcastrofagan: make sure you link to the page on the wiki19:36
jcastroit has all the info they'll need19:36
faganYep will do19:36
jcastropersia: they made it! (mongodb)19:42
=== yofel_ is now known as yofel
lfaraoneif a new upstream version is only a bugfix release, do we still need a FFE?20:17
sebnerlfaraone:Nope20:20
directhexwhat dictates the ordering with which cdbs does its "debian/rules binary" stuff?20:47
james_wdirecthex: the phase of the moon?20:48
directhexjames_w, sigh, yeah, that's my best lead so far :(20:48
james_wdirecthex: but it's make that will decide that20:49
james_wso, it will take in to account any dependencies between binary/* rules and things that they refer to20:50
james_wand then parallelise things as well as it can within those constraints20:50
james_wand then serialise the rest20:50
james_wand I'm not sure if there are any rules to the serialisation20:51
directhexnice theory20:51
directhexbinary-install/libubuntuone1.0-cil:: binary-install/libubuntuone-1.0-120:51
directhexwhy does the -cil package get done before the lib?20:51
james_wdirecthex: the binary part, or the binary-install part?20:53
james_wso20:53
james_wit may be that it is doing all the arch-dep stuff, then coming back for arch-indep?20:53
directhexjames_w, i'd be happy if it was that way round20:55
directhexjames_w, dh_clideps MUST be called after "dh_install -plibubuntuone-1.0-1". because cdbs calls dh_install individually for every binary, rather than just once.20:55
sorendirecthex: It'd be easier to help with a bit more context. Do you have the whole thing in bzr somewhere, for instance?20:56
directhexsoren, i'll push what i have so far20:56
sorendirecthex: Cool.20:57
directhexlp:~directhex/libubuntuone/mono_packaging20:59
directhexyour challenge, should you choose to accept it, is to make dh_clideps happen after debian/libubuntuone-1.0-1 has been filled with stuff, which is needed for libubuntuone1.0-cil_blah.deb to correctly have a dependency on libubuntuone-1.0-1_blah.deb21:00
sorendirecthex: You realise it doesn't say "binary-install/libubuntuone1.0-cil:: binary-install/libubuntuone-1.0-1" in there anywhere?21:02
sorenI'm just saying..21:02
directhexsoren, yeah, i removed it since it didn't affect it21:02
directhexwas leaving it unmolested rather than leaving non-functional attempts in place21:03
* soren installs a million build-deps21:04
sorengive or take21:04
sorendirecthex: How can I tell that it failed?21:06
directhexsoren, check the deps on the libubuntuone1.0-cil_blah.deb package, it should have libubuntuone-1.0-1 in there21:06
sorendirecthex: Ok.21:07
directhexsoren, or check the build output for "dh_clideps: Warning: Missing shlibs entry: libubuntuone-1.0.so.1 or ubuntuone-sharp.dll for: ubuntuone-sharp.dll!"21:07
sorendirecthex: Alrighty.21:08
c_kornhello. can someone please check if this sync request is correct ? https://bugs.launchpad.net/ubuntu/+source/scilab/+bug/533746 requestsync crashed but it created the bug report.21:13
ubottuLaunchpad bug 533746 in scilab "Sync scilab 5.2.1-4 (universe) from Debian unstable (main)" [Undecided,New]21:13
sorendirecthex: I'm curious why you put dh_clideps in binary-install, though.21:24
sorendirecthex: It's very much like dh_shlibdeps, is it not? Just for mono?21:25
directhexsoren, where should it go? i don't really understand what cdbs does when and why21:25
sorendirecthex: Is it equivalent to dh_shlibdeps?21:25
directhexyes21:25
sorendirecthex: dh_shlibdeps is in binary-predep/blah.21:25
sorenbah21:26
sorenbinary-predeb, I mean.21:26
* soren <3 cdbs21:27
directhexsoren, does that fix it?21:28
sorenHaven't tried.21:28
* mok0_ <3 cdbs too21:28
directhexweirdos ¬_¬21:29
sorendirecthex: A good trick if you're doing something like this is to look in the existing cdbs rules files for stuff that's similar to what you're doing.21:29
sorendirecthex: ...and put your stuff in a the same target.21:30
directhexsoren, there's a lack of existing examples of cdbs-based mono bindings. a small number of libs, but not bindings21:30
directhexcertainly not built at the same time as the dependent lib21:30
sorenWell, in this case, the trick was to realise that dh_clideps does the same as dh_shlibdeps, and just mimic the behaviour around that.21:31
directhexsoren, does that fix it?21:32
soren22:28:41 < soren> Haven't tried.21:33
soren:)21:33
sorendirecthex: What does dh_cligacpolicy do?21:33
sorenI doubt moving all of your existing binary-install/libubuntuone1.0-cil stuff to binary-predeb is going to be a good idea.21:34
sorenthe clistrip thing sounds like something you'd stick in binary-strip/blah21:34
directhexsoren, nothing in this case, it's a noop unless there's a .cligacpolicy file21:34
jdongcd Documents21:38
jdong*grumble grumble* new theme active vs passive window contrast21:39
sorendirecthex: I've got other stuff to do. I hope I've helped you a bit.21:45
directhexi hope so too ;(21:46
directhexta21:46
directhexdoesn't help, as expected21:49
sorenWhat did you change?21:49
directhexbinary-predeb/libubuntuone1.0-cil::21:50
directhexdh_clideps21:50
RAOFdirecthex: I recently touched launchpad-integration; that does libs+bindings together.  Have you looked at it?21:51
directhexRAOF, no. that one had bad cli bindings too iirc?21:51
RAOFYeah.  I fixinated them, though.21:52
directhexooh!21:52
directhexsrc package name?21:52
RAOFlaunchpad-integration, IIRC.21:53
directhexargh, wasn't finding it as i was on p.d.o :)21:54
sorendirecthex: um...21:54
soren$ grep -E 'dh_(install -plibubuntuone-1.0-1|clidep)' build.log21:54
sorendh_install -plibubuntuone-1.0-121:54
sorendh_clideps21:54
sorendh_clideps: Warning: Missing shlibs entry: libubuntuone-1.0.so.1 or ubuntuone-sharp.dll for: ubuntuone-sharp.dll!21:54
sorenThat's the order you wanted, right?21:54
sorendh_install takes care to move stuff from debian/tmp to debian/libubuntuone-1.0-1.21:55
directhexlooks like it was dh_makeshlibs that i wanted first21:55
directhexRAOF, i notice you're using arch:any not arch:all21:58
RAOFdirecthex: That's an oversight on my part21:59
directhexRAOF, no joy :(22:02
directhexRAOF, can you take a look?22:02
RoAkSoAxwhen requesting a FFe sync request from debian, do I need to follow this exactly? https://wiki.ubuntu.com/FreezeExceptionProcess#FeatureFreeze for new upstream versions or that's only when the package its been updated in Ubuntu (not syncing/merging)22:07
lifelessRoAkSoAx: new up stream is new upstream22:20
RoAkSoAxlifeless, so that means its only for packages that are new upstream versions that someone packages and does not sync from debian22:22
lifelessno, it means that it includes a sync of a new upstream from debian22:22
lifelessits a new upstream either way22:22
RoAkSoAxoh ok :)22:23
directhexargh22:36
RAOFdirecthex: I'll add that to my todo.22:47
directhexRAOF, if you're not immediately available, i'll keep hacking at it. it's holding up an upstream upload22:49
RAOFI'm going back to hacking f-spot.  If you get frustrated further I'll give it a look.22:50
directhexi'm reading cdbs source22:52
RAOFUuurgh.22:52
directhexi got it ._.22:58
directhexby jove, he's got it!22:59
directhexjono, break out the champagne!22:59
jonodirecthex, eh?23:01
Beaverwww.search2.net (new search engine)23:02
directhexjono, i've been fighting with cdbs for days to make the mono u1ms bindings package work23:02
jonoahhh right23:03
jono:)23:03
directhexi can get a working banshee u1ms into testers' hands within 24 hours of this hitting the archive23:03
RAOFdirecthex: Thank you for being awesome!23:13
directhexi need a nap23:13
directhexand/or more rum23:13
RAOFdirecthex: You're not going to be at UDS, are you?  Otherwise, I could buy you a beer :)23:57
directhexRAOF, can't. scheduling conflict23:58

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