[00:00] the hdf5 delta is really small [00:02] I'm really new. I have time but I probably need some help to work on a real package as of yet. [00:04] you have found a good little set of tasks here [00:05] we will help you [00:06] so if i'm reading this right we no longer need hdf4-alt-dev ? [00:07] do I really have to create a repository with some other tool when using piuparts -a? [00:07] I have a .deb, and want to test that its dependencies are sufficient [00:07] I was hoping that a tool such as piuparts would do the repository creation for me [00:07] jgoppert: it's still around in Debian [00:08] jjlee: pbuilder build *.dsc [00:08] ScottK, ping [00:08] ah, ok -- that puts a repo in some well-known location by default? and piuparts will find it, like it did the base.tar.gz? [00:09] RoAkSoAx: Pong [00:09] Laney: * Upload to unstable, due to hdf4 -alt support transitioned from experimental. (closes: #540403) [00:10] ScottK, while removing havp with --purge option, I get this warnings: dpkg: warning: while removing havp, directory '/var/log/havp' not empty so not removed. dpkg: warning: while removing havp, directory '/var/lib/havp' not empty so not removed.. Would it make any sense do: http://pastebin.ubuntu.com/332019/ [00:10] Does that mean we don't need it any longer in ubuntu? [00:10] no [00:10] I don't know what that transition was, but Debian hasn't removed the package so we probably don't want to either [00:11] Laney: Ok, so where do I start, pull hdf5 from sid and put in on my ppa? [00:11] RoAkSoAx: Probably. That's the kind of decisision I'd want to follow Debian on, so I'd talk with cemc and take the question to Debian. I wouldn't want to maintain a permenant diff for this. [00:12] jgoppert: You need to "merge" it into Lucid (forget about your PPA for now). See https://wiki.ubuntu.com/UbuntuDevelopment/Merging [00:12] ScottK, ok awesome. Will file a bug in Debian. Thanks :) [00:13] oh boy, any cliff notes? can you walk me through it a bit [00:14] yep yep [00:14] download the Debian package, figure out if we still need the Ubuntu changes and apply them if so [00:15] ok so dget something, whats the quickest way to find the url, debian package search? [00:15] use pull-debian-source from the ubuntu-dev-tools package [00:17] yeah the little stuff like that helps, i've been doing stuff the hard way, takes forever [00:17] ok i got it [00:18] do i do a diff against the ubuntu, how does that work? [00:18] you can grab it from patches.ubuntu.com [00:18] http://patches.ubuntu.com/h/hdf5/hdf5_1.6.6-4ubuntu2.patch [00:18] also merges.ubuntu.com might have it [00:19] lol ok so there is one real diff? [00:19] i have no idea why we need this though /* do compressed data write */ [00:19] - output = open(filename, O_RDWR | O_CREAT); [00:19] + output = open(filename, O_RDWR | O_CREAT, S_IRWXU); [00:21] see the changelog [00:21] I reckon it was to fix a build failure [00:21] you can check that location in the new package to see if they took the patch [00:21] otherwise try a build and check if it works now [00:21] it's to set the permissions of files that get created [00:22] yeah [00:22] I'm sure there was a good reason for it at some point [00:22] the new compiler flags would FTBFS on it right? [00:22] ok checking theirs for the fix [00:22] according to the changelog, it's needed for -D_FORTIFY_SOURCE [00:23] right [00:23] i'm off to bed [00:23] wait my debian is at 1.6.2, did it pull from stable and I need unstable? [00:24] night [00:24] now that ajmitch has turned up :) [00:24] * ajmitch isn't really here [00:24] LIES [00:24] Laney: Thanks for the help [00:24] oh no.. abandoned, lol [00:24] no problem, feel free to bug ajmitch all you want! [00:24] *cough* [00:24] (it pulled from testing and not unstable) [00:24] ttyl! [00:24] see ya [00:25] even testing should have 1.8.3-2.1 [00:26] looks like you can specify it with pull-debian-source gdal sid [00:27] ah, you're talking about gda1 again, not hdf5 [00:28] yeah well we need to fix both i guess, hdf5-serial and hdf4-alt are dependencies [00:28] the automated merge failed due to them, i fixed it by backing up the library deps to earlier versions on my ppa but Laney yelled at me lol [00:40] jgoppert: are you sure that pbuilder --build creates a repository? seems it just builds a package [00:40] jgoppert: what I wanted to do was test install dependencies, not build deps [00:41] jgoppert: hence need for a repo to give to piuparts -a [00:41] jjlee: pbuilder create a chroot and installs all the dependencies, if your package fails to build then you know you are missing some [00:41] jgoppert: sure -- but that wasn't what I was trying to do [00:41] I already knew my build deps were ok [00:42] it was my *install* deps I wanted to test [00:42] I want to install my package using apt-get in a clean chroot, then run the packaged program [00:43] haven't done that before, i just have the same build and install deps most of the time except like autotools etc [00:43] if you are talking like the dev package [00:43] fair enough [00:43] otherwise shlibs should do that for you, no need to check [00:44] shlibs? [00:44] Depends: ${shlibs:Depends}, ${misc:Depends} [00:44] you've seen that line before right, well it finds all the symbols that require linking and does it automatically [00:45] this is a Perl package [00:45] oh, well if its script no need to worry about binary packages right? [00:45] but there is a need to worry about install dependencies [00:46] for example, my install dependencies might be missing a package that provides a required CPAN module [00:46] only way to find out is to install it in a clean environment and run the tests (if there are any) [00:47] well, not the *only* way, of course -- but it's a good test [00:47] i see your problem, maybe use virtualbox and go for it? lol ouch [00:47] somebody did it at work already, I'll see what we do there (just cobbled together multiple tools, including pbuilder, I think) [00:48] yeah you can do a pbuilder login and you get a shell in the chroot [00:48] I was just hoping there was some tool that made it easy(ier) === blueyed_ is now known as blueyed [00:50] well seems to me like you'd almost need a test suite, how is anything going to know what you call from your script [00:51] right, the tool can't know that part (well, a tool could do static analysis, but that's a different thing) === asac_ is now known as asac [00:52] what I was hoping for was to write test-my-debian-package-install-dependencies my-debian-package.deb --components 'main universe' --run test-my-debian-package.sh [00:53] jjlee: are you familiar with piuparts? [00:53] dtchen: we just went around that loop ;-) [00:53] well i know nothing bout piuparts, so maybe someone else could help you [00:53] I can see what I need to do [00:54] good luck [00:55] just need to run some tool that creates a repo, then pbuilder to create chroot, then run piuparts (and/or manual apt-get + test) [00:55] I don't see why you need pbuilder for that scenario [00:56] dtchen: want a clean chroot [00:56] piuparts will create the base install environment [00:56] I did a short classroom on this last year [00:56] dtchen: you're probably right, but it complained at me when I tried it just now. Ran pbuilder --create and it stopped complaining. [00:57] oh, I see what you're referring to [00:57] for some reason I thought you wanted to login to the chroot [00:58] I'm a little surprised that everybody doesn't do this [00:58] i'm really new to all of this, sure the pro's do [01:02] thanks all, bye [01:23] dtchen: Are you avoiding me? :) [01:30] bddebian: hi [01:30] bddebian: err, no, I've been on holiday for the past few days [01:30] dtchen: I figured, I'm just kidding. :) [01:31] dtchen: If you get time, libsdl1.2 1.2.14 is in experimental if you could do some testing.. [01:31] bddebian: yep, I'll work on that alongside the userspace alsa-{lib,plugins} debugging; thanks! [01:32] now if only I had non-craptastic hw on which to test :/ [01:32] it's much easier to wave hands and say "but it works on Conexant HDA!" [01:34] heh [03:07] slangasek: ping [03:08] slangasek: re vimperator> do i need to bump the version or re-upload with the same version? [03:13] nxvl_: version needs bumped because the source is already in the archive [03:14] slangasek: ok [03:14] that's what i though === nxvl_ is now known as nxvl [03:15] thought [03:23] maco: evening :) [04:39] jgoppert, bug 489882 [04:39] Launchpad bug 489882 in hdf5 "Sync hdf5 1.8.3-2.1 (universe) from Debian testing (main)" [Wishlist,Triaged] https://launchpad.net/bugs/489882 [04:39] someone already worked on the merge/sync [04:40] so you just have to wait for a nice archive admin to process the sync :-D [04:41] nice :-) thanks [04:41] yw :-) Hope you didn't spent a lot of time with this merge [04:42] lol no i gave up once laney left [04:42] lol [04:42] i've been packaging a bunch of other stuff on my ppa with the help of bddebian [04:42] ok :-) [04:42] cool [04:42] bdrung_, about bug 490387 [04:42] Launchpad bug 490387 in monkeystudio "Please sync monkeystudio 1.8.4.0~beta1-1 (universe) from Debian unstable (main)." [Wishlist,Confirmed] https://launchpad.net/bugs/490387 [04:43] I'm not able to build monkeystudio.. How did you do it? [04:44] jgoppert, are the pacakges already in Ubuntu? [04:44] just curious :-) [04:45] not for most of them, had to make my own gdal temporarily, new: boost-numeric-bindings, gnelib, hawknl, open-dis, premake, and uvsim my project from sf [04:45] trying to package delta3d right now [04:49] a lof of new packages, then ! [04:49] good luck :-) [04:50] thanks, yeah its been a learning experience [04:57] just in case: debian/copyright is a very important file in the package and does not get, most of the time, the required attention ;-) So if you are looking for sponsorship to get the packages into Ubuntu or Debian, this file should be accurate [05:12] thanks fabrice, i'll be sure to look over mine before i ask someone [05:31] how do i do an itp, i've packaged all of these new packages but kind of skipped that part [05:34] jgoppert: I would check if debian has an ITP first, and assist there. You can do it there (create on with their process), or do it on Ubuntu by filing a need packaging bug on launchpad [05:35] ok is there like an equivalent of ubuntu-motu over there? [05:36] debian-mentors [05:36] thanks [05:36] but ubuntu-motu can help you out regardless [05:36] thanks [05:36] also see http://wiki.debian.org/Maintainers [05:38] how do i check if this program runs correctly in debian? Is there a way to get graphics windows inside a chroot from pbuilder? [05:39] jgoppert: Yes, but I forget the details... I tend to run Debian in a Virtualbox VM for that sort of testing instead... [05:40] ok, yeah i made one just in case :-/ my virtual box with sid on it has the internet cut out during downloads every couple minutes and i have to rerun the apt-get install or whatever, kind of annoying, does your's work correctly? [05:42] Yes, works fine for me here... or did last time I used it, let me check :) [05:47] jgoppert: Yes, seems fine here, I'm seeing my usual 1.1MBytes/sec download speed, no dropouts downloading a Debian CD1 .iso using wget... [05:47] that's good, are you using nat? [05:48] Host networking for virtualbox-ose... NAT in the router (Verizon FIOS connection to Internet, 10Mbps down/2Mbps up) [05:53] maybe thats my problem, i was on nat [05:57] jgoppert: I don't know, I always use host networking so I can ssh into my virtualbox VMs :) [05:58] that's pretty cool, lol would be useful [06:00] delta3d 24% done, crossing fingers.. have to love late night packaging.. no line for the build farm lol [06:03] jgoppert: :) It's *really* better to build it locally first, so you don't need to cross any fingers, you know :) [06:03] yeah this is the first time i'm building it locally.. i'm just saying soon enough its off to the build farm, 41% now :-) [06:04] i had to get like 4 new libraries packaged, i feel very accomplished lol [06:06] Good for you! I was looking at packaging something new over this last weekend but decided it was "too much work for right now" when I saw how many libs I'd have to package first :) [06:20] yeah its even more fun when they use cmake :/ got to 60% and crashed because their unit tests failed do to relative paths.. grrr... oh well just disabled the testing, no need to build it right now i guess [06:22] :) I've not learned cmake fully yet either... learned enough autotools to get by years ago, don't see why I should have to relearn now ... but at some point I probably will have to cave and learn cmake :) :) [06:24] i learned cmake first, attempted to use it and then realized i was an idiot for not just taking the plunge and learning autotools in the first place, but i guess not everyone thinks like me, cmake seems easy at first, its install mechanisms aren't that great though, and its kind of limited if you are using multiple languages [06:32] I was looking at the package progaurd and the version in testing can be synced but the version in unstable has been updated to source format 3.0 (quilt) which I remember reading cannot be handled correctly yet. Does this mean I should hold off on requesting a sync? [06:38] i have a package trying to install is so's to /usr/lib64, should i switch it to /usr/lib ? [06:38] *it's [07:09] ScottK, do you have any opinion on bug 426614 ? [07:09] Launchpad bug 426614 in oprofile "oprofile should not link libbfd dynamically" [Low,New] https://launchpad.net/bugs/426614 [07:10] mannyv, no: the sync request will be on hold on archive admin part, but I still process them [07:11] but I may be wrong :-) [07:13] do I need the changelog entry to say LP: #XXXXXX or is LP: XXXXXX enough? [07:14] If package A depends on package B, and the user purges package A, will the postinst from package B be called *after* the postinst from package A? Or no order is guaranteed there? [07:16] nevermind...I just fixed it [07:16] Do appropriate admins know that https://wiki.ubuntu.com is apparently down? [07:17] Is there something like http://status.ubuntu.com for outage status/info ? [07:17] not that im aware [07:18] yeah i'm not getting to wiki.ubuntu.com [07:18] admins are in #canonical-sysadmins i thin [07:18] *think [07:18] OK, thanks, I'll ask there. [07:18] or file an rt ticket rt.ubuntu.com user/pass ubuntu/ubuntu [07:23] #canonical-sysadmins was empty, so I filed a ticket. [07:23] might be singular... [07:23] *shrug* [07:39] good morning [07:54] good morning everyone [07:59] morning! === thekorn_ is now known as thekorn [08:08] fabrice_sp: do you know how to proceed with bug 474004? [08:08] Launchpad bug 474004 in libavg "Please update libavg to 0.9.0" [Medium,Confirmed] https://launchpad.net/bugs/474004 === abms1116 is now known as abms1116|away [09:06] dholbach: any reason why you didn't subscribe ubuntu-archive on bug 484912 ? [09:06] Launchpad bug 484912 in libgnumail-java "Sync libgnumail-java 1.1.2-3 (main) from Debian testing (main)" [Undecided,Triaged] https://launchpad.net/bugs/484912 [09:26] ttx: oversight? :) [09:26] dholbach: that counts. I'll fix it :) [09:27] thanks :) [09:34] a quick easy question. A fix was released for libmp3lame0 on Tue 24 Nov, and is in lucid. I guess it is in karmic-proposed, how long till it's in karmic-updates? [09:35] bug #469676 btw [09:35] Launchpad bug 469676 in lame "package libmp3lame0 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libmp3lame.so.0.0.0', which is also in package liblame0 0:3.97-0.0" [Undecided,Fix released] https://launchpad.net/bugs/469676 [09:36] no it's not in karmic-proposed [09:36] therefore it won't automatically move into karmic-updates I guess [09:37] right [09:37] I assume the fix __should__ get released on karmic though [09:38] !sru [09:38] Stable Release Update information is at http://wiki.ubuntu.com/StableReleaseUpdates [09:39] thanks [09:40] there is already a patch for lucid, it should be easy to modify it for karmic-proposed [09:43] I assume I would need to poke someone with upload rights for karmic-proposed, I'm guessing that would be a MOTU? [09:46] usually you do this by subscribing ubuntu-universe-sponsors to the bug [09:47] and for a SRU you need an ack from motu-sru team [09:47] the details are in the link above [09:48] cheers, I'll do it now, before wifey kills me for mythtv not working === cjwatson_ is now known as cjwatson === abms1116|away is now known as abms1116 [12:10] how can I ask for the removal of a package from the universe repository? should I follow any fixed procedure? [12:22] https://wiki.ubuntu.com/UbuntuDevelopment/PackageArchive#Removing%20Packages [12:26] thanks! === persia` is now known as persia [13:08] hi all! I have a question: Ubuntu has the OpenCV 1.0 (libcv1 etc. packages) in the Ubuntu repositories. I would like to have an update for that because the OpenCV 2.0 was released on 1th of October and the 1.0 is more than two years old and simple things are just broken there. Debian has only 1.0 as well. How to push this forward? I would like to have an update at least hardy, jaunty and karmic. I am a OpenCV developer, but I was not involved with MO [13:08] TU before. I have packaging/developer etc experience. I can do the work, but I do not know the best process for this situation. Please advise. [13:11] humm... [13:11] i'm a newbie... [13:12] kecsap, https://wiki.ubuntu.com/MOTU/Packages/REVU [13:13] kecsap: Update won't be able to go into pervious releases, just lucid. [13:14] kecsap: You should also try pushing the update into Debian. [13:15] kecsap: Fruthermore, the update already seems to be in Debian NEW: http://packages.qa.debian.org/o/opencv.html [13:16] jpds: thanks, I used only the package source of the debian and I saw only 1.0.x. [13:17] jpds: ok, then how can I push this debian version to ubuntu? can it be only in lucid, even if it is in the debian NEW already? [13:19] kecsap: You'll have to file a sync request and have it approved: https://wiki.ubuntu.com/SyncRequestProcess [13:20] jpds: thank you! [13:20] No problem. === ogra__ is now known as ogra [15:04] Heya gang === noodles775_ is now known as noodles775 [15:15] Hi bddebian. [15:15] Hi iulian [15:25] hey bddebian iulian [15:25] Hello sebner. [15:29] Hu hu sebner [15:59] fabrice_sp: check out bug 490791 [15:59] Launchpad bug 490791 in uim "package libuim6 1:1.5.6-0ubuntu1.1 failed to install/upgrade: conflicting packages - not installing libuim6 (dup-of: 460280)" [Undecided,New] https://launchpad.net/bugs/490791 [15:59] Launchpad bug 460280 in uim "package uim-qt3 (not installed) failed to install/upgrade: trying to overwrite '/usr/share/locale/ja/LC_MESSAGES/uim.mo', which is also in package libuim-data 1:1.5.6-0ubuntu1" [Low,Fix released] https://launchpad.net/bugs/460280 [16:09] Hi dholbach. I'm a bit lost with this bug report, bug 474004, as you seems to have a bug that makes the new version unusable [16:09] Launchpad bug 474004 in libavg "Please update libavg to 0.9.0" [Medium,Confirmed] https://launchpad.net/bugs/474004 [16:11] fabrice_sp_: did you experience it too? [16:11] dholbach, I will check when I come home, this afternoon [16:12] alright, thanks :) [16:12] If I can reproduce, I'll try also to backtrace the problem, to see if it's a problem in libavg [16:12] yw :-) === yofel_ is now known as yofel [18:26] "This repository is being created, it will be ready pretty soon…" [18:27] * LucidFox waits... and waits, and waits... === RainCT_ is now known as RainCT === manny__ is now known as mannyv === andreas__ is now known as ahasenack