[12:04] lifeless: in dapper or still on revu? [12:04] neither [12:04] ah [12:04] where? [12:04] I have the package as source on people.ubuntu.com [12:04] http://people.ubuntu.com/~robertc/ [12:04] opensync/upstream is a bzr branch of the upstream [effectively the upstream tarball] [12:05] theres also a debian patched version and the debian control dir [12:05] what about upload to universe? [12:05] its not quite ready. [12:05] I'll upload it to sid next weekend I think [12:05] okay [12:05] I can't upload to universe, I'm not a MOTU [12:06] well if it is in Debian it will make its way :-) [12:06] I'll just apt-get source it :-) [12:06] I thought about packaging it, but I got stuck in various other things [12:06] unrelated [12:07] damn, now i did a secret key combo and my kvm switch worked, i need to find out which one it was [12:08] hub_: so me, ajmitch and azeem are teaming up to package the lot [12:08] if you have spare cycles, the more the merrier [12:08] dholbach: on mine it is "scroll lock" twice and a number (not on the keypad) === Kyral [n=kyral@hamlin-166-19647.hamlin.clarkson.edu] has joined #ubuntu-motu [12:08] lifeless: spare cycle? not currently [12:09] lifeless: but I'll see what I can do [12:09] and half borked latpop does not help === dholbach resorts to the crude method and steps on the button [12:12] dholbach: I'd say RTFM [12:12] :-) [12:12] hub_: i did - it just not seems to behave the way the manual says [12:13] but it robust... i think it'll work fine with stepping-on-it--treatment [12:13] bmonty: Could you review http://revu.tauware.de/details.py?upid=1127 again? [12:13] lfittl: sure === PlanarPlatypus [n=alucard@cpc3-cove3-5-1-cust39.brhm.cable.ntl.com] has joined #ubuntu-motu === wjb [n=Warren@117.225.11.192.in-addr.arpa] has joined #ubuntu-motu [12:23] sistpoty: can you mark filelight as fixed on the REVU2 page? [12:23] good night guys, i'm off to bed [12:23] bye dholbach [12:24] gn8 dholbach [12:24] *wave* [12:24] gn8 dholbach [12:24] and somebody review seveas' package :) [12:24] *wave* [12:25] yeah, somebody review my package :) [12:25] bmonty: done [12:25] sistpoty: thanks [12:25] np === hub_ is now known as hub === doko_ [n=doko@dslb-084-059-073-144.pools.arcor-ip.net] has joined #ubuntu-motu === hunger [n=hunger@p54A63381.dip0.t-ipconnect.de] has joined #ubuntu-motu === mmtb [n=mmtb@dxu121.neoplus.adsl.tpnet.pl] has joined #ubuntu-motu [12:44] could I get a couple of MOTUs to review plotdrop? It will be quick and painless, I promise === ajmitch returns [12:46] some of my packages on REVU have also been advocated once already and just need a check [12:46] wb ajmitch [12:46] I'm off to bed now... [12:46] ajmitch: would you have some time to review packages? [12:46] good night everyone [12:47] night sistpoty [12:48] raphink: maybe [12:49] :) [12:49] ajmitch: there's a large choice on REVU :) easiest ones might be the ones that have already been advocated :) [12:49] (not very sure) [12:49] ajmitch: Do you have some time to review http://revu.tauware.de/details.py?upid=1127 again? (I just need that one to know how to do library packaging correctly) [12:50] I'll review it lfittl if you want [12:50] raphink: that would be nice :) [12:50] so ajmitch can review my packages [12:50] unless you can review them :) [12:51] I am no reviewer (yet) ;) === ajmitch is at work, so clamoring for reviews isn't going to be very effective [12:51] since usually I'd just do it sometime when I'm at home :) [12:52] lfittl: do you know about debian/*.install files ? [12:52] raphink: sure, but like putting things in debian/rules if possible ;) [12:52] ok [12:53] it's just that I think using debian/*.install is easier for libs [12:53] for many things, but esp. for libs ;) [12:53] as you generate different files for different packages [12:53] but I understand if you don't like to use them :) [12:53] good :) [12:54] dh_install src/libcafix.so.0.1.1 /usr/lib <-- you don't build the lib? [12:55] I might be wrong, but I think debhelper+cdbs usually builds the libs in debian/tmp/ [12:55] bad upstream makefile that puts the built lib in src/ ;) [12:55] not in src/ [12:55] oh ok [12:56] that's a bit surprising but as long as it has an explanation ;) [12:56] did you report this to upstream? [12:56] it seems upstream is almost dead [12:56] oh :( [12:57] last release was 3 years ago ;) [12:57] ouch [12:57] hopefully releasing the package in Ubuntu might get people to work on it [12:57] never know [12:57] maybe :) [12:57] yes, putting anything straight into /usr in packaging is a recipe for disaster === ajmitch should have commented on that one earlier [12:58] what do you mean ajmitch ? [12:58] what is put straight in /usr? === theCore [n=thecore@toronto-HSE-ppp3960900.sympatico.ca] has joined #ubuntu-motu [12:59] just saying that if you did it that way [12:59] dh_install should prepend the appropriate directory [12:59] iirc [01:00] ajmitch: I just meant that the source is usually built in debian/tmp [01:00] so that the lib is found in debian/tmp/usr/lib [01:00] but in that case it's built in src/ [01:01] no, the source is built in place [01:01] and installed into debian/tmp using the DESTDIR argument [01:01] which this makefile happily ignores [01:01] which is usually automatic, using debhelper+cdbs, no? [01:01] mkdir -p /usr/lib [01:01] /usr/bin/install -c -m 644 include/cafix.h /usr/include/ [01:01] /usr/bin/install -c -m 644 src/libcafix.a /usr/lib [01:01] /usr/bin/install -c -m 755 src/libcafix.so.0.1.1 /usr/lib/ [01:01] ok [01:01] that looks to really not be healthy [01:02] ic [01:02] since it's installing files outside of the packaging [01:03] potentially overwriting the files installed on the system, etc [01:03] and generally messing things up [01:03] ajmitch: should I patch the Makefile? [01:03] or just disable the autotools install target [01:04] certainly patch the makefile === ajmitch wishes for the veto option on revu :) [01:04] anything else you found? :) === mr-russ [n=mr-russ@CPE-203-45-4-40.vic.bigpond.net.au] has joined #ubuntu-motu === ajmitch doesn't have time to find much :) [01:06] k, I will patch the makefile tomorrow, just need to get some sleep now.. [01:06] I think I need to write a check for packages touching files outside the build area [01:06] good idea :) [01:06] and throw up big red warnings [01:06] gn8 everybody [01:06] night [01:07] maybe take a manifest of files in the chroot after dependencies are installed.. [01:07] and then check the list once the package is built.. === bpuccio [n=brian@ool-457afde7.dyn.optonline.net] has joined #ubuntu-motu [01:15] ajmitch, I think https://launchpad.net/bugs/5577 is FINALLY ready :P I sure need to get faster / better at those. [01:15] Malone bug #5577: noteedit: merge new debian version In: noteedit (Ubuntu), Severity: Normal, Assigned to: MOTU Merge Team, Status: PendingUpload https://launchpad.net/bugs/5577 [01:34] ajmitch: did someone take logs of the MOTU-school thing? [01:39] whiprush: yes === Kyral wonders if any MOTU can give him one more vote on EasyChem [01:39] http://netz.smurf.noris.de/logs/freenode/ [01:39] thanks. [01:40] whiprush: http://netz.smurf.noris.de/logs/freenode/2005/12/10/%23ubuntu-motu-school.log to be more precise [01:40] found it [01:40] thanks much [01:41] how was the turnout? [01:41] and then you can read up on my incoherent caffeine-deprived ramblings [01:41] reading now [01:41] heh [01:41] 6am *pain* [01:41] heh [01:42] Welcome to mine. 8 AM Final Exam tomorrow [01:42] considering that I went to bed at about 2:30, I did well I think [01:42] lol [01:42] indeed [01:43] oh, the only reason I'm pushing EasyChem right now is because I was handed the World file from the COSI Lab Build and told that if I can find all of them in Ubuntu, then next semester we will put Ubuntu as the lab build [01:43] and EasyChem is on the list lol [01:44] does it work without crashing all over the place? [01:44] Yup [01:44] I corrected all the problems slomo_ noted [01:45] grrr === raphink got a ticket because policemen can't read dates properly [01:46] they'll have to hire policemen who can at least read... [01:46] Kyral: are there actually examples to install? [01:47] ajmitch: You mean .debs? [01:47] no [01:47] examples === Kyral blinks [01:47] I don't think I follow [01:47] you use dh_installexamples [01:47] I do? [01:48] yep [01:48] hmm so I do lol [01:48] and I don't know if anything gets into /usr/share/doc/easychem/examples [01:48] I didn't notice that [01:48] let me do a test build on tiber [01:48] Yah I was about to mention that [01:49] I'll remove those and reupload, or do you wanna do the test first? [01:49] running a test build now === raphink is going to bed [01:49] apart from that it looks ok [01:49] bye [01:49] but this is a 2 minute look ;) [01:49] lol [01:50] does the makefile actually have an install target? [01:51] in the orig source, no. But I patch one in and the patch is in debian/patches [01:51] ah right === ajmitch was looking at the files as they were, unpatched [01:51] This was the reason for the first MOTU-School lol [01:52] yeah, not terribly tidy, having a prefix with /usr/bin [01:53] just because PREFIX is meant to be used for other files apart from the executable [01:53] isn't that where it is supposed to go? [01:54] sure [01:54] but you'd usually set PREFIX=/usr [01:54] oh [01:54] and install into ${DESTDIR}/${PREFIX}/bin [01:55] ah [01:55] ( not {, iirc [01:55] but I guess it's alright as it is, just not optimal :) [01:56] how useful is it to install a TODO in french? ;) [01:56] the upstream author is french ;P [01:56] I know, but you mentioned TODO in debian/docs [01:56] and I don't know enough french to even TRY to translate it [01:57] it's fairly readable [01:57] but I'm not sure of its value [01:57] I suppose you can keep it :) [01:58] I could register it on LP (after talking with upstream) and use Rosetta :D === ajmitch doesn't like the patch system you use ;) === Kyral falls down [01:59] can someone help with figuring out why this build fails? http://www.montynet.org/ubuntu/kshutdown-buildlog.txt [02:00] supposedly this builds on debian, but even the debian package fails in the same way [02:00] blame \sh or whoever taught the first MOTUSchool lol. Its the only patch method I know [02:00] bmonty: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=342879 [02:01] make & cdbs have decided to have a disagreement [02:01] Kyral: it's adequate for simple tasks [02:02] I smell another MOTUSchool ;P [02:02] ajmitch: looking... [02:02] Kyral: I think we were going to do a followup to talk about a better system (stamp per patch, using --dry-run first) [02:03] ajmitch: ok, so this is a cdbs bug with no fix yet? [02:04] yep [02:04] only fix so far is downgrade make [02:05] I guess this merge will wait until it gets fixed then :( [02:05] sorry [02:05] it affects a lot ofpackages [02:05] yeah, so the fix shouldn't be long in coming :) === Kyral sighs [02:06] So whats the verdict mitch lol [02:07] Kyral: I'd give it at least 4 out of 10 ;) === Kyral falls down === ajmitch might advocate once he's tested on his dapper box [02:08] I like to check that a program runs before I give it a tick [02:08] It runs on Dapper lol. I know because I tested it before I uploaded === FireRabbit [n=FireRabb@c-67-183-18-60.hsd1.wa.comcast.net] has joined #ubuntu-motu [02:08] s/runs/runs on my box/ :) [02:08] lol [02:15] doko: ping [02:18] Kyral, french? I can translate it for you, I speak French [02:19] bmonty: pong [02:19] doko: I have a question on the gcc-snapshot package, it is on the merge list [02:19] seth_k|lappy: lol shall we get it to Universe first? Then you can just do a NMU on it [02:19] Kyral, alright [02:20] doko: do you sync that package when debian updates it? [02:21] or I should say, when you update it in debian :) [02:22] bmonty: no, that won't work. what you should do: unpack it, run "debian/rules control", then package it as -ubuntu1, then upload [02:22] doko: ok [02:23] doko: out of curiosity, how come it can't be a sync? [02:25] hmm, how do I figure out what bootservices are going off lol === dous [n=adpenara@203.131.155.132] has joined #ubuntu-motu [02:26] bmonty: differing build dependencies === minghua [n=minghua@danube.mems.rice.edu] has joined #ubuntu-motu === bpuccio [n=brian@ool-457afde7.dyn.optonline.net] has joined #ubuntu-motu === freeflying [n=zhengpen@61.190.65.25] has joined #ubuntu-motu === freeflying [n=zhengpen@61.190.65.25] has left #ubuntu-motu [] === seth_k [n=seth@ubuntu/member/sethkinast] has joined #ubuntu-motu === hunger [n=hunger@p54A624E3.dip0.t-ipconnect.de] has joined #ubuntu-motu [02:59] hmm, I don't need mdadm if I don't use RAID right? [03:03] Okay here goes nothing === SloMoSnail [n=slomo@p5487FA78.dip.t-dialin.net] has joined #ubuntu-motu === Kyral [n=kyral@128.153.196.96] has joined #ubuntu-motu [03:12] I really wish that fsck.reiserfs didn't run at EVERY boot === freeflying [n=zhengpen@61.190.65.25] has joined #ubuntu-motu === jinty [n=jinty@205.134.224.215] has left #ubuntu-motu ["Leaving"] === Amaranth [i=travis@ubuntu/member/amaranth] has joined #ubuntu-motu === derekS [n=derekS@cpe-66-108-44-139.nyc.res.rr.com] has joined #ubuntu-motu [03:56] hey LaserJock [03:56] hi bmonty [03:57] bmonty: how's the little guy? [03:57] LaserJock: lots of fun, he is starting to recognize me and smile [03:58] almost 2 months old! [03:58] cool [04:06] LaserJock: you want to see some pics of him? [04:07] bmonty: sure, love to === grizzli [n=Chris@thornton-ep.tip.csiro.au] has joined #ubuntu-motu [04:18] bmonty: are you up for a REVU review? [04:18] LaserJock: not really, I'm finishing up a merge and then I'm probably going to bed, sorry [04:18] bmonty: np [04:22] hi bmonty, LaserJock [04:22] hey ajmitch [04:22] hi ajmitch [04:24] LaserJock: what's the package? [04:24] plotdrop [04:25] just uploaded? [04:26] ah no, I see it [04:31] hm, interesting pbuilder output [04:32] really? [04:32] you were asking about why -stamp rules were used? [04:32] hello, good morning [04:33] yeah [04:34] hi nmsa [04:34] I would like to contribute and maintain a package in ubuntu, just that I'm to new in this domain, I would like something simple @ the begining, maybe help someone at start, can I have some directions pls [04:34] I saw patch being called twice, i think :) [04:35] LaserJock: want to gently introduce nmsa to the wonderful world of MOTU for me? :) [04:36] ajmitch: only if you help me with -stamps later ;-) [04:36] sure.. === ajmitch points LaserJock to his small tutorial ;) [04:36] nmsa: could you join #ubuntu-motu-school ? [04:37] I'm on since ajmitch made the presentation === zenrox [n=zenrox@71.115.198.118] has joined #ubuntu-motu [04:40] ajmitch: did you see anything else besides the -stamp thing or did you not get past that? [04:41] LaserJock: sorry, a little busy :) [04:41] overall it looked ok, nothing obvious jumped out at me [04:44] bmonty: cdbs breakage affects most of the gnome packages & kde, so I think we'll get a fix real soon [04:44] yeah, I've been working on merges and without trying I've already run into three [04:45] the bug about make breaking CDBS? [04:46] minghua: yep === ajmitch needs a large spiked club to deal with users === bpuccio [n=brian@ool-457afde7.dyn.optonline.net] has joined #ubuntu-motu [04:48] I didn't really need told that there's a new f-spot release by someone filing a bug [04:48] is there a way that I can request that a buildd try to build a package? [04:48] yes [04:49] ajmitch: mark it wont-fix [04:49] you bug lamont or infinity :) [04:49] hah [04:49] no, I mark it pending [04:50] lamont: ping [04:55] ajmitch: does http://paste.ubuntu-nl.org/5642 look better? [04:56] so if I register a project on launchpad for my python app do you like ubuntu-spy or ump (for ubuntu mirror profiler) or something else? [04:58] LaserJock: at a glance, I think it's better [04:59] bmonty: how about Super Wicked Fast Ubuntu Mirror Finder (swfumf) ? [05:00] too hard to type :) [05:00] oh well, I'm no good with names [05:02] the debian prog is called apt-spy, but I think ubuntu-spy implies that canonical is pulling a big brother :) [05:02] you mean they're not? [05:03] oh darn, I was hoping they would... ;) [05:03] since I'm sure that mark cares *lots* about reading everyone's email ;) [05:03] yeah I'm sure he does [05:05] slashdot quote: "I for one welcome our canonical overlords" === bmonty registers a permanent vote for LaserJock to be an MOTU [05:07] ok, bbiab === nmsa is now known as nmsa_away [05:09] bmonty: thanks for the support, I just hope to live up to the MOTU [05:09] :) === freeflying [n=zhengpen@61.190.65.25] has left #ubuntu-motu [] [05:12] goodnight everyone === Amaranth [i=travis@ubuntu/member/amaranth] has joined #ubuntu-motu [05:20] ajmitch: ok, I uploaded a new -stampified version ;-) === StevenK starts being naughty and IRC'ing from work. [05:23] ooh, vrms merge [05:23] Yup. [05:23] vrms 1.11 can be synced [05:23] make sure it works with restricted & multiverse, otherwise you might get critical bugs filed ;) [05:23] see 3704 === freeflying [i=zhengpen@61.190.65.25] has joined #ubuntu-motu [05:27] root@broken:/# dpkg -l vrms | tail -n 1 [05:27] ii vrms 1.11 virtual Richard M. Stallman [05:27] root@broken:/# vrms Non-free packages installed on broken [05:27] abs-guide The Advanced Bash-Scripting Guide [05:27] That do you? [05:27] I read the source and the patch, and they both looked fine, but I thought I'd humour you. [05:28] sure [05:28] I just found it funny that someone would file a critical bug on vrms [05:28] Yeah [05:28] ajmitch: Request a sync, since you cared enough to point out the bug? :-) === bpuccio [n=brian@ool-457a9c38.dyn.optonline.net] has joined #ubuntu-motu [05:29] since it didn't pick up the 'immoral' software [05:30] ajmitch: Ta [05:30] no idea why we got 1.10-0ubuntu1 [05:31] it shoul have at least been 1.10ubuntu1 === StevenK nods. [05:31] Martin Meredith is the person to ask. [05:32] he hasn't been around irc much lately [05:32] I've hardly seen him since ubz === netjoined: irc.freenode.net -> brown.freenode.net === hub [n=hub@toronto-hs-216-138-231-194.s-ip.magma.ca] has joined #ubuntu-motu === Yagisan [n=jamie@60-240-87-69-nsw-pppoe.tpgi.com.au] has joined #ubuntu-motu === freeflying [i=zhengpen@61.190.65.25] has left #ubuntu-motu [] === wjb [n=Warren@117.225.11.192.in-addr.arpa] has left #ubuntu-motu [] === mmtb [n=mmtb@dxn147.neoplus.adsl.tpnet.pl] has joined #ubuntu-motu === bojan [i=www-data@midnight.hu] has joined #ubuntu-motu === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #ubuntu-motu === viviersf [n=cain@dsl-146-101-79.telkomadsl.co.za] has joined #ubuntu-motu === wjb [n=warren@c220-237-178-175.lowrp1.vic.optusnet.com.au] has joined #ubuntu-motu === lbm [n=lbm@cpe.atm4-0-1301006.0x50a0824e.vgnxx6.customer.tele.dk] has joined #ubuntu-motu === rob1 [n=Robert@ubuntu/member/rob1] has joined #ubuntu-motu === Trash[impersonat [n=matt@ip70-176-253-127.ph.ph.cox.net] has joined #ubuntu-motu === jsgotangco [n=jerome@ubuntu/member/jsgotangco] has joined #ubuntu-motu === robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #ubuntu-motu === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #ubuntu-motu === tvo [n=tobi@5354EA9B.cable.casema.nl] has joined #ubuntu-motu === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #ubuntu-motu === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #ubuntu-motu [08:56] morning all [08:58] 'morning sivang [08:59] hey crimsun [08:59] crimsun: you have any idea what this is about: [09:00] 07:57 [freenode] -!- sivang #launchpad Cannot send to channel so cannot change nicks [09:00] I've never had that before. [09:00] sivang_away: ah, that's probably due to the mess freenode was in this weekend. Try reconnecting. [09:00] I see, ok, thanks/ === sivang [i=sivan@muse.19inch.net] has joined #ubuntu-motu [09:01] crimsun: ok, seems that helped :) [09:01] :) === rob1 [n=Robert@ubuntu/member/rob1] has left #ubuntu-motu ["Leaving"] === Gervystar [n=gervysta@62.94.208.119] has joined #ubuntu-motu === hunger [n=hunger@p54A624E3.dip0.t-ipconnect.de] has joined #ubuntu-motu [09:39] morning [09:40] 'morning siretart === SEJeff [n=SEJeff@12-222-183-136.client.insightBB.com] has joined #ubuntu-motu === dholbach [n=daniel@i577B0AD0.versanet.de] has joined #ubuntu-motu [09:52] good morning motus [09:52] re dholbach === koke [n=koke@ubuntu/member/koke] has joined #ubuntu-motu [09:52] hey crimsun, koke :) [09:53] good morning o great one dholbach [09:53] haha [09:53] hi all! [09:53] today is below zero here :) [09:53] what a cool morning [09:53] that's nice indeed [09:54] anybody using piuparts? I wonder if piuparts can use a local directory for apt cache as pbuilder does [09:54] hey people === ajmitch waves to dholbach, jsgotangco, koke, minghua ;) [09:55] hi ajmitch [09:57] 3.80+3.81.b3.3.80-1ubuntu1. wow. [09:58] impressive [09:58] make? === jinty [n=jinty@205.134.224.215] has joined #ubuntu-motu [09:58] yep [10:02] hello professor ajmitch [10:03] :P [10:03] crimsun: it doesn't work too good for some of the pakcages I tried building === irvin [n=irvin@202.138.170.4] has joined #ubuntu-motu [10:10] sivang: yeah, infinity just reverted it, hence the nasty versioning :) === Tonio_ [n=tonio@cac94-5-82-229-219-55.fbx.proxad.net] has joined #ubuntu-motu [10:20] huhu dholbach [10:20] hieveryone === ompaul [n=ompaul@213-202-160-173.bas503.dsl.esat.net] has joined #ubuntu-motu [10:33] huhu Tonio_ [10:33] siretart: I was thinking today - we don't really need to setup a separate chroot system apart from pbuilder [10:34] since with hooks & multiple configs we should be able to do what we need [10:34] ajmitch: there was a plan to use sbuild on tiber === dholbach_ [n=daniel@i577B15FC.versanet.de] has joined #ubuntu-motu [10:34] which doesn't work without a chroot [10:34] sure, you could use sbuild for building [10:34] but pbuilder & piuparts for testing packages [10:35] you right, we could rely on pbuilder and piuparts in the beginning [10:35] and add another sbuild 'test' later [10:35] right [10:36] we want to write as little as possible to start with :) [10:36] okay === etcp_ is now known as etcp === raphink [n=raphink@gra86-1-82-239-88-236.fbx.proxad.net] has joined #ubuntu-motu === raphink [n=raphink@gra86-1-82-239-88-236.fbx.proxad.net] has joined #ubuntu-motu === dredg [n=nsherida@80.169.137.162] has joined #ubuntu-motu === blablablabla [n=maniac@i3ED6E859.versanet.de] has joined #ubuntu-motu === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #ubuntu-motu === ptlo [n=senko@83-131-14-19.adsl.net.t-com.hr] has joined #ubuntu-motu === herzi_x41 [n=herzi@d021081.adsl.hansenet.de] has joined #ubuntu-motu === bojan [i=www-data@midnight.hu] has joined #ubuntu-motu === maradong [n=bhentges@213.47.179.227] has joined #ubuntu-motu === PlanarPlatypus [n=alucard@cpc3-cove3-5-1-cust39.brhm.cable.ntl.com] has joined #ubuntu-motu === koke [n=koke@ubuntu/member/koke] has joined #ubuntu-motu === retrix [n=sam@ppp215-25.lns1.adl2.internode.on.net] has joined #ubuntu-motu === highvoltage [n=Jono@196.207.32.253] has joined #ubuntu-motu [12:51] SloMoSnail: ping === hunger [n=hunger@p54A624E3.dip0.t-ipconnect.de] has joined #ubuntu-motu === koke [n=koke@ubuntu/member/koke] has joined #ubuntu-motu [01:13] hi siretart [01:19] is it ok to package a program from binary and include the source in the package ? [01:19] :s === ogra [n=ogra@ubuntu/member/ogra] has joined #ubuntu-motu [01:27] raphink: err, sounds strange. why should the user want the source? [01:27] or better, would? [01:27] well I mean [01:27] there's an app I'd like to package [01:28] but there's no Makefile in it [01:28] instead [01:28] the binary is provided with a install.sh script and the source tarball [01:28] that contains no Makefile as I said [01:28] i don't know how to create Makefiles from scratch [01:28] ah, so your upstream consists of several files, right? [01:29] raphink: looks like a great opportunity to learn about Makefiles [01:29] raphink: automake is pretty easy to learn, apt-get install autobook [01:29] my upstream consists of a tarball that contains the bin, an install script and the source tarball with no Makefil [01:29] ok [01:29] I tried to open the dir as an existing project in Kdevelop [01:30] but it doesn't build === ivoks [n=ivoks@ubuntu/member/ivoks] has joined #ubuntu-motu [01:31] those hardcore, bare-bone projects probably don't play well with a graphical IDE [01:31] dont necesarily need to use make files to build [01:31] how is it normally built? [01:31] azeem: it's a pretty advanced project, provided by my ISP [01:31] it's in cpp with qt I believe [01:32] oh [01:32] isn't there a README or something in the source tree? [01:32] it doesn't say how to build [01:33] well I believe it might depend on other libs [01:33] but I don't know which ones [01:33] I have to look in the files ;) === viviersf [n=cain@dsl-146-101-79.telkomadsl.co.za] has joined #ubuntu-motu [01:33] pbuilder is good for that [01:33] for what? [01:34] making sure you get all the deps [01:34] it builds inside a clean install [01:34] and just installs the deps you specify in build-depends [01:34] sure I know that [01:35] just some fun trial and error and off you go [01:35] :) [01:35] my problem is to know what the deps are so far lathiat ;) === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #ubuntu-motu === littlepaul [n=littlepa@p5084C8C6.dip.t-dialin.net] has joined #ubuntu-motu [01:51] tseng: how goes the RoR hacking? [01:53] lathiat: http://headrush.typepad.com/creating_passionate_users/2005/12/have_you_update.html [01:54] heh === spacey [n=spacey@flits101-191.flits.rug.nl] has joined #ubuntu-motu === jamessan|work [n=jamessan@c-24-218-220-129.hsd1.ma.comcast.net] has joined #ubuntu-motu === bojan is now known as bojan_away === zul [n=chuck@ubuntu/member/zul] has joined #ubuntu-motu === Gazer [n=gazer@mail.aktiv-assekuranz.com] has joined #ubuntu-motu === markuman [n=supermar@p50925E80.dip.t-dialin.net] has joined #ubuntu-motu === PlanarPlatypus [n=alucard@cpc3-cove3-5-1-cust39.brhm.cable.ntl.com] has joined #ubuntu-motu === Amaranth [n=travis@ubuntu/member/amaranth] has joined #ubuntu-motu === Fuddl [n=fuddl@2001:6f8:9cf:0:20f:eaff:fe4d:d7b7] has joined #ubuntu-motu === zakame [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu [03:10] evening all! :D === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #ubuntu-motu [03:13] evening zakame === mhz [n=mhz_chil@pc-252-84-215-201.cm.vtr.net] has joined #ubuntu-motu [03:13] hi sivang , mhz ! :-) [03:14] hey zakame === sanpera [n=sanpera@157.182.194.68] has joined #ubuntu-motu === zakame_ [n=zak@ubuntu/member/zakame] has joined #ubuntu-motu === bipolar [n=bipolar@146.145.26.90] has joined #ubuntu-motu [03:30] heya \sh :-) [03:34] keydevelop3 can't be used to build apps with qt4 ? === Hieronymus [n=jeroen@cp413115-a.tilbu1.nb.home.nl] has joined #ubuntu-motu [03:36] probably not === tvo [n=tobi@5354EA9B.cable.casema.nl] has joined #ubuntu-motu [03:45] <\sh> moins === tvelocity [n=tony@84.254.13.74] has joined #ubuntu-motu === eth42 [n=peter@p54BE237C.dip0.t-ipconnect.de] has joined #ubuntu-motu [04:03] is MOTU also MOTM or is multiverse covered somewhere else? [04:05] eth42: the launchpad group ubuntu-dev covers both universe and multiverse === marcin [n=user@194.114.146.58] has joined #ubuntu-motu [04:07] zakame: erm, what's exactly is a launchpad group? [04:07] a group of people on launchpad.net [04:07] eth42: https://launchpad.net/people/ubuntu-dev/ :-) [04:07] thanks :-) [04:12] I noticed that the faac package comes without mp4 support (I suppose it was simply not activated when it was compiled). Is there any reason for this? [04:12] youd have to ask SloMoSnail (slomo) another day [04:12] i dont think he is here [04:12] tseng: ok [04:14] eth42: you may want to check the buildlogs [04:15] siretart: how do I do that? (sorry for being ignorant on this but I have no experience with deb but only rpm) [04:15] eth42: http://people.ubuntu.com/~lamont/buildLogs/f/faac/ [04:15] thanks :-) [04:15] no problem, where are here to help [04:16] was just searching for the correct buildlog [04:18] eth42: please help me to remember, what lib/software is needed for mp4 support? [04:18] well, according to the buildlog it seems to be mp4v2 which is missing [04:20] siretart: at least this is my understanding of the line checking for MP4MetadataDelete in -lmp4v2... no [04:21] eth42: hm. you should really talk to sebastian (slomo). he did a lot of work on the package === TerribleXx [n=nodelink@61.51.70.27] has joined #ubuntu-motu === lamont__ [n=lamont@mib.fc.hp.com] has joined #ubuntu-motu === TerribleXx [n=nodelink@61.51.70.27] has left #ubuntu-motu [] [04:28] is there an easy way to just recompile the package? (since I have the library installed from source) [04:28] I tried "apt-get source faac --compile" but that failed since the source package could not be found. [04:28] eth42: apt-get -b source packagename [04:29] hmm, that should be the same. Weird [04:30] hehe [04:30] :-) [04:30] you need multiverse deb-src in your sources.list [04:30] eth42: if you apt-cache search faad or apt-cache info faad, you'll see no package [04:31] I can't find a source repository for multiverse in synaptic. what am i missing? mhh [04:32] eth42: err deb-src on multiverse? [04:33] Hieronymus: apt-cache search faad shows 4 packages, faac 3 === Danten [n=danten@h236n4c1o1049.bredband.skanova.com] has joined #Ubuntu-motu [04:36] zakame, for some reason there was no deb-src multiverse line in /etc/apt/sources.list only one for universe... [04:36] I simply added multiverse to that line, and it worked [04:37] is it ok to remove lots of unuseful things from a source before packaging it ? [04:37] eth42: good work then [04:37] but I expected that synaptic would offer this choise as well [04:37] thanks! [04:37] raphink: define un-useful :) [04:38] zakame: I'm packaging a program that is used by my ISP to allow users to play their media files on their TV using the modem [04:38] the tarball provided by my ISP includes a tarball of VLC [04:39] at a certain time, this was useful since the hack done to VLC by my ISP was not yet in the VLC trunk [04:39] raphink: ah... could you build that using the already-packaged vlc then? [04:39] but now VLC has merged it so it's stupid to distribute vlc together with it [04:39] sure zakame [04:39] but then I need totally review the package [04:39] I mean [04:40] clean unuseful things [04:40] obsolete [04:40] that would have the package be around 12MB instead of 1 [04:40] so I'd need to actually remove two things from the source : the vlc tarball and the source of another app that is now obsolete [04:40] raphink, as long as you dont change the upstream source (orig.tar.gz) everything is allowed here ;) [04:40] raphink: ooh! well, make sure it works before removing [04:41] ogra so I would do that through patches? [04:41] sure zakame [04:41] everything as in policy compliant indeed [04:41] ok [04:41] raphink: err this is a NEW package right? [04:41] raphink, for example ... or through the rules file ... [04:41] that'll still make a very big debdiff [04:41] zakame: yes it's a new package [04:42] ogra : like a series of rm in the build section? [04:42] ogra: but then again, -policy allows a repackaged source, as long there's notice of repackaging :) === mitsuhiko is now known as mitsukranko [04:42] zakame, yes, but that should be a last resort ... [04:42] raphink, for example, yes ... [04:42] from the way the source looks, it might be easier to just take the few required things from it and repackage === mitsukranko is now known as mitsuhiko [04:43] or just omit the building of parts you dont want ... [04:43] raphink: or you can convince your good upstream to drop their pre-packaged vlc ;) [04:43] hmm [04:43] the good upstream is my ISP [04:43] and I don't think they mind so much [04:44] then have them release a new version without the extra stuff [04:44] mhm [04:45] I'll see === jsgotangco [n=jsg@ubuntu/member/jsgotangco] has joined #ubuntu-motu [04:46] hiya [04:46] I wonder how the faac deb-src could get compiled if it requests a package libmp4-dev for build which I cannot find for any Ubuntu distribution... [04:46] er its libmp4v2-dev [04:47] eth42: if you look in the source package, there is a file called 'debian/control' [04:47] eth42: in that file, there is a line 'Build-Depends' [04:48] eth42: this line holds a list of packages which have to be installed to build that package. the autobuilders will install these packages in prior building the package. that installation process is also shown in the buildlogs I pointed you to [04:48] siretart, yeah I've found such a line in faac_1.24-0.2.dsc [04:49] hmmm : ogra : the vlc tarball provided by my ISP has been modified quite a lot from the original vlc [04:49] siretart: how do I start the build after removing the reference to libmp4-dev? [04:49] there's a 6MB diff [04:49] raphink, oh, its vlc ? [04:49] :s [04:50] eth42: type 'dpkg-buildpackage -us -uc' [04:50] thanks! [04:50] the -us -uc is to supress signing the package [04:50] ogra : yes, my ISP uses VLC for its app. But they provide a modified version of VLC, with 6MB diff, although it works fine with the standard VLC too [04:50] then i'd rather try to get it in the vlc package we have and let it produce a differently named binary [04:51] i.e. vlc-webtv- [04:51] ogra : well I shall explain better [04:51] note that we have a target for dapper to aviod and remove duplication ... that should be taken into regard for universe as well where possible [04:52] ogra : the current vlc already contains lots of modifs from my ISP, and what is useful in this tarball to have the webtv service work is only a bashscript to launch VLC with special options and a folder containing pages to be shown on the TV, programmed in a kind of HTML [04:53] so aply this to our vlc and make it a new binary package then ... [04:53] er what bin makes `mkinstalldirs' again? [04:53] ogra : I should add this to the vlc source package and make it procude a different package from it, that's what you mean? [04:54] s/procude/produce/ [04:54] yes [04:54] hmmm [04:54] make it produce an addon package to vlc, or if necessary a new binary [04:54] (with different name) [04:55] why not package it separately and have it depend on VLC? [04:59] raphink: because we want to avoid duplication [05:00] nothing would be duplicate siretart [05:00] raphink: then I didn't get you [05:00] siretart: thanks for the help -- I could successfully compile faac. But what does the message "dpkg-buildpackage: binary and diff upload (original source NOT included)" mean. Did it upload something?! [05:00] it's a bit complicate I reckon [05:00] eth42: it did not [05:00] ok :-) [05:00] eth42: that means that you didn't download the source with `apt-get` *G* [05:00] eth42: seriously [05:01] siretart: my ISP has worked on modifying VLC to produce the Freeplayer for years. A few years ago, they have released a modified version of VLC that allowed to do so. Then VLC got that diffs in the main trunk. [05:01] eth42: dpkg-buildpackage (dpkg-source, to be exact) searches for a ../_.orig.tar.gz [05:01] eth42: if it doesn't exist, you get that message [05:01] ah, ok [05:02] siretart: now the service works with the current VLC provided by the VLC package, it just requires a small bash script to launch VLC with options and a folder that contains HTML pages used by the modem to browse the computer from the TV screen. [05:02] raphink: if it is just a small bash script, why not adding it to the existing vlc package? [05:02] siretart: still, the tarball provided by the ISP contains a VLC tarball, that is quite different from the one I got with apt-get source [05:03] siretart: I'll have to modify the vlc package source manually [05:03] if that's fine, then it's ok ;) [05:03] raphink: what modification would you need? what could break from that? [05:03] nothing could break siretart [05:04] I just need to add a freeplayer/ folder at the root of the vlc package, put the stuff in it [05:04] and add rules to debian/rules to install all this at the right place [05:04] raphink: you just said you needed to modfy something, what? [05:04] so something like /usr/share/freeplayer, with links to /usr/bin [05:04] raphink: or just the packaging? [05:04] siretart: I need to _add_ something to the source [05:04] that's what I mean [05:05] package source that is [05:05] raphink: ah, thats fine, just add it to the package :) [05:05] ok [05:05] :) [05:06] siretart: but if someone updates vlc, there's a chance the freeplayer is lost on the way, no? [05:07] raphink: if you document that in debian/changelog, there should be no problem [05:07] raphink: because when merging, we look for such changes [05:07] ok [05:07] yep [05:08] raphink: does vlc upstream know about this script? perhaps they could add it to their distribution? [05:08] siretart: I bet they know about it, since the current vlc was largely modified to work with it [05:09] well, perhaps it will show up in the next release then. [05:09] gn8 all :D [05:09] gn8 zakame [05:09] I don't think so siretart [05:10] it's only used by my ISP so far [05:10] since it works with the modem they build [05:13] :( === ivoks [n=ivoks@ubuntu/member/ivoks] has joined #ubuntu-motu [05:14] heh === lbm [n=lbm@x1-6-00-13-10-7a-d1-e4.k233.webspeed.dk] has joined #ubuntu-motu === herzi_x41 [n=herzi@d077023.adsl.hansenet.de] has joined #ubuntu-motu [05:22] quick question: How would I know if the GD PHP lib that is packaged is the one internal PHP GD lib? [05:23] chillywilly: you would have to check the buildlogs [05:23] http://people.ubunut.com/~lamont [05:23] ok === hunger_ [n=hunger@p54A6188C.dip0.t-ipconnect.de] has joined #ubuntu-motu [05:24] 404 on that [05:24] oh [05:25] chillywilly: http://people.ubuntu.com/~lamont/buildLogs [05:26] alternatively you could look at the configure call in debian/rules in the source package [05:27] and the build-depends === amoll [n=amoll@balrog.bioinf.uni-sb.de] has joined #ubuntu-motu [05:30] yea I did apt-get source before, need to look at the rules file yet [05:32] hi there, i would like to add a deb package to the Ubuntu repositiory, could you please tell me which person to connect? [05:32] --with-gd=shared,/usr --enable-gd-native-ttf [05:32] amoll: please see https://wiki.ubuntu.com/REVU [05:32] not sure if that buids the "internal" gd lib but I'll rtfm ;) [05:35] amoll: in short: if you have a new package, you need to show it to us [05:35] amoll: then we can review and upload it for you to the archive [05:35] siretart: after adding freeplayer/, I get a very predictable error : unrepresentable changes to source [05:35] amoll: what package do you have? [05:35] how can I avoide that? [05:35] chillywilly: it says shared [05:35] raphink: you added binary data to the package [05:35] raphink: don't do that :) [05:36] chillywilly: iirc the other flag is --with-gd-internal, see ./configure --help [05:36] where do I add it siretart then? [05:36] maybe --with-gd=internal [05:36] raphink: you told before you just want to add a bash script, no? doesn't sound like binary data [05:36] tseng: bah, I should beat someone for requiring the internal gd lib ;) [05:37] there's a script _and_ a folder containing html, pdf and images [05:37] chillywilly: eh..? [05:37] raphink: how big is it? [05:37] chillywilly: didnt we just say we dont [05:37] so the issue is with the images and pdf [05:37] not big [05:37] a molecular viewer: www.ballview.org [05:37] tseng: my comment was the people wo wrote this PHP app should be beaten for requiring the internal gd lib [05:38] siretart: the whole directory I added is 248 KB [05:38] who* [05:38] chillywilly: i see. [05:38] shared libs are elite [05:38] raphink: which I'd consider as rather big [05:38] siretart: the pdf being 158KB [05:39] the images are very small (about 1kB each) [05:39] raphink: the problem is that diff cannot represent binary 'changes' [05:39] yes [05:40] I understand that [05:40] raphink: so you would have to workaround by using uuencode/uudecode [05:40] o_O [05:40] amoll: You want that for MOTUScience? === oris_wolfbane [n=oris@82-38-121-195.cable.ubr01.hali.blueyonder.co.uk] has joined #ubuntu-motu [05:40] raphink: so you rather want to introduce a new package, like mplayer-skins [05:40] I guess so siretart === Hirion [n=hirion@draugr.de] has joined #ubuntu-motu [05:41] Kyral: Yes I guess it would fit nicely [05:41] but then to have it clean I should just repackage the source aswell [05:41] amoll: I can't find the license... [05:41] amoll: and this http://www.ballview.org/Overview/Download seems to indicate that it wouldn't be GPL compatiable [05:42] siretart: next problem is that there is no version number on this script... it just calls vlc with some options [05:42] Kyral: Well its GPL for the viewer and LGPL for the library [05:42] Kyral: The text is outdated, sorry... [05:42] Okay now stupid question lol, are you upstream by anychance? [05:43] upstream == Developer [05:44] nm I answered my own question === eth42 [n=peter@p54BE237C.dip0.t-ipconnect.de] has left #ubuntu-motu [] [05:44] boy do I feel stupid now [05:45] sorry [05:46] argh, all caps directories [05:47] argh, a "Do you accept these terms (y/n)?" question when running ./configure [05:47] amoll: Add it to wiki.ubuntu.com/MOTUScience and we'll look at it when half the team isn't in Final Exams (Next Week ;P) [05:47] azeem: whats this? [05:48] azeem, lol ... the buildd needs AI then :) [05:48] when you run ./configure, the first thing it does is catting the LGPL boilerplate to stdout and asking you the above question [05:48] ogra: or dpatch :) [05:48] hehe === JohnnyMast [n=rave@212-127-146-168.cable.quicknet.nl] has joined #ubuntu-motu [05:49] dnl Require the user to accept the license (once) [05:49] CF_CHECK_LICENSE [05:49] azeem: what package (contemplates shutting up lol) [05:49] Kyral: Ball [05:49] ah [05:49] so I made an idiot of my self for no reason? [05:50] Kyral: I didn't get that idiot part at all, sorry =) [05:50] meh === Kyral goes back to watching anime [05:50] remind me to scroll up before I start asking questions :P === IzzyCC [n=Izzy@pcp0011143182pcs.levtwn01.pa.comcast.net] has joined #ubuntu-motu [05:51] azeem: it asks you to agree to the LGPL? [05:51] yes [05:51] azeem: but that's not an EULA but a redistribution license [05:51] http://www.ballview.org/Gallery <- awesome [05:52] indeed [05:52] It makes EasyChem look REALLY bad :D [05:52] EasyChem is a structur editor, not a 3D viewer, no? [05:52] I haven't followed too much [05:52] yah good point [05:52] Ballview competes with e.g. PyMOL [05:53] I dunno, I just package the things === nmsa_away is now known as nmsa [05:53] Kyral: How do I do this? [05:53] amoll: huh? [05:54] Well it seems you like our pictures ;) [05:54] amoll: why does the user need to agree to the LGPL when building from source? [05:54] How do you do what? (Sorry, a "How do you do..." question sends me into support mode) [05:55] Good question. The configure script doesnt stem from me [05:55] I can't even get to the Source without registering [05:56] My boss wants to know who is using our software [05:56] Kyral: I culd [05:56] eh, could === Kyral sighs [05:56] wget http://www.ballview.org/Downloads/Releases/BALL-1.1.tar.gz [05:56] Isn't unrestricted access to the source a part of the GPL.... [05:57] I dunno... [05:57] Kyral: try the URL === Kyral sighs [05:57] Kyral: no [05:57] but you can just register, download and redistribute [05:57] I dunno, my head hurts its Finals week. NO MORE THINKY! ;P [05:57] unless binaries don't need registration === Danten [n=danten@h237n9c1o1049.bredband.skanova.com] has joined #Ubuntu-motu [05:57] hey guys, where can I go to get help installing php5/mysql5? id rather just pay a few bucks and have it done than get even more frustrated than I am [05:58] (#ubuntu isnt answering) [05:58] If its in the Repos the source would be available through the deb-src lines [05:58] the binaries of the viewer are available under GPL [05:58] the library unter LGPL [05:58] IzzyCC, if #ubuntu isn't answering, that's no reason to ask in here [05:58] Unless we put it in Multiverse === Kyral sighs [05:58] amoll: and the source of the viewer? [05:58] amoll: or is that the library? [05:58] I'll take myself out of the convo now [05:58] azeem: its in the library [05:58] Kyral: if it's GPL, you can just redistribute, or what are you talking about? [05:58] ah [05:59] Seveas i figured there would be more people willing to get some side money that are active here, than there filled with people who are as newbie as me [05:59] amoll: how can you license the binary different to the source, or did I misunderstand you? [05:59] IzzyCC, there are lots of smart people there too, just wait and ask again later [05:59] Hieronymus: I mean that it would bypass the registration [05:59] of ask on the mailinglist [05:59] Completely since people could also go to packages.ubuntu.com and download it there [05:59] Seveas aye, thanks [06:00] azeem: well the idea is that the binary can be distributed freely [06:00] amoll: that wouldn't change with LGPL? [06:00] The source has to be under GPL too right? [06:00] or... [06:00] azeem: well that wasnt my idea, I am not sure [06:01] Wouldn't be the same as SunJava? [06:01] if you distribute that binary under the GPL, you have to offer the people who download it the source under the GPL as well [06:02] well the viewer has still some source left, which isnt in the library. I guess this code could be distributed under the GPL [06:02] but to use it, it would depend on the library, which is under LGPL [06:02] ah, ok [06:02] that makes sense [06:02] Whats the difference between GPL and LGPL anyway? [06:02] but then you need to offer that GPL source somewhere [06:02] Kyral: LGPL allows linking to proprietary software [06:03] So if the lib is propreitary [06:03] "the lib"? which library? === FireRabbit [n=FireRabb@unaffiliated/firerabbit] has joined #ubuntu-motu [06:03] then the binary/source of the viewer would be under PGPL [06:03] err [06:03] LGPL [06:03] ehm, hasn't amol said three times now that the viewer is GPL and the library is LGPL. What's the fuss about? [06:04] Because it sounds like that you cannot get the source of the library === IzzyCC [n=Izzy@pcp0011143182pcs.levtwn01.pa.comcast.net] has left #ubuntu-motu [] [06:04] of course you can get it, but you have to register for free [06:04] is that a serious problem? [06:05] and if the lib is in the repos you would be able to bypass the registration [06:05] Kyral: so _what_? [06:05] it seems like that is unwanted thats what ;P [06:05] amoll: no, but you need to understand that other people can just distribute the source/binary to others, without registration [06:05] like Ubuntu/Debian would [06:05] or Gentoo... [06:07] I personally never understood why people are so concerned about who is using it. To me no feedback means its working. Its when it doesn't work is when I want to here about it === Dantis [n=danten@h237n9c1o1049.bredband.skanova.com] has joined #Ubuntu-motu [06:19] Well we are really glad if we get feedback, but at the same time we would like to have an overview of who is using our software, also if they dont send any comments... [06:19] sure, just pointing it out [06:20] amoll: quite some people more from the Free Software community rather than the Bioinformatics community mind consider these registration forms mildly rude, perhaps === MagnusR [n=magru@85.194.14.142] has joined #ubuntu-motu [06:40] re === eruin [n=eruin@unaffiliated/eruin] has joined #ubuntu-motu === kjcole [n=kjcole@dsl092-145-217.wdc2.dsl.speakeasy.net] has joined #ubuntu-motu === Gazer [n=gazer@mail.aktiv-assekuranz.com] has joined #ubuntu-motu === zul [n=chuck@ubuntu/member/zul] has left #ubuntu-motu [] [07:02] sirestart i have a problem with pbuilder it asks about a base archive ?? http://pastebin.com/461124, do know this problem ? [07:03] JohnnyMast: err, Line 9 tells exactly whats wrong and even how to fix it ;) [07:03] JohnnyMast: have a look at our PbuilderHowto in the wiki first [07:04] i did that already [07:04] yes that where the steps i took [07:04] is it a problem if you create a dapper chroot on dapper ? === Kyral [n=kyral@hamlin-166-20028.hamlin.clarkson.edu] has joined #ubuntu-motu [07:05] hi Kyral [07:05] well, do you have a /var/cache/pbuilder/base.tgz at all? [07:06] no siretart [07:06] but it installed the chroot [07:06] JohnnyMast: that base.tgz is your chroot [07:07] i see but i saw pbuilder checking deps and downloading and installing stuff [07:07] i gues i overlooked something then [07:08] perhaps there was an error [07:08] the result of pbuilder create should be that base.tgz [07:09] im gonna redo the steps and report back to you if it fails, its not the first time something fails on dapper for me [07:15] JohnnyMast: the wiki mentions that it may be necessary to create a breezy chroot first, and upgrade that to dapper then [07:16] JohnnyMast: I have no idea if this is true today, and this can change with every day. [07:16] well let me try that [07:16] that is what I had to do but that was a while ago [07:17] it never hurts to try [07:17] I think that debootstrap didn't work for a while on dapper [07:17] but I don't know if that has been fixed [07:18] LaserJock: this is because of broken dependencies. they can get broken and fixed with every upload of a 'base package' (packages installed by debootstrap) [07:18] siretart: ah, makes sense [07:19] is REVUDay over? [07:19] well, its building a breezy chroot now. If its done i will check the the base.tgz file is there if it is i will follow the wiki steps to update to dapper [07:21] Hieronymus: ping? [07:21] LaserJock: pong! [07:21] Hieronymus: It looks like your ATI driver doesn't like ghemical === Kyral [n=kyral@sclab-166-10933.sclab.clarkson.edu] has joined #ubuntu-motu [07:22] LaserJock: yeah [07:22] Hieronymus: You could email the ghemical-devel mailing list === Danten [n=danten@h100n3c1o1049.bredband.skanova.com] has joined #Ubuntu-motu [07:26] on breezy it didnt create the base.tgz as well, but i think i saw an error on that my cd was not inserted === Mez [n=Mez@ubuntu/member/mez] has joined #ubuntu-motu [07:30] hey Mez [07:30] Mez: how are you [07:31] hey guys === ogra [n=ogra@ubuntu/member/ogra] has joined #ubuntu-motu [07:31] siretart: been better [07:32] :( [07:32] LaserJock: hmm.. I'm lazy :) will put it in my stickywiki [07:32] siretart: I've been having a ****** time since Montral [07:33] and it's just getting worse === tvo [n=tobi@5354EA9B.cable.casema.nl] has joined #ubuntu-motu === trulux [n=lorenzo@unaffiliated/trulux] has joined #ubuntu-motu [07:36] Are we still doing bootcharting for Devel? [07:37] of course [07:37] the more the merrier [07:37] very nice. Because I am quite happy with myself. Got my lappy down to 15 seconds flat in Dapper [07:37] siretart: hm, do you have a contact address for this eth42 guy? ;) [07:37] slomo: sorry [07:37] ah, there you are [07:37] query === ptlo [n=senko@83-131-71-46.adsl.net.t-com.hr] has joined #ubuntu-motu === Danten [n=danten@h100n3c1o1049.bredband.skanova.com] has joined #Ubuntu-motu [07:43] crap, spilled a spool of 100 cd's on the floor >:( [07:43] ouch [07:44] luckly, the were mostly Fedora, Mandrake, and Suse isos ;-) [07:44] lol [07:46] that is one nice thing about Ubuntu, only 1 cd [07:47] hehe [07:48] siretart: anyway, i don't see why he thinks faac is without mp4 support... it is built in on breezy/dapper on all arches ;) === LaserJock mutters to himself, "What the heck am I doing with Mandrake cds?" === mmtb [n=mmtb@dye205.neoplus.adsl.tpnet.pl] has joined #ubuntu-motu [07:51] I'm making a .deb for bulldozer, an extension for nautilus which integrates build systems (make, ant etc.). If you use a format bulldozer knows but you haven't installed, like ant, it will give an error. Two questions: 1. Should I Depend: on these packages? 2. Two of these supported build systems are maven and maven2, but they're not in Ubuntu. What should I do? [07:53] pack them as well ?? :p [07:54] ehh.. :p === hunger_ [n=hunger@p54A61489.dip0.t-ipconnect.de] has joined #ubuntu-motu [07:57] JohnnyMast: I picked this program because it's small and easy, and I don't feel like figuring out this maven thing ;-) [07:58] well you could depend on the package, how important is it ? [07:59] JohnnyMast: I could depend on ant and nant, but not on maven and maven2. [08:00] but you could reconment it for later [08:00] because i get from this both arn on debian ? [08:00] *arnt [08:00] What happens if you choose to build an {ant,nant,maven,maven2} file is you get an error because child process {ant,nant,maven,maven2} couldn't be executed [08:01] JohnnyMast: maven and maven2 aren't in Debian [08:01] well if you depend it will only fail on maven and maven2 [08:02] well thats why i sayed you could reconment it and see if its possible to add the packages later on === at1as [n=at1as@24-247-15-243.static.aldl.mi.charter.com] has joined #ubuntu-motu [08:02] but then again, should I depend on it? Most people won't want to install nant and ant [08:03] could you convince upstream to gracefully handle a missing binary? [08:04] jamessan|work: what is gracefully? [08:04] maybe they do already [08:04] Hieronymus: "goed afhandelen" [08:04] JohnnyMast: I know what the words mean, just not what jamessan|work means [08:05] Hieronymus: having them detect that the binary is missing and give a nice message instead of just failing [08:05] If they already do that, then I'd say you could package it as is and Recommend the build systems [08:05] http://members.home.nl/jeroen-91/temp/Schermafdruk-Fout.png [08:06] basically it says 'error, you can't execute target build, because child process ant failed' [08:06] that seems to be that path that file-roller took. the common archival formats are depended on and the less common ones are just recommended [08:07] jamessan|work: okay, I'll stick with recommended [08:07] yeah, I wouldn't call that an extrememly user-friendly error message, but they may argue that it is good enough for people that are attempting to compile software [08:07] but what about maven and maven2? Can I recommend them even though they don't exist in debian and ubuntu (yet) [08:08] You could mention that they are supported in the long package description and when/if they are included in Debian you would include them in the recommendations [08:08] s!Debian!Debian/Ubuntu! [08:09] in fact, I'd highly recommend taking a look at "apt-cache show file-roller" for inspiration === kerosin [n=kerosin@dslb-084-058-206-164.pools.arcor-ip.net] has joined #ubuntu-motu [08:14] i have a maybe stupid question: if i create a package with a c++ library and application on a 32 bit machine, will it run also on a athlon64 machine? [08:15] kerosin: no [08:15] you'd have to recompile it for the athlon64 === ogra [n=ogra@ubuntu/member/ogra] has joined #ubuntu-motu === selinium [n=selinium@80-193-16-239.cable.ubr02.sout.blueyonder.co.uk] has joined #ubuntu-motu === Kyral [n=kyral@sclab-166-10933.sclab.clarkson.edu] has joined #ubuntu-motu === lucas [n=lucas@d80-170-83-118.cust.tele2.fr] has joined #ubuntu-motu [08:36] hi [08:36] I'm looking for a sponsor for bug #5035 [08:36] Malone bug #5035: ruby (Ubuntu) - shared library installed to incorrect directory on amd64 In: libgettext-ruby (Ubuntu), Severity: Normal, Assigned to: MOTU Reviewers Team, Status: New https://launchpad.net/bugs/5035 [08:36] there's a debdiff attached. the fix is a one liner, but the bug renders the package unusable [08:37] (on amd64) === trulux [n=lorenzo@unaffiliated/trulux] has joined #ubuntu-motu === Mez [n=Mez@217.65.151.139] has joined #ubuntu-motu [08:44] lucas: I think you should use "Close malone #5035" in you debian/changelog [08:44] Malone bug #5035: ruby (Ubuntu) - shared library installed to incorrect directory on amd64 In: libgettext-ruby (Ubuntu), Severity: Normal, Assigned to: MOTU Reviewers Team, Status: New https://launchpad.net/bugs/5035 [08:44] *Closes [08:45] it won't break the fix :) [08:45] I'll add a note to the bug, so the reviewer will know he has to add the closes line [08:49] ping whiprush === marcin [n=user@194.114.146.58] has joined #ubuntu-motu === selinium [n=selinium@80-193-16-239.cable.ubr02.sout.blueyonder.co.uk] has joined #ubuntu-motu === wjb [n=warren@c220-237-178-175.lowrp1.vic.optusnet.com.au] has joined #ubuntu-motu === selinium_ [n=selinium@80-193-16-239.cable.ubr02.sout.blueyonder.co.uk] has joined #ubuntu-motu === ajmitch rages against firefox & windows [09:11] Hieronymus: we don't have to add the closes line in changelogs [09:11] that's done in debian because uploads can automatically close the bugs [09:11] it can be good to mention it, certainly [09:12] ajmitch: I know, I thought Ubuntu'd do that to === Kyral [n=kyral@hamlin-166-21999.hamlin.clarkson.edu] has joined #ubuntu-motu === ivoks [n=ivoks@ubuntu/member/ivoks] has joined #ubuntu-motu [09:14] it might happen when we shift to launchpad for uploads [09:14] but not yet === zenrox [n=zenrox@71.115.198.118] has joined #ubuntu-motu === ivoks_ [n=ivoks@161.53.50.215] has joined #ubuntu-motu === kerosin_ [n=kerosin@dslb-084-058-226-164.pools.arcor-ip.net] has joined #ubuntu-motu === plugwash [i=plugwash@p10link.net] has joined #ubuntu-motu === LaserJock [n=mantha@lambda.chem.unr.edu] has joined #ubuntu-motu === lllmanulll [n=manu@dan75-4-82-239-58-38.fbx.proxad.net] has joined #ubuntu-motu === Tonio_ [n=tonio@tonio.planetemu.net] has joined #ubuntu-motu [09:51] hi [09:52] hello === raphink [n=raphink@gra86-1-82-239-88-236.fbx.proxad.net] has joined #ubuntu-motu === Mez [n=Mez@ubuntu/member/mez] has joined #ubuntu-motu === ompaul [n=ompaul@213-202-137-250.bas502.dsl.esat.net] has joined #ubuntu-motu === marcin [n=user@194.114.146.58] has joined #ubuntu-motu === cyberix [n=cyberix@hoas-fe36dd00-251.dhcp.inet.fi] has joined #ubuntu-motu [10:06] Have you seen http://www.netsplit.com/software/gnome-space-chart/ === zyga [n=zyga@chello084010109182.chello.pl] has joined #ubuntu-motu [10:08] if it's yet another new candidate for packaging, add it to UniverseCandidates [10:08] if keybuk doesn't package it himself [10:19] ajmitch sorry about yesterday [10:21] ok [10:21] didnt mean it that way :| [10:23] ajmitch: could you review plotdrop again? I fixed the -stamp issue, I believe. [10:23] not right not [10:23] not right now, I mean === Hirion [n=hirion@draugr.de] has left #ubuntu-motu [] [10:26] ajmitch: well, just whenever you can, I'm not in a big hurry, but I just wanted you to know that it is waiting there for you :-) [10:26] or any other MOTU :) [10:27] ajmitch: yes, for sure. === cassidy [n=cassidy@f1-pc174.ulb.ac.be] has joined #ubuntu-motu [10:37] hmm, this stinks. Debian got rid of the wxwindows2.4 version that the Ubuntu package was based on so the MoM debdiffs are for the previous version (stable) and are 1.5MB [10:37] O_O [10:37] LaserJock: so don't rely on MoM output [10:37] just look at the ubuntu changes & apply the ones that are needed manually [10:37] yeah, but it makes it harder to see what the ubuntu changes were [10:37] nah [10:38] changelogs :) [10:38] if the changelogs are good ;-) [10:38] sure [10:38] this is encouragement for you to write good changelogs in future [10:39] for sure === ogra_ [n=ogra@p5089DB99.dip.t-dialin.net] has joined #ubuntu-motu === ogra__ [n=ogra@p5089DB99.dip.t-dialin.net] has joined #ubuntu-motu [10:40] hmm, changelog looks good. shouldn't be too bad then === ajmitch gets bored & does a blind dist-upgrade [10:42] ajmitch: if you are really bored, I have 4 simple syncs/merges and one bug with patch to review ;) === Gazer [n=gazer@ADSL-200-59-116-70.capfed2.uolsinectis.com.ar] has joined #ubuntu-motu [10:49] what is the difference between := and = in debian/rules ? [10:49] debian/rules is a makefile [10:49] so the GNU make manual should have the answer [10:50] it's an immediate assignment vs non-immediate. [10:50] if I remember correctly, it has to do with how rules are overriden by included files [10:50] does revu autmaticly build the uploaded packages ? [10:51] Mithrandir and lucas: thanks [10:51] JohnnyMast: no, that's unsafe to do [10:51] since we allow plenty of people to upload to the box [10:51] aah ok thanks [10:52] i saw it will be optional in revu2 [10:52] have a nive evening [10:53] JohnnyMast: it'll be as optional as it is now - except more people (MOTUs) can get a build done [10:53] at the moment people in the right group on the revu server can run pbuilder [10:53] well i can say thats wise [10:54] we decided that building everything that comes in might not be so safe :) === lfittl [n=lfittl@83-65-243-186.dynamic.xdsl-line.inode.at] has joined #ubuntu-motu [10:55] well i can be save even now [10:55] in theory [10:56] sure, but everyone should have built their package before they upload, right? [10:56] if some one has an evil setup.py with back connecting code .. unless the bug is hightly firewalled === bojan [n=bojan@dsl-90-116.utaonline.at] has joined #ubuntu-motu [11:00] if that would be possible there still was the problem of the chroot that was cleaned after the buiild [11:00] the easy way is to just say that we don't autobuild packages [11:00] we have limited resources, both in hardware & developers === marcin [n=user@194.114.146.58] has joined #ubuntu-motu [11:01] yes i do understand that === mmtb_ [n=mmtb@dyd85.neoplus.adsl.tpnet.pl] has joined #ubuntu-motu === dholbach [n=daniel@ubuntu/member/dholbach] has left #ubuntu-motu ["Ex-Chat"] [11:13] hello \sh [11:15] <\sh> hey ajmitch [11:16] <\sh> ajmitch: we got a german translation about ubuntu motu school :) [11:16] I know [11:16] he asked me if it was ok to translate [11:17] <\sh> ajmitch: littlepaul? [11:17] \sh: now we just need a summary & writeup of the last one [11:17] yes [11:17] <\sh> ajmitch: sure :) === mhz [n=mhz_chil@pc-252-84-215-201.cm.vtr.net] has joined #ubuntu-motu [11:32] hm, I thought there was something about the motu school on the wiki [11:34] yeah i was looking for the irc logs, maybe some one has them for me ? [11:34] yes [11:34] see topic in that channel === JohnnyMast joins === Arrogance [n=aks@ottawa-hs-64-26-167-8.d-ip.magma.ca] has joined #ubuntu-motu === littlepaul [n=littlepa@p5084C8C6.dip.t-dialin.net] has left #ubuntu-motu ["...] === cyberix [n=cyberix@hoas-fe36dd00-251.dhcp.inet.fi] has left #ubuntu-motu []