=== Starting logfile irclogs/ubuntu-mozillateam.log === ubuntulog [i=ubuntulo@ubuntu/bot/ubuntulog] has joined #ubuntu-mozillateam === Topic for #ubuntu-mozillateam: Home of Ubuntu Mozilla Team - https://wiki.ubuntu.com/MozillaTeam | Bug Triagers please read: https://wiki.ubuntu.com/MozillaTeam/Bugs/ + https://wiki.ubuntu.com/MozillaTeam/Bugs/Procedures | Firefox trunk package source : https://code.launchpad.net/~mozillateam/firefox/firefox-3.0.dev | Mailing List: ubuntu-mozillateam@lists.ubuntu.com === Topic (#ubuntu-mozillateam): set by Ubulette at Tue Oct 2 20:39:32 2007 === tonyyarusso [n=anthony@ubuntu/member/tonyyarusso] has joined #ubuntu-mozillateam === thiebaude [n=thiebaud@75.138.156.115] has joined #ubuntu-mozillateam [06:50] I have a problem in firefox === idleone_ [n=idleone@c-68-84-51-114.hsd1.pa.comcast.net] has joined #ubuntu-mozillateam === PatrickWeb [n=PatrickW@AMarseille-256-1-65-42.w90-4.abo.wanadoo.fr] has joined #ubuntu-mozillateam === ubotu [n=ubotu@ubuntu/bot/ubotu] has joined #ubuntu-mozillateam === PatrickWeb [n=PatrickW@AMarseille-256-1-174-38.w90-14.abo.wanadoo.fr] has joined #ubuntu-mozillateam [11:51] heya asac [12:13] asac: tell me when you're there [12:13] need to ask you something [12:14] don't ask to ask ;) [12:15] go ahead [12:15] :D [12:15] ok [12:15] I'm reading your istructions [12:15] and I started to work on the new patch [12:16] I did [12:16] 1) added GPC_SUBDIR = gpc to makefile.am [12:16] 2) in configure.in changed gpc/makefile to ${GPC_MAKEFILE} (in AC_OUTPUT [12:16] ) [12:17] asac: now I need to apply the ENABLE_GPC [12:18] variable [12:18] which is already there [12:18] in configure.in [12:18] for the check [12:18] that enables gpc [12:18] AC_ARG_ENABLE(gpc, [12:18] AC_HELP_STRING([--enable-gpc] ,[gpc polygon clipper library] ) ) [12:19] yes [12:19] asac: in fact it was necessary to add --disable-gpc [12:19] to autogen.sh [12:20] yes [12:20] so there wont be a check [12:20] to autgen.sh invocation you mean :) [12:20] and there wont be gpc inside [12:20] yup [12:20] right [12:20] autogen.sh --disab... [12:20] you can test for if test x$ENABLE_GPC != x; then ... [12:21] and set a variable that contains gpc/Makefile if ENABLE_GPC contains a value [12:21] asac: added inside configure.in? [12:21] bluekuja: the problem you have to fix in configure.in is that AC_OUTPUT currently always contains gpc/Makefile [12:21] asac: yeah [12:22] we dont have a gpc folder anymore [12:22] so you check if gpc is enabled and only then add that to AC_OUTPUT [12:22] i would replace the gpc/Makefile string with just $gpcmakefile [12:22] and set gpcmakefile=gpc/Makefile if ENABLE_GPC is true [12:22] of course all in configure.in [12:22] asac: there is AM_CONDITIONAL(ENABLE_GPC,[test xyes = x$enable_gpc] ) too [12:22] just after the check, of course.. [12:23] ok then you can just do [12:23] if test test xyes = x$enable_gpc; then gpcmakefile=gpc/Makefile; done [12:23] remove one |test| of course [12:24] added it [12:25] to configure.in [12:25] GPC_SUBDIR = gpc [12:25] [12:25] asac: is still needed? [12:25] also we have [12:25] AC_OUTPUT( [12:25] Makefile [12:25] libagg.pc [12:25] ${GPC_MAKEFILE} [12:26] inside configure.in [12:26] as well [12:26] yeah [12:26] give it a try [12:26] ok [12:26] patch added [12:26] GPC_SUBDIR is not needed in configure.in [12:26] you just can do that in Makefile.am [12:26] by [12:26] yup [12:26] if ENABLE_GPC [12:26] GPC_SUBDIR = gpc [12:26] endif [12:26] then [12:27] SUBDIRS = .... $(GPC_SUBDIR) ... [12:27] ok [12:30] building [12:41] asac: getting a syntax error [12:42] ./configure: line 20252: syntax error near unexpected token `then' [12:42] ./configure: line 20252: ` if if test xyes = x$enable_gpc;then gpcmakefile=gpc/Makefile; then' [12:42] [12:42] bluekuja: you will figure [12:42] its just a shell script [12:42] double if is definitly wrong [12:42] I dont know [12:42] why there are two "if" [12:42] http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-6.html [12:42] ENABLE_GPC,[if test xyes = x$enable_gpc;then gpcmakefile=gpc/Makefile] ) [12:42] I have this [12:43] where does it get the second if? [12:43] well you changed the AM_CONDITIONAL line [12:43] its just outside [12:43] revert what oyu don [12:43] and do it outside of any AM_ AC_ macro [12:44] k === asac_ [n=asac@debian/developer/asac] has joined #ubuntu-mozillateam [01:11] asac_: configure worked [01:11] but failed on creating makefiles [01:11] config.status: error: cannot find input file: Makefile.in [01:15] asac_: that's because we changed the variable on AC_OUTPUT [01:15] inside configure.in [01:24] bluekuja: you will figure it out ... you probably did something wrong [01:25] for AC_OUTPUT [01:28] asac: AC_OUTPUT in configure.in file [01:28] got only [01:28] ${GPCMAKEFILE} [01:28] added [01:28] instead of using gpc/makefile [01:30] that's the only change I made there [01:39] does it work if you set GPCMAKEFILE = gpc/Makefile manually? [01:39] let me see [01:49] asac: nope, doesnt work... [01:50] I added GPC_MAKEFILE=gpc/Makefile [01:50] but nothing [01:50] still cannot find input file [01:55] its probably a syntax issue ... try just $GPC_MAKEFILE [01:56] otherwise look in the firefox configure.in ... they dynamically extend the set of used Makefiles [01:56] they just setup a VARIABLE MAKEFILES that contains all makefiles and then use: [01:56] AC_OUTPUT($MAKEFILES) [01:56] i think you can follow that approach easily [02:00] asac: doesnt work, are you sure about ac_output(makefiles)? [02:00] asac: there are something like 15 other makefiles [02:00] maybe it will mess up everything [02:01] asac: maybe he cant find gpc/makefile [02:01] with that variable [02:01] because it's simply does not exist [02:01] bluekuja: the idea is to test whether it works if gpc/Makefile exists [02:01] i thought that its clear [02:01] asac: the point is clear [02:01] and then test if it works if gpc doesn't exist, and GPC_MAKEFILE is empty [02:02] i am sure for AC_OUTPUT($MAKEFILES) [02:02] you just have to assemble MAKEFILES properly [02:03] lunch now ... if you don't find a solution i can do it tomorrow i guess [02:04] but try to play around ... read autoconf documentation et al :) [02:04] asac: also [02:04] without the original patch [02:04] added by rene [02:04] and withot [02:04] my patch [02:04] it doesnt build [02:05] configure.in:144: required file `gpc/Makefile.in' not found [02:05] Makefile.am:1: required directory ./gpc does not exist [02:05] === AlinuxOS [n=vsichi@host72-133-dynamic.16-87-r.retail.telecomitalia.it] has joined #ubuntu-mozillateam === rexbron [n=rexbron@62.6.158.161] has joined #ubuntu-mozillateam [02:26] bluekuja: well thats the issue we want to fix [02:27] asac: wait a minute [02:27] asac: re-adding the gpc dir [02:27] but disabling gpc itself [02:27] is wrong? [02:29] mmm... [02:29] it fails with gpc dir as well [02:32] damn, staying alwais at home it's soo damn boring [02:33] everything for that damn crash [02:33] well ;) ... you can learn autoconf and automake [02:33] lol [02:33] :D [02:34] ... is valuable know-how if you want to do something for real ;) [02:34] asac: yeah, but I definitely cant understand how can I define a variable for a dir that doesnt exist [02:35] it's normal that automake complains [02:35] no [02:35] hmm [02:35] paste your configure.in please === asac back to rc cd testing [02:36] asac: http://paste.ubuntu.com/741/ [02:39] bluekuja: well its obvious that it will fail if you don't have gpc/Makefile for that case [02:39] set GPC_MAKEFILE to nothing and see if it still fails [02:39] k [02:39] if it works you have to set GPC_MAKEFILE only if GPC is enabled [02:41] asac: fails [02:41] GPC_MAKEFILE= [02:42] well how does it fail? [02:42] configure: creating ./config.status [02:42] config.status: error: cannot find input file: Makefile.in [02:42] make: *** [build-stamp] Error 1 [02:42] [02:42] yeah [02:42] still there [02:44] asac: seems that --disable-gpc doesnt work how we want [02:44] asac: and agg checks for gpc [02:44] without finding necessary files [02:44] and fails [02:45] that's why rene removed the check itself [02:45] check removed plus gpc dir removed [02:46] bluekuja: do you see that the last error you get has nothing todo with gpc? [02:47] asac: mmm...yeah, missing makefile.in? [02:47] in ./? [02:47] or I'm on a wrong way? [02:48] ok ... lets forget about the configure.in stuff ... just strip everything from gpc/ directory _except_ Makefile.am ... and just fix the top level Makefile.am to not contain gpc in SUBDIRS [02:49] the gpc/Makefile.am probably doesn't have a licensing issue [02:49] asac: you mean pushing everything from gpc/ to ./? [02:50] or removing every gpc dir file [02:50] except [02:50] the makefile.am? [02:50] yeah, [02:50] let me do it [02:53] building [02:54] asac: works [02:56] built twice in a row succesfull [02:56] as well [02:58] asac: why we tried to work on the configure.in file if not needed? [03:00] sounds cleaner to me to remove the whole gpc directory [03:01] asac: so we return back to the origins [03:01] why? [03:01] SUBDIRS should be fixed in the same way that i suggested for the complete fix [03:01] its just a partial fix we do now [03:01] asac: subdirs was fixed in previous patch as well [03:02] -SUBDIRS = gpc src font_freetype font_win32_tt include examples [03:02] +SUBDIRS = src font_freetype font_win32_tt include examples [03:02] this was already done [03:02] asac: removing the entire gpc folder will get back to the latest upload [03:02] yes thats wrong [03:03] i repeated how to fix Makefile.am multiple times [03:03] +SUBDIRS = src font_freetype font_win32_tt include examples [03:03] +GPC_SUBDIR = gpc [03:03] +if ENABLE_GPC [03:03] +endif [03:03] +then [03:03] +SUBDIRS = $(GPC_SUBDIR) src font_freetype font_win32_tt include examples [03:03] this way, I know [03:04] yeah ... but just with proper syntax/semantic [03:04] you can send it upstream as well if done [03:04] asac: so changes to the CURRENT branch are: [03:04] 1) makefile.am fix (like I pasted you now) [03:05] replace the gpc patch by just a patch to fix SUBDIRS in Makefile.am [03:05] k [03:05] asac: can you please explain me [03:05] why working on configure.in [03:05] was the wrong way to work? [03:07] its not the wrong way ... its good to have, but is not essential to fix our issue in an upstream suitable fashion ... you can look into this later if you have time [03:07] the perfect fix would do both: fix Makefile.am + configure.in ... so you can just remove the complete gpc/ directory [03:07] just fixing Makefile.am is sufficient to satisfy our requirements in a way that can be used upstream as well === |bluekuja| [n=andrea@host207-142-dynamic.48-82-r.retail.telecomitalia.it] has joined #ubuntu-mozillateam === asac back to cd testing [03:09] <|bluekuja|> damn, I lagged [03:09] <|bluekuja|> asac: gonna ping you when branch is pushed [03:11] asac: mmm...it fails with that makefile.am change [03:11] I posted you above [03:12] asac: http://paste.ubuntu.com/742/ [03:13] I should use fi [03:13] not endif [03:13] let's see [03:14] well the syntax is wrong [03:15] look in other Makefiles to get an idea how it looks [03:15] i think its even in the same Makefile.am where you can see how if works [03:15] yep [03:15] syntax wrong [03:15] there are examples in the same package [03:16] asac: right one is http://paste.ubuntu.com/743/ [03:16] using this atm [03:16] and buildinh [03:17] looks better [03:17] you maybe can use [03:17] SUBDIRS = $(GPC_SUBDIR) $(SUBDIRS) [03:17] but then you have to define the first subdirs [03:17] with [03:17] SUBDIRS := src font_freetype ... [03:17] i guess [03:18] yup [03:18] let me do it [03:18] let's see if it works this way first [03:22] asac: mmm...doesnt work [03:22] also if the syntax is correct [03:22] same error, makefile.in [03:23] your orig probabyl doesn't have the right files ... the approach has changed [03:23] asac: I have no orig file atm [03:23] working with dpkg-buildpackage [03:23] directly on the source [03:24] so I take the branch [03:24] add the patch [03:24] and build [03:29] asac: makefile.in problem wont leave us in peace [03:29] I guess [03:29] :P [03:34] asac: seems that configure.in file was ok before [03:34] makefile.am with those changes [03:34] mess up everything [03:45] asac: should I fix only the SUBDIRS variables [03:45] removing gpc [03:45] ? === asac_ [n=asac@debian/developer/asac] has joined #ubuntu-mozillateam [03:47] asac: ? [03:49] its you who sets the standard of what you want in your packages ... making SUBDIRS generic should be a simple task imo ... but i can upload what is currenlty in bzr as well [03:49] asac: problem is using GPC_ENABLE variable [03:49] FTBFS [03:50] in makefile.am [03:50] almost certainly a syntax issue then [03:50] how does it fail? [03:50] config.status: error: cannot find input file: Makefile.in [03:50] make: *** [build-stamp] Error 1 [03:50] [03:51] and my patch is [03:51] http://paste.ubuntu.com/751/ [03:53] asac: it doesnt look like a syntax issue then [03:53] it is [03:54] you use sh syntax in makefile [03:54] look for examples in that package [03:56] found an example [03:56] let me try that syntax [04:00] asac: I used another syntax and keep failing [04:01] http://paste.ubuntu.com/752/ [04:01] I checked abother makefile.am [04:01] for it [04:01] so cannot be wrong [04:02] hi [04:02] bluekuja, the "if" line is wrong [04:03] y? [04:03] +if ENABLE_GPC [04:03] +SUBDIRS = $(GPC_SUBDIR) src font_freetype font_win32_tt include examples [04:03] +endif [04:03] Ubulette: why its wrong? [04:04] could be ifdef $(ENABLE_GPC) or something else depending on what ENABLE_GPC contains [04:04] Ubulette: if is an automake AM_CONDITIONAL feature [04:04] oh, I just read the pastebin.. not much context there [04:05] bluekuja: check in config.status if ENABLE_GPC is defined [04:05] but you don't say how it fails so its just blind guessing [04:06] configure: creating ./config.status [04:06] config.status: error: cannot find input file: Makefile.in [04:06] make: *** [build-stamp] Error 1 [04:06] [04:06] alwais same error [04:06] thats a configure issue [04:06] you probably didn't clean it up properly after your experiments [04:07] asac: now I re-grab the branch [04:07] I add the patch [04:07] and I build [04:07] yeas [04:08] (patch= the one on pastebin) [04:12] try to not use a variable [04:13] if that still doesn't work ... actually you don't need to use a variable if you do it the way you do (e.g. duplicating the subdirs line) [04:13] asac: what should I use then? [04:14] anything that works ;) [04:15] oh^^ [04:16] my hints were just suggestions to improve it ... whenever you say you are happy i can upload ... unless there is really something critical [04:16] asac: let's see if this time work [04:17] asac: lets delete the gpc variable then [04:17] +if ENABLE_GPC [04:17] +SUBDIRS = gpc src font_freetype font_win32_tt include examples [04:17] +endif [04:17] should be fine? [04:18] asac: without using GPC variable directly [04:18] probably [04:18] be sure that gpc/Makefile.am exists [04:19] and try to figure out where gpc was initially build (e.g. after or before src?) [04:19] asac: so it's ok for you to have gpc/Makefile.am? [04:20] you said me it's not clean [04:21] bluekuja: i said its not clean, but better to keep it than patching all things in a way that will never go upstream :) [04:21] clean would need configure.in [04:21] yeah [04:21] ok, I add gpc/Makefile.am [04:21] and I use that patch [04:21] keep that in orig ... and fix debian/rules ... then its just a nice 1 line patch [04:21] try SUBDIRS += gpc [04:21] instead of duplicating all dirs [04:22] debian/rules why? [04:26] asac: for disable-gpc you mean? [04:27] yes [04:28] ok builds fine [04:28] asac: what I did is [04:28] 1) adding the patch for makefile.am [04:29] you can find it at http://paste.ubuntu.com/754/ [04:29] 2) added gpc/Makefile.am [04:29] 3) fixed debian/rules [04:29] 4) built [04:30] 5) built twice in a row [04:31] asac: are these small steps right? [04:32] if yes, I push and everything is ready [04:33] yes [04:33] ok [04:59] asac: pushed [05:00] asac: can you please branch everything out and give it a try? [05:00] sure [05:00] thanks alex [05:01] bluekuja: upstream branch isn't updated [05:01] asac: I added gpc dir to debian only [05:01] should I add it to upstream as well? [05:01] anyway merging those two branches will end up in having it at the end [05:02] but if you want me to push gpc/Makefile.am there too, is ok [05:02] bluekuja: of course to upstream only [05:02] then merge it over to debian [05:03] asac: aww, sent to debian already [05:03] you don't merge from debian to upstream but the other way [05:03] let me add it manually [05:03] to upstream [05:03] try merge upstream to debian afterwards ... to see if bzr resolves th conflict smart fashion [05:04] ok [05:07] asac [05:07] R gpc/ => gpc.moved/ [05:07] Conflict adding file gpc. Moved existing file to gpc.moved. [05:07] 1 conflicts encountered. [05:09] asac: seems ok then [05:09] gpc is on debian as well [05:09] other files are N [05:09] so same for both branches [05:10] please resolve the conflict now [05:10] (so its done in turn of a merge associatable with this upload) [05:11] asac: I should re-remove gpc folder [05:11] and merge again then [05:11] figure it out ... i hate resolving these "added in two places" conflicts [05:11] i think you have to remove the gpc.moved dir ... or bzr mv it back [05:12] yeah [05:12] lets see [05:24] asac: resolved [05:25] good [05:25] asac: after merging, should I push? [05:25] if it makes sense yes [05:26] added gpc [05:26] added gpc/Makefile.am [05:26] deleted gpc [05:26] deleted gpc/Makefile.am [05:26] [05:26] asac: seems that it doesnt make sense [05:26] so I keep them resolved here [05:26] locally [05:26] that doesn't help [05:27] resolve them in a way that fixes it ... otherwise i cannot build the package from bzr [05:27] because --merge will fail [05:27] asac: let me see if it fails [05:29] asac: builds ;) [05:30] try there [05:32] asac: just use a correct orig [05:32] with gpc/Makefile.am [05:32] only [05:32] and will build fine [05:34] dpkg-deb: costruisco il pacchetto `libagg-dev' in `../libagg-dev_2.5+dfsg-2_i386.deb'. [05:34] [05:34] Cleaning build dir: ../build-area/agg-2.5+dfsg [05:37] asac: works fine there? [05:46] bluekuja: it works but its a pain ... you should sureley resolve the conflict properly ... otherwise it will come back on next update et al [05:46] asac: why pain? [05:46] gone like a charm here [05:46] because you cannot merge new upstream revisions now [05:46] true [05:47] try bzr merge ../libagg.upstream ... it will result in the conflict. better resolve that now then later [05:47] nothing to do [05:47] I get [05:48] and [05:48] All changes applied successfully. [05:48] [05:48] no conflicts here [05:48] then you haven't pushed all? [05:49] 3 revisions for upstream [05:50] and 11 for debian [05:50] merging should make a rev 12 [05:50] for debian [05:50] 12 plus 3 of upstream [05:50] 1.1.1 [05:50] 1.1.2 [05:50] and 1.1.3 [05:52] bluekuja: you haven't pushed the merge [05:52] bluekuja: please do that then [05:52] asac: ok [05:52] give me a small second [06:01] asac: done, try now please [06:05] asac: ok everything is fine then [06:08] ok ... doing test build [06:09] perfect === Starting logfile irclogs/ubuntu-mozillateam.log === ubuntulog [i=ubuntulo@ubuntu/bot/ubuntulog] has joined #ubuntu-mozillateam === Topic for #ubuntu-mozillateam: Home of Ubuntu Mozilla Team - https://wiki.ubuntu.com/MozillaTeam | Bug Triagers please read: https://wiki.ubuntu.com/MozillaTeam/Bugs/ + https://wiki.ubuntu.com/MozillaTeam/Bugs/Procedures | Firefox trunk package source : https://code.launchpad.net/~mozillateam/firefox/firefox-3.0.dev | Mailing List: ubuntu-mozillateam@lists.ubuntu.com === Topic (#ubuntu-mozillateam): set by Ubulette at Tue Oct 2 20:39:32 2007 [07:27] (Ubulette/#ubuntu-mozillateam) you have to rename it [07:27] (Ubulette/#ubuntu-mozillateam) otherwise md5 or size wont match [07:32] Ubulette: asac will just have to upload the tarball [07:32] bzr bd creates [07:32] ;) [07:33] but unfortunately he went out [07:35] if the tarball for agg_2.5+dfsg-1 has been changed, you cannot reup for agg_2.5+dfsg-2; you have to bump version [07:35] like agg_2.5+dfsg+1-1 [07:37] Ubulette: huh? [07:37] Ubulette: bzr bd creates a tarball with agg_2.5+dfsg2 [07:37] *-2 [07:37] it wasnt uploaded [07:37] along with the files: [07:38] agg_2.5+dfsg-2.dsc [07:38] agg_2.5+dfsg-2.diff.gz [07:38] libagg-dev_2.5+dfsg-2_amd64.deb [07:38] so dak gets the orig already in the archive [07:38] which is wrong [07:38] because it has been changed === rexbron [n=rexbron@62.6.158.161] has joined #ubuntu-mozillateam === harLuad [n=lol@ADijon-257-1-99-41.w86-218.abo.wanadoo.fr] has joined #ubuntu-mozillateam [07:47] hi [07:47] I'm unable to connect on secured site (like gmail) since an upgrade of firefox (2.0.0.7).. The message ask me if PSM is correctly installed. A complete reinstall of firefox change nothing. Anybody have an idea ? [09:24] bluekuja: yes right you have to bump the upstream version to dfsg1 [09:24] the dfsg one was uploaded before, right? [09:52] asac: back [09:53] asac: I've talked with myon too [09:53] asac: so dfsg1-2? [09:55] dfsg2-1 [09:56] makes more sense [09:56] Ubulette: why asac said dfsg1? [09:56] or dfsg1-1 [09:56] mm [09:56] as you prefer [09:56] -1 because it's the 1st round with the new tarball [09:57] Ubulette: we had another dfsg tarball [09:57] before this one [09:57] agg (2.5+dfsg-1) [09:57] was previously uploaded revision [09:58] dfsg is part of the version so append something after it, either 1 or 2 [09:58] then -1 for the revision [09:58] Ubulette: and for a second revision? [09:58] on a different tarball [09:58] but still with dfsg? [09:58] 2.5+dfsg-1 => (now) 2.5+dfsg2-1 => (later) 2.5+dfsg2-2, 2.5+dfsg2-3 [09:59] then 2.6+dfsg-1 again [09:59] Ubulette: thanks for the hint, it's not usual working with dfsg stuff [10:00] 2.5+dfsg2-1 now then [10:00] it's not different from +cvs [10:00] Ubulette: anyway tarball gets +dfsg only [10:00] without a revision [10:01] and that's why dak complains [10:01] with 2.5+dfsg2-1, the tarball will end in dfsg2 [10:01] yeah [10:01] that's what you want [10:01] yup [10:01] (i know) :) [10:02] now I wait asac and I push the update to the branch [10:02] so he can upload [10:07] damn, ppa is slow [10:07] 1 or 2 hours to start the build [10:07] awww [10:07] for 10 sec of build :P [10:07] :D === Ubulette_ [n=Ubulette@APuteaux-153-1-83-151.w86-205.abo.wanadoo.fr] has joined #ubuntu-mozillateam === ubotu [n=ubotu@ubuntu/bot/ubotu] has joined #ubuntu-mozillateam === gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #ubuntu-mozillateam [10:47] bluekuja: so what did you came up with? === idleone__ [n=idleone@c-68-84-51-114.hsd1.pa.comcast.net] has joined #ubuntu-mozillateam === rexbron [n=rexbron@62.6.158.161] has joined #ubuntu-mozillateam [11:17] hm, with the latest webrunner, my lp webapp is now usable [11:38] asac: still here? [11:39] yeah [11:39] asac: great [11:39] asac: I bump version to dfsg1-1 [11:40] and then should be ready for upload [11:40] right? [11:40] bluekuja: which version is currently in debian? [11:40] 2.5+dfsg-1 [11:40] ok thats correct then [11:41] asac: give me a while and it's live on the branch [11:55] asac: pushed [11:55] asac: just remember to include new orig as well [12:04] asac: works fine? [12:06] building [12:06] great [12:08] uploading [12:08] :) [12:08] asac: I talked with myon some hours ago [12:09] asac: about identification stuff [12:09] outcome? [12:09] asac: he said me I can start the NM, do every test but when creating the account, I should have a DD to sign my key [12:10] yes [12:10] so it's not necessary to have it now [12:10] thats true [12:10] its just uncommon [12:10] yeah [12:11] but he said I'll have to organize [12:11] in the next month [12:11] but things can go fast and being at the DAM level without key would make me shiver [12:11] asac: it's hard for me to get a DD here [12:11] I have no car [12:11] bluekuja: why next month? [12:11] *months [12:12] visit turin :) [12:12] what there will be in turin?? [12:12] a DD? [12:12] no idea [12:12] oh^^ [12:12] I've explained him [12:13] my situtation [12:13] and he said [12:13] [19:48:45] can an application start the NM also if the key has not been signed yet? [12:13] [19:48:54] e.g having it signed in a second moment [12:13] [19:49:01] yes, as long as the key is signed at some point [12:14] well, i just say that it should not be different if you get the key soon ... or later ... just that you will take the risk to get stuck at DAM stage because you never got it done :) [12:15] asac: yeah, but I promise I'll organize myself on a holiday period [12:15] to get a DD [12:15] ;) [12:15] I need to talk with my father [12:15] and he should bring me around italy [12:15] i don't need your promis :) ... promise that to yourself ;) [12:15] he'll kill me [12:15] but that's not a problem [12:15] how about train? [12:15] :) [12:15] yeah, train would be ok too [12:15] there will be a meeting [12:16] in Siena [12:16] sounds good [12:16] and I'll be there [12:16] so I can ping enrico [12:16] to come [12:16] and get my key signed [12:16] there will be a keysigning party as well [12:17] asac: who signed your key? [12:17] when you started NM [12:17] (long time ago) [12:17] someone here :) [12:18] i am not the great key-signer either [12:18] but i would have travelled by train et al to get it :) [12:18] fortunately i live in a big city, so there are a few DDs here [12:19] you're lucky, italian DDs are quite inactive except for giskard and enrico [12:19] so it's hard to find one available [12:20] then contribute a lot and request sponsorship to travel to debconf next year [12:20] :) [12:20] still on south america? [12:20] or where? [12:20] why still? [12:20] its somewhere else every year [12:20] this year was england [12:20] next year its argentina [12:20] ? [12:20] ah yeah, was on dublin [12:20] no idea actually [12:20] yeah [12:20] argentina [12:21] that's a long distance [12:21] you will be there? [12:21] depends [12:21] asac: agg accepted [12:21] ;) [12:22] asac: from? [12:22] two many things to tell ... and even more that i don't know about yet ;) [12:22] I would like to meet you [12:22] in the future [12:23] yeah :) ... who knows, maybe next UDS will be in italy :) [12:23] would be great! [12:23] asac: my curiosity [12:23] but i doubt it ;) [12:23] how to make a binary upload? [12:23] like debian does [12:23] just without arguments :) [12:23] dpkg-buildpackage -rfakeroot [12:24] will do the trick [12:24] and for uploading? [12:24] if you have messed up your versioning and need an orig for other debian revision than -1 you can also pass -sa [12:24] bluekuja: uploading? you just dput the .changes file ... as usually [12:24] and it uploads the .deb as well? [12:24] yes try to build like above ... look at .changes file [12:25] if you don't add -S ... binaries will be included by default [12:25] lol yeah! [12:25] dput uploads everything in changes file ;) [12:26] thanks for this, was keeping asking me [12:26] "hey, how he pushes binaries too?" [12:27] asac: ok, everything clear now [12:27] asac: tomorrow, I'll compile the request form [12:27] and I'll ping you at some point of the day [12:27] adding a note to my TODO [12:27] having key signed [12:27] priority = high [12:27] :) [12:28] hehe [12:28] request form? [12:28] yeah, surname/name/mail [12:29] nm.debian.org [12:29] ah right [12:29] then i need to advocate you [12:29] ok [12:29] asac: yeah :) [12:29] asac: which mail should I use? [12:29] the one where my packages are registered? [12:29] i would use your personal one [12:29] usually yes ... but it doesn't matter much i guess [12:30] but using a role email isn't good either imo [12:30] asac: yeah, you're absolutely right [12:30] I'll use gmail one then [12:30] I hope they'll find my QA page [12:30] ^^