[00:02] whats the workflow if a source is in bzr? just fix, commit, and request merge? [00:04] yes [00:04] https://wiki.ubuntu.com/DistributedDevelopment [00:05] sponsorship? [00:05] https://wiki.ubuntu.com/DistributedDevelopment/Documentation/SeekingSponsorship [00:06] oh, the diff = debdiff? === nikolam_ is now known as nikolam === Lutin is now known as Guest85487 [08:14] hi [08:15] Hey toabctl [08:15] i have a package (xf86-input-wacom and want to update the package to the latest git. how can i do that? [08:15] I'd suggest talking to the ubuntu X folk for details, but there's a generic link. [08:15] !update [08:16] For upgrading, see the instructions at https://help.ubuntu.com/community/UpgradeNotes - see also http://www.ubuntu.com/getubuntu/upgrading [08:16] i know that i can use uupdate to update the package with the latest tar.gz file. is there something like this for got? [08:16] That's not it at all ! [08:16] https://wiki.ubuntu.com/PackagingGuide/Recipes/PackageUpdate [08:16] persia, ah. last link looksinteresting. thx! [08:16] You want the tar.gz artifact anyway, but git-buildpackage documentation may also help. [08:17] But you really do want to talk to the X team about it. The chances of finding someone here who does X are decidedly lower than finding someone there. [08:19] persia, ok [09:31] While building the package I got bunch of warnings like this one: "dpkg-shlibdeps: warning: dependency on libdbus-1.so.3 could be avoided if "debian/ipwatchd-gnotify/usr/sbin/ipwatchd-gnotify" were not uselessly linked against it (they use none of its symbols)." These libraries are added automaticaly by "pkg-config --libs libnotify" so I cannot fix this easily. Is it something I can ignore ??? [09:32] jariq: You can ignore it, or you can pass --as-needed through to ld via various mystical processes. [09:33] Which will cause ld to only add NEEDED mentions for libraries which actually provides used symbols. [09:34] With the only slight drawback that it doesn't work with stock libtool. [09:35] Or one could go play with libnotify to make pkg-config generate a different list, or change the build system to specify libraries directly, or ... [09:35] (note that if changing the build system, it's best to perform analysis in ./configure or equivalent, rather than hardcoding, etc.) [09:35] persia: that was exactly my thought that this should be fixed in libnotify [09:36] It should be, yes. [09:37] Teach upstream about Libs.private. [09:37] Packaging libraries well is hard. Being upstream for a library is even harder. [09:42] Heh. We get to moan about keeping ABI; they have to actually maintain it :) === Guest85487 is now known as Lutin [10:07] is this the correct channel for asking questions about packaging ? [10:07] i mean, Hi All :-) [10:09] it is a good question for doing that [10:10] i'm trying to create a package for Sonic Visualiser (http://www.sonicvisualiser.org) [10:11] I managed to create a source package and a binary deb ... but .... the make install bit in compiling doesn't do anything. [10:11] You have to manually copy the binary to /usr/bin or /usr/local/bin [10:12] so how / where / what do I have to edit ? [10:13] you can use a .install file to do the copy for you [10:13] man dh_install [10:13] aha [10:13] thanks, will look into that [10:17] yup, just looked in the man page, does excatly what I was looking for [10:18] cool [10:18] the package also has 2 build dependencies that aren't in the repo's [10:19] how do I solve that if I want to upload sonicvisualiser to my ppa ? [10:19] upload them to your PPA, or to another PPA that you mark as a dependency [10:20] so first upload the dependencies to my PPA, then sonicvisualiser ... [10:20] yes [10:21] cool ! If I get everything done, I'm gonna be damn proud :-) [10:26] oh .. and if I want to build it via pbuilder, how do I resolve the dependencies ? as far as I understand pbuilder creates a clean default install , so that would mean that the dependencies aren't there [10:27] * Luctor is puzzled [10:29] Luctor: thats why you have dependecies listen in control file in Build-Depends section [10:29] Luctor: I usually use apt-ftparchive to create a local mirror for that sort of test condition, but some folk use PPAs. Essentially, just put the files in some repo, and then adjust the sources.list inside the pbuilder to use it. [10:30] (assuming you've already sorted the issues jariq addressed) [10:30] build dependencies are sorted [10:31] sources.list in pbuilder ... I guess I gotta read man pbuilder :-) [10:31] so pbuilder will autoamticaly download required packages [10:31] yes [10:32] --othermirror ??? [11:00] when purging is remove always called in postrm script? [11:03] I don't recall offhand; see debian policy on maintainer scripts. [11:05] kklimonda: depends if the package was still installed when purged [11:05] gotta go [11:05] cya and thanks [11:05] geser: ok, thanks [11:05] "postrm remove" is called on remove and remove+purge [11:06] see http://women.debian.org/wiki/English/MaintainerScripts for nice graphics how the scripts are called [11:46] does this postrm look like something that isn't going to eat my children: http://pastebin.com/mZjkzffB ? [11:47] I've moved removal of the /var/lib/transmission-daemon/info so it fires only on purge (and only it - previously all dpkg-stateoverride were run twice which generates warnings) [12:06] which owner have the files in /var/lib/transmission-daemon/info? [12:07] and you leave the info directory on purpose (after you remove every file in it)? [12:16] hi, still trying to build a package in pbuilder [12:16] if run sudo pbuilder create --othermirror "deb http://ppa.launchpad.net/fta/ppa/ubuntu karmic main" [12:17] but pbuilder still fetches the outdated dependencies [12:18] running pbuilder update show it throws a gpg error on the ppa .. [12:20] oh wait. forgot to check if it build locally .. [12:22] geser: files in info/ belong to transmission-daemon:transmission-daemon, the folder is left because.. actually it doesn't make any sens to leave it if all files and subdirectories are removed, I'll have to ask debian maintainer about it - may be his mistake [12:23] geser: it's still removed by dpkg because no file is in it so I think "rm -rf" is a mistake (there are some files that could be useful to users in the info/ directory and are not part of configuration) [12:24] kklimonda: does the debian-transmission user have any files that are only removed during purge? [12:25] geser: yes - settings.json which is configuration file and stats.json which is.. stats [12:28] then you should probably remove the user during purge to not leave unowned files around [12:29] aren't they owned by root after statoverride is removed? [12:29] just asking - haven't really dug into that [12:30] don't know [13:24] hi [13:26] I need some help creating an install file (in the debian dir of the source ) [13:28] after compiling I have a directory ~/src/ubuntu/sonic-visualiser-trunk-1.7.1/sv [13:29] it contains a binary 'sonic-visualiser' which needs to be put in /usr/bin [13:29] and some other files, icons, *.desktop files etc, all in the sv dir of the build. [13:30] how would the sonic-visualiser-trunk.install file look like. I just can't figure out [13:31] btw the make install of the source doesn't do anything .. " Nothing to be done for `install'. [13:32] so the resulting deb package is empty .. === ikt_ is now known as ikt [15:58] I've set DEBEMAIL in .bashrc, but dch still doesn't get my e-mail address. Did I forget something? [15:59] close the terminal and reopen? [15:59] are there any archive admins around who can help me get taglib-sharp synced from debian? [15:59] nigelb: I've rebooted several times since I set that variable, but no change. [16:01] rebooting for a change in .bashrc seems... excessive. [16:01] qense: "export DEBFULLNAME='Nigel Babu' export DEBEMAIL='nigelbabu@gmail.com' " ? [16:01] got both those lines? [16:01] qense: try opening a terminal and typing "echo $DEBEMAIL" [16:02] hyperair: isn't it the source command to reload .bashrc? [16:02] nigelb: yes [16:02] echo works? [16:03] nigelb: echo $DEBEMAIL correctly outputs my mail address indeed [16:03] nigelb: i'm saying open a new one and echo $DEBEMAIL. [16:03] ah [16:03] I changed the variable a week ago. [16:03] So it's not in restarting the terminal. [16:04] what does dch use? [16:05] man dch says it first checks DEBEMAIL and if that doesn't work EMAIL [16:06] what is dch using? [16:06] try env | grep [16:06] hyperair: ah! DEBEMAIL isn't in that list [16:06] ._. [16:06] whut? [16:06] oh i see. [16:07] you didn't export, did you? [16:07] I didn't write export in front of the declaration, does that cause problems? [16:07] just DEBEMAIL="qense@ubuntu.com" [16:07] you need export! [16:07] I did ask you about export ;) [16:07] ah! [16:07] otherwise it's just a shell local variable. [16:07] export makes it an environment variable [16:07] ok, great [16:07] thanks for your help, guys! [16:08] :) [16:08] it's the difference between setenv("DEBEMAIL", "hyperair@ubuntu.com") and just DEBEMAIL = "hyperair@ubuntu.com" [16:08] ok, I learned something new today :) [16:08] me too, I just took it for granted earlier [16:09] lol [16:09] i suppose i should be glad i learnt it early [16:09] * ejat pokes hyperair .... when will u back to KL :) [16:10] ejat: may or july [16:10] owh .. [16:35] Is something wrong with openclipart-openoffice.org package? It seems to conflict with the current open office package in lucid [16:37] qense: regarding the bug you just filed against banshee.. it doesn't seem related to mtp, but sqlite. [16:38] hyperair: doesn't that make the bug even worse? [16:38] okay, so openclipart package in lucid right now seems to have been built against an older version of openoffice than we have in lucid [16:39] qense: that makes it sqlite's problem, not banshee's. [16:39] anything I can do to fix this openclipart trouble ? [16:39] hyperair: ok [16:40] qense: well anyway, you could look into purging your ~/.config/banshee-1/banshee.db file [16:40] qense: my guess is that sqlite didn't sync properly prior to crashing. [16:40] yeah [16:40] ok [16:40] qense: what is needed is the backtrace from your first crash. [16:40] I don't have that, unfortunately [16:41] could you try reproducing that first crash? [16:41] if you can't, then please mark the bug invalid [16:41] ok [16:41] thanks. [16:44] btw, apt-get source dbus-glib returns a dbus-glib where the changelog says it should built for unstable, even though I'm running Lucid. [16:44] Is that normal? [16:44] that is normal, if the package was synced. [16:44] i.e. X.Y.Z-N rather than X.Y.Z-NubuntuM [16:44] it is [16:44] yeah then it's synced [16:44] ok, thx [16:45] our synced packages are completely the same as the ones in debian [16:45] well the source anyway [16:45] the binaries are rebuilt [16:54] randomaction: I tried to create a lucid chroot on my armel box (a SheevaPlug running Debian) to reproduce coq ftbfs... but mount segfaults at mounting /proc... armel port of ubuntu isn't very reliable, is it? [16:55] sgnb: I never tried to use it, but I have impression it's quite fragile [16:55] sgnb: FYI newer pbuilder-dist supports cross-building for armel === yofel_ is now known as yofel [16:56] (I never tried it as well) [16:59] randomaction: didn't know about pbuilder-dist... but seems orthogonal... [17:00] sgnb: there is #ubuntu-arm [17:00] you're more likely to find appropriate help there === qense is now known as sense === sense is now known as Sense === Sense is now known as sense === sense is now known as qense [17:27] hi, what's the process to get a package synced from debian? (to get bug 516771 fixed) [17:27] Launchpad bug 516771 in openclipart "openclipart-openoffice.org cannot be istalled in lucid as it wants to pull the rest of openoffice" [Medium,Triaged] https://launchpad.net/bugs/516771 [17:30] yofel: https://wiki.ubuntu.com/SyncRequestProcess [17:32] use teh requestsync [17:32] hyperair: That's point 4 on that page. :) [17:33] oh [17:33] heh [17:33] =p [17:33] But the overall picture should also be known before using that tool. [17:33] Rhonda: thx [19:19] crimsun: Are you aware of an issue in Lucid where I can't change individual mixer elements? If I try to modify them then it just changes master. [19:19] want a bug? [19:55] openclipart-openoffice.org needs to be synced from debian, should file a ffe bug? [19:57] yes [19:57] unless its a bugfix only [19:57] actually, if its a sync, use requestsync anyway [19:58] its about bug 516771 [19:58] Launchpad bug 516771 in openclipart "openclipart-openoffice.org cannot be installed in lucid as it wants to remove openoffice" [Medium,Triaged] https://launchpad.net/bugs/516771 [19:58] the openclipart package cannot be installed because of the conflicts and it seems to be fixed in debian [20:01] I'll request a sync later today after I've tested it then [20:01] you can convert the existing bug to a sync [20:01] ah, will do :) [20:53] do we need a FFe for an 3.1.0~rc1-1 -> 3.1.0-1 update? [20:53] if its not a bugfix-only, yes [21:00] lifeless: rc1 -> release should be a bugfix only [21:02] well, you know the upstream, you need to make that assessment [21:06] lifeless: why do you assume that i know the upstream? [21:06] lifeless: i am just working on the sponsoring queue [21:06] ah [21:06] well, the thing to figure out is if it is a bugfix only change [21:07] whomever put it in the queue should ahve said. [21:07] I wouldn't assume rc1->release is safe. It likely is, but maybe it isn't. If in doubt ask 'is this a bugfix only change' [21:07] i looked at the debdiff [21:08] if you're happy, do it ;) [21:09] I didn't realise you were an archive admin was all [21:09] oh sorry, I totally assumed this was a sync change. [21:09] mea culpa [21:10] Laney: http://pulseaudio.org/wiki/PulseAudioStoleMyVolumes [21:12] well, this also effects the sound preferences capplet [21:12] what I want to do is turn down the sub [21:15] Laney: modify the LFE element in the PAprofile [21:16] lifeless: i am not yet a archive-admin ;) [21:18] Laney: i.e., in each [Element LFE] in /usr/share/pulseaudio/alsa-mixer/paths/*, change switch/volume/enumeration to Ignore [21:19] ok, I'll try it later (on another machine now) [21:20] sound prefs should stop exposing controls it can't actually change [22:08] bdrung: fyi, I answered your question in bug 521190 -- all just trivial bug fixes, no new features. [22:08] Launchpad bug 521190 in nauty "Sync nauty 2.4-2 (multiverse) from Debian unstable (main)" [Medium,Confirmed] https://launchpad.net/bugs/521190 [22:09] kamalmostafa: why is this package in multiverse? [22:11] bdrung: well, i didn't put it there ;-) so I can't be sure, but I imagine its because of the "Restrictions" listed at: http://cs.anu.edu.au/~bdm/nauty/ [22:12] kamalmostafa: the title said debian main, but it's in non-free. that led to my question [22:13] bdrung: my only involvement with nauty is that I fixed its FTBFS for Lucid -- my patch was integrated upstream and at Debian, so now I'm following up on that -- I may very well have screwed up the title of the bug though. [22:14] It's in non-free in Debian [22:16] ScottK: hi -- thanks -- yes I see that I "converted" the old FTBFS bug into a sync request, so I just botched the title [22:20] kamalmostafa: done [22:21] bdrung: thank you [22:21] np === lukjad007 is now known as lukjad86