=== doko_ [n=doko@dslb-088-073-072-074.pools.arcor-ip.net] has joined #ubuntu-java === kmxdot [n=skald@208.104.151.215] has joined #ubuntu-java === xhaker [n=xhaker@83-223-177-114.cpe.netmadeira.com] has joined #ubuntu-java === AfC [n=andrew@office.syd.operationaldynamics.com] has joined #ubuntu-java === Starting logfile irclogs/ubuntu-java.log === ubuntulog [i=ubuntulo@ubuntu/bot/ubuntulog] has joined #ubuntu-java === Topic for #ubuntu-java: Ubuntu Java packaging matters. For Java coding questions please visit ##java === Topic (#ubuntu-java): set by vil at Thu Aug 2 16:35:04 2007 === kmxdot [n=skald@208.104.151.215] has joined #ubuntu-java === AfC [n=andrew@office.syd.operationaldynamics.com] has left #ubuntu-java [] === vil [n=lada@ubuntu/member/vil] has joined #ubuntu-java === AfC [n=andrew@office.syd.operationaldynamics.com] has joined #ubuntu-java === xhaker [n=xhaker@83-223-177-114.cpe.netmadeira.com] has joined #ubuntu-java [01:26] vil: hi [01:26] xhaker, hi [01:26] so you were telling me you have the orig.tar.gz almost done for 3.3 [01:27] I've been fixing up 3.2.2-2 debian version [01:28] 3.2.2-1 did fail to build in ubuntu [01:28] because the control file was not regenerated [01:28] even so, when you fix that, it still will fail to build [01:29] i think 3.2.2-2 and 3.2.2-1 failed to build on debian too [01:30] I don't know what debdiff should I provide [01:30] man-di: you up too? [01:31] this laptop is still building eclipse.jdt with gcj-4.2 === vil [n=lada@ubuntu/member/vil] has joined #ubuntu-java === man-di [n=mkoch@enough.dyndns.org] has joined #ubuntu-java === xhaker [n=xhaker@83-223-177-114.cpe.netmadeira.com] has joined #ubuntu-java === AfC [n=andrew@office.syd.operationaldynamics.com] has joined #ubuntu-java === doko [n=doko@dslb-088-073-072-074.pools.arcor-ip.net] has joined #ubuntu-java === tomtomnana [n=thomas@sd-7866.dedibox.fr] has joined #ubuntu-java === lifeless [n=robertc@ppp245-86.static.internode.on.net] has joined #ubuntu-java [01:53] man-di: don't go yet [01:53] I'm sending the mail to you in 10 minutes'ish. [01:54] did I miss something? [01:54] what is the problem with 3.2.2? [01:55] vil: you did. I fixed 3.2.2 build. I'm sending the patch to man-di whenever i get X [01:56] I was saying it was hard to track down. But easy to fix. [01:56] i'll pastebin it too. [01:56] but the 3.2.2 is buildable, the proof is that there is a binary package [01:57] vil: we're not synchronized with debian versions though. Someone tried to build 3.2.2-1 with no changes [01:58] 3.2.2-2 is in debian now, and doesn't build, so even if the uploader of 3.2.2-1 for ubuntu did the necessary debian/control regeneration it wouldn't build [01:58] vil: it doesnt build on the buildds [01:58] ok, got it [01:58] vil: neiter Debian nor Ubuntu [01:59] xhaker: Im reponsible for the broken 3.2.2-1 in Ubuntu [01:59] xhaker: I file the sync request and forgot that the debian/control needs to be regenerated [02:00] man-di, I went through quickly through the orig sources and there might be a few more dependencies [02:00] apache lucene [02:00] oh oh [02:00] that cries for contrib [02:00] we really need to get icedtea finisched [02:01] what is the problem with lucene? [02:01] man-di: I was overlooking that thing too at first :D [02:01] it doesnt build with gcj afaik [02:02] brb [02:02] and when is icedtea going to be in universe / main? [02:03] when its done [02:03] anyway, other than that we might want to package junit4 as well [02:03] sorry, I dont know, doko wanted to do it [02:03] sure, when it's done :) [02:03] the dependencies are starting to be a bit messy [02:04] has to be multiverse first [02:06] doko: becuase it build depends on sunjdk? [02:07] no, licenses [02:07] ouch [02:08] still not solved [02:08] doko: do you have a package for testing? [02:09] not yet [02:09] ok [02:22] man-di: mail sent [02:23] i've copied to pastebin too. http://pastebin.com/m1de66584 === xhaker curses gcj for being memory hungry! [02:28] xhaker: is it okay for you when I use this as 3.2.2-3 ? [02:28] and then merge to Ubuntu? [02:28] man-di: I aws thinking that would look slicker yes. Do what you find is best procedure. :) [02:29] was* [02:30] I'm also not certain about the tooltips entry on the changelog. But it doesn't seem to crash here. [02:30] man-di: insert my name there, i want to brag about it when i use eclipse in my classes.. haha [02:31] Your name will be at a different place but there [02:31] thanks for the work [02:31] I will test patch on amd64 and i386 tonite and then upload [02:32] man-di: take a look at the eclipse-java-home.dpatch mode, does it need to be +x? [02:33] :-) [02:33] no [02:34] only when you want to be able to execute it manually [02:34] I'll let this thing finish building the native packages and test those too [02:34] cant hurt [02:34] I will test on Debian unstable, so the system is slightly different [02:35] man-di: yes, is there any place where i can check the build logs for debian packages? [02:35] buildd.debian.org or www.buildd.net [02:45] xhaker: can you explain me this change? [02:45] -+JAVA_HOME ?= /usr/lib/jvm/java-gcj [02:45] ++JAVA_HOME ?= /usr/lib/jvm/java-gcj [02:45] I cant see a difference [02:45] probably whitespace? [02:45] ahh sorry, remembering why i was rebuilding [02:46] i got confused because those are on different files [02:46] but i had "=" instead of "?=" before [02:47] I probably edited the patch poorly [02:48] can you explain me the purpose of "?=" [02:48] it was on the disabled patch. [02:51] xhaker: http://www.gnu.org/software/make/manual/html_node/Flavors.html#Flavors [02:51] "There is another assignment operator for variables, `?='. This is called a conditional variable assignment operator, because it only has an effect if the variable is not yet defined. This statement: [02:51] FOO ?= bar [02:51] is exactly equivalent to this (see The origin Function): [02:51] ifeq ($(origin FOO), undefined) [02:51] FOO = bar [02:51] endif" [02:53] good :) [02:54] remove one of them then. remainings from when i was using "=" [02:56] ah, okay [02:56] I just wanted to know [02:58] man-di: the thing that changes really is the file the patch works on. === tmarble [i=tmarble@nat/sun/x-6c699b1511b420cc] has joined #ubuntu-java === marcin_ant [n=marcin@194.114.146.126] has joined #ubuntu-java === jamesstansell [n=james@wsip-24-249-157-103.tu.ok.cox.net] has joined #ubuntu-java === T2k3 [n=thorsten@nervmich.net] has joined #ubuntu-java === T2k3 [n=thorsten@nervmich.net] has left #ubuntu-java [] === kmxdot [n=skald@208.104.151.215] has joined #ubuntu-java === xhaker [n=xhaker@83-223-185-184.cpe.netmadeira.com] has joined #ubuntu-java === AfC [n=andrew@office.syd.operationaldynamics.com] has joined #ubuntu-java === vil [n=vladimir@ubuntu/member/vil] has joined #ubuntu-java === marcin_ant [n=marcin@194.114.146.126] has joined #ubuntu-java