=== pace_t_zulu_ is now known as pace_t_zulu === kklimonda1 is now known as kklimonda [02:48] Ubuntu native packages are patchless? I get that from what-patch on ubiquity-slideshow-ubuntu, and no patch signs in debian/changelog [02:49] Rcart, I would think so, since there is no upstream orig to patch [02:51] psusi: Maybe. I'll fix some typos in bug 725217 [02:51] Launchpad bug 725217 in ubiquity-slideshow-ubuntu (Ubuntu) "Typos in Edubuntu 11.04 slideshow" [Undecided,New] https://launchpad.net/bugs/725217 [02:54] psusi: Would be enough to mention it in changelog, right? [02:54] Rcart, enough what? [02:57] enough to mention that I fixed some typos [02:58] hi everyone! I just fixed a small crasher bug in a ruby program, part of the rbbr package.. is it best to try patch the ubuntu package or try to send the patch upstream? [03:10] lesliev: I would send it to Debian, I understand that is better to request a merge (: [03:14] Rcart, any hints on how to do that? [03:16] should I find a debian maintainers IRC channel? a forum? a website? I am not running Debian so I wouldn't be able to build a debdiff [03:16] lesliev: file a bug in Launchpad, report it to Debian too (using submittodebian) and mention the LP bug, then you should add a bugwatch to the LP bug report [03:16] ok [03:18] kthxbai! [03:18] hey Rcart [03:19] highvoltage: Hello. [03:21] Rcart: I guess that's something we should handle as part of translations instead [03:23] (referring to bug 725217) [03:23] Launchpad bug 725217 in ubiquity-slideshow-ubuntu (Ubuntu) "Typos in Edubuntu 11.04 slideshow" [Undecided,New] https://launchpad.net/bugs/725217 [03:23] highvoltage: about ubiquity-slideshow-ubuntu ? If so, I asked (well, a contact did it for me) in -translators and there were no response [03:24] highvoltage: But I also think that it should be handled in tranlations team [03:28] highvoltage: I'll un-assign. Thanks for the comment. [03:29] Rcart: you're welcome [03:30] Rcart: there should be new slideshows soon though (at least for edubuntu) [03:33] highvoltage: Surely. There's something about it in the changelog === milli` is now known as milli [04:19] How can I apply the debdiff uploaded on a bug and check whether its working or not? [04:25] c2tarun: do you have more context around your question? [04:26] c2tarun: without knowing more, i'd say: apt-get source ; patch -p1 < debdiff.patch ; dpkg-buildpackage [04:26] but that's very broad and handwavey [04:27] achiang: suppose anyone worked on a bug and uploaded a debdiff b/w the source packages. And I want to check whether his debdiff is working or not? [04:27] c2tarun: right, ok -- so get the current source package, and use patch(1) to apply the debdiff [04:28] c2tarun: i mean, that's how i would do it. there are probably smarter ways [04:28] achiang: well I dont know any way so any way is smart for me ;) [04:29] c2tarun: a debdiff is just a normal patch, so you can use the patch command to apply it. 'man patch' for more details there [04:29] achiang: what is num denotes here? [04:29] I mean digit after p [04:29] c2tarun: but again, in broad terms, you a) save the debdiff somewhere, say, foo.debdiff and then b) patch -p1 < foo.debdiff [04:30] c2tarun: The digit tells patch how many path elements to strip [04:30] -p0 means don't strip any, -p1 says drop the first [04:30] c2tarun: there are several styles to generate a diff. some people generate from *within* the source tree, some generate from outside the source tree [04:31] c2tarun: depending on *where* you generate the diff, you will have different paths to the filename you want to actually patch [04:31] achiang: what do you mean by within or outside the source tree, normally .dsc are outside the source tree (I guess) [04:31] c2tarun: so, as StevenK says, you use the -pN arg to strip out the paths you don't want, so that eventually, the paths match up [04:32] c2tarun: here's a very short example: say my package is foo, and i am in: /home/achiang/Projects/foo/ [04:32] i want to modify bar.c [04:32] so i say: [04:32] cp bar.c bar.c.old [04:32] # hack on bar.c [04:32] diff -Nurp bar.c.old bar.c > my-lovely-patch [04:33] that is what i mean by making a diff from *within* the source tree [04:33] now contrast a different method: [04:33] $ pwd [04:33] /home/achiang/Projects [04:33] cp -a foo foo.old ; ls -F [04:33] foo/ foo.old/ [04:34] same thing, hack on foo/bar.c [04:34] now i can say: [04:34] diff -Nurp foo.old/bar.c foo/bar.c > my-lovely-patch [04:34] and that generates essentially the same diff, but the path on how you get to bar.c is slightly different [04:35] so on the other end, when you want to apply the patch, you need to pass -pN appropriately, so that patch knows how to get to bar.c [04:35] generally, debdiffs are more similar to the second method, so you typically just say -p1 [04:35] achiang: ok, got it :) [04:35] achiang: thanks for the example :) [04:36] anyway, hopefully that gives you enough of a conceptual understanding so you can figure out how to recover when a patch doesn't apply (when you think it should) [04:36] the details are in the patch and diff man pages. :) [04:36] achiang: sure thanks :) [04:36] np [04:41] can anyone please look at bug 728438 the patch seems to work fine for me but may not be working on sponsors system, What's wrong with the patch? [04:41] Launchpad bug 728438 in clips (Ubuntu) "Package clips 6.24-3 failed to build from source" [Undecided,Incomplete] https://launchpad.net/bugs/728438 [05:25] what does this mean in a Makefile LIBS=@LIBS@ [06:02] !makefile [06:10] c2tarun: The make manual is online at http://www.gnu.org/software/make/manual/make.html [06:13] jmarsden: I am reading that manual but stil didn't find anything about @ symbol. can you please help me a big [06:13] big =bit [06:14] Maybe... I'm bust doing something else here... and I am not a make expert at all. I think the @something@ syntax is autotools more than Make... are you seeing that in a Makefile, or in Makefile.am or Makefile.in ? [06:15] s/bust/busy/ :) [06:15] jmarsden: Makefile.in [06:16] Aha. That is not a Makefile :) You said: what does this mean in a Makefile LIBS=@LIBS@ [06:16] jmarsden: but the changes I made in Makefile.in is getting reflected in Makefile, but when changing Makefile all the changes are reset on building [06:16] Now you need to read the autotools docs... let me find a linke for that [06:16] Yes, the Makefile.in is a template for a Makefile [06:16] You need to understand autotools for the details... [06:17] Autotolls Tutorial: http://markuskimius.wikidot.com/programming:tut:autotools/ [06:17] !autotools [06:17] jmarsden: thanks :) [06:18] The real autotools manual / book is elsewhere... one book is free online at http://sources.redhat.com/autobook/ === soren_ is now known as sorne === sorne is now known as soren [08:12] good morning === directhe` is now known as directhex === runasand_ is now known as runasand === KKmos is now known as Kmos === fta` is now known as fta [10:39] Does it make sense to report usability bugs in undocumented parts of programs, or should the existence of undocumented features be reported as a bug instead? === fabo__ is now known as fabo [12:39] Hello, I have a deb file of my program and I would like to submit it to Ubuntu. What do I have to do? [12:41] Anyone? [12:42] cgroza: for new packages, it's generally better to submit them to Debian [12:43] but you can always upload the source package somewhere and have someone look at it [12:43] I'd be surprised if your package was Debian Policy-compliant on the first try :) [12:45] I may need more info [12:45] how do i get it to debian? [12:48] Can anyone please take a look at this debdiff. http://paste.kde.org/6451/ I just added one library to Makefile.in and I got this debdiff so long [12:48] c2tarun: is there any patch system? [12:49] c2tarun: ²why did you not add -lX11 to LIBS? [12:49] ari-tczew: no there is no patch system [12:50] Bachstelze: because I found a line LIBS=@LIBS@ I dont understand it, I tried to read few manuals but still didn't got it. so I added directly. [12:50] cgroza: http://wiki.debian.org/Maintainers [12:51] ok [12:51] thank you [12:51] c2tarun: LIBS=@LIBS@ -lX11 [12:52] ari-tczew: oh.... I'll try that. but what is meaning of @ symbol in Makefiles? [12:52] as you were told already, it's not a Makefile thing [12:52] it's used by autotools [12:54] Bachstelze: ok, its used by autotools, but autotools use Makefile.in as a template to generate Makefile. I guess Makefile.in is written by user. I found @ symbol in Makefile.in. [12:56] ari-tczew: after adding -lX11 to LIBS I am getting the same length debdiff. [12:57] c2tarun: so clean up it manualy [12:57] c2tarun: [12:58] oops [12:58] mMakefile.in is generated by automake, not written by the user [12:59] ari-tczew: there is one more prob, when I tried to apply this debdiff to a fresh new copy it is detecting some previously applied patch, but I dont see any patch in there, though in diff.gz file there are some changes. [12:59] Bachstelze: still I failed to find the meaning of @ symbol :( can you please tell me. [13:00] ari-tczew: I dont understand what do you mean by cleaning manually, do I delete the lines I dont understand why there are there? [13:00] c2tarun: probably changes during build [13:00] c2tarun: keep only that you did on package [13:01] c2tarun: it's really just variable subsitution, @var@ in Makefile.in means that @var@ is rerplaced by the value of var in the written Makefile [13:01] Bachstelze: oh... just that :) and I find some more symbols in there like $^ and $@ what are they? [13:03] you mean $< ? [13:03] those are make special variables [13:03] $@ means the name of the target, $< means the name of the first dependency [13:03] there are more, they're all in the make manual [13:04] Bachstelze: the one there on debian site :( that is 230 pages long manual [13:05] http://www.gnu.org/software/make/manual/make.html#Quick-Reference [13:08] I'm looking at the pâckage, you might need to add dh_autoreconf to your rules files [13:11] Bachstelze: how to add it, I am reading the man page, there is not any thing about how to use, should I simply write it down in rules file? [13:15] Ino, never mind, dh_autoreconf is if you modify configure.in [13:15] which is a bit cleaner than modifying Makefile.in, but I guess Makefile.in will do [13:17] Bachstelze: on modification of makefile.in I am getting fairly huge debdiff and on applying also I am getting reverse patch detected. wait let me show you the debdiff [13:18] you did already ;) [13:18] tumbleweed: around? [13:18] Bachstelze: check this out http://paste.ubuntu.com/575467/ [13:18] ari-tczew: hi [13:19] tumbleweed: hi. could you manage to create a script pull-snapshot-source? [13:19] c2tarun: then yes, it is actually A LOT cleaner to modify configure.in and use dh_autoreconf [13:19] c2tarun: just a sec, I'll do a debdiff and pastebin it so you cna see how it's done [13:19] Bachstelze: sure :) thanks [13:24] tumbleweed, geser: I got this error while requesting sync: http://pastebin.ubuntu.com/575469/ [13:24] does it need bugtracking? [13:25] btw. bug filled successful === yofel_ is now known as yofel [13:34] Bachstelze: ping [13:35] ari-tczew: oh, that should be easy, pull-debian-source already supports snapshot, I just need to make it take version numbers as well as release names === Quintasan_ is now known as Quintasan [13:37] I get all the crud too, I guess autotools regenerates config.guess and config.sub anyway, it should still work if you ditch those changes from your debdiff [13:37] c2tarun: ^ [13:38] crud? [13:38] Bachstelze: oh you mean you are getting almost same debdiff [13:38] yeah [13:39] I mean all the unrelated stuff [13:39] Bachstelze: but after dropping those changes also on applyin it to fresh source code, I am getting some reverse patch error. [13:40] Bachstelze: check this http://paste.kde.org/6452/ [13:42] james_w: what is the address of the page I can check branch import failers on? ubuntu:ruby1.8 branch is ancient [13:43] kklimonda: http://package-import.ubuntu.com/status/ [13:43] thanks [13:44] thanks tumbleweed [13:47] c2tarun: actually, config.sub and config.guess are not regenerated by autotools, they are copied by debian/rules [13:48] Bachstelze: so what should I do? [13:48] Bachstelze: and copied by debian/rules means? rules file is common config.guess and .sub should also b common b/w older and newer version [13:49] c2tarun: read autotools-dev's README.Debian for a background on that situation (although IIRC the recommendations in there are outdated) [13:49] it means that debian/rules copies config.guess and config.sub from /usr/share/misc to the source dir [13:51] Bachstelze: and why is only newer version of rules file doing that? I mean rules are common so it should have been copied in previous version as well, so why the difference? [13:52] (without having followed this whole discussion) easy recommendation is to just strip config.* out of the debdiff. If a package from debian doesn't clean properly, that's not necessarily something we have to fix [13:53] tumbleweed: I tried that, but on applying it to fresh copy of source code I am getting this error http://paste.kde.org/6452/ [13:53] c2tarun: that means Makefile.in is already patched [13:53] are you sure it was fresh? [13:55] tumbleweed: sorry I got disconnected, === tarun is now known as Guest68165 [13:56] tumbleweed: really? pull-debian-source supports snapshot.debian.org already? how? [13:57] ari-tczew: if it can't find the version you want from lp, or a mirror, or the master, it'll go to snapshot.debian.org [13:57] but you can only request releases, not versions [13:57] so I just have to add a way for the suer to request a version [13:58] ari-tczew: look at pull-debian-debdiff, that'll almost always use snapshot.debian.org [13:58] tumbleweed: I imagine that scripts as: $ pull-snapshot-source package version [13:58] ari-tczew: yeah, that's what I intend to do, if version doesn't match a known release name [13:59] aha [13:59] c2tarun: http://paste.ubuntu.com/575486/ this debdiff works fine here [14:01] the new config.guess and config.sub will still appear in the .diff.gz when you build the source package, but nothing you can do about it [14:02] tumbleweed: did you see my traceback from requestsync? I posted it here some minutes ago. [14:02] * tumbleweed reads back [14:03] hmm, I've had similar issues, goes off to poke #launchpad peopel [14:04] woops typo, -lXII... [14:04] Bachstelze: yup :) fixed that and it applied :) [14:05] also, the old debian/rules was doing that as well [14:06] what you're seeing is the difference betwwen config.guess and config.sub now, and as they were the last time the package was built [14:07] which was a long time ago, if you read debian/changelog [14:20] hmm.. when I work on a package update using UDD, should I unapply all patches before merging new upstream version? [14:21] if I don't do that I can't figure out how to deal with patches that don't unapply cleanly. [14:30] heya [14:31] so i have a debian folder in my python project with my control file, rules, etc.... is it possible to set the application to run at startup? [14:31] kklimonda: you are using merge-upstream, right? [14:32] tumbleweed: yes [14:32] kklimonda: I can't remember how I've dealt with this before, but I can't see how unapplying all patches before merging would help [14:33] unless you commit the patch reversal [14:34] tumbleweed: yeah, I'd probably try doing something like that and it wouldn't be nice. [14:34] aah, so, IIRC, after you've merge-upstream-ed, it leavs you with the debuntu-modifications, uncommitted [14:35] so you can bzr revert all the upstream stuff, get the quilt patches to apply, apply them, commit [14:37] what's the point of the revert? [14:37] so you don't have to deal with the conflict,s and fix the patches twice [14:37] (once in the applied versions, once in the patches) [14:38] I thought it would be; quilt pop; merge-upstream; quilt push (and fix conflicts); commit [14:38] Laney: merge-upstream operates on the branch (things that have been committed), not yoru workdir [14:39] oh ok, that is uncool [14:39] but I'm talking from memory, I haven't had to do this in a while [14:39] of course quilt-as-loom will get around all this when that happens :) [14:40] I just avoid 3.0 (quilt) [14:40] or use unapply-patches [14:40] http://raphaelhertzog.com/2010/11/18/4-tips-to-maintain-a-3-0-quilt-debian-source-package-in-a-vcs/ [14:40] if you are working on random universe packages in UDD, yo udon't really get that choice. [14:41] this list is great if you maintain package.. right [14:41] and we keep .pc in bzr [14:41] yeah, I really hate that [14:41] except when we don't [14:41] heh [14:41] we do with 3.0 (quilt), we don't with 1.0 + quilt [14:42] I've worked with transmission packaging in git (that's how debian maintainer keeps it) and it makes much more sense [14:42] it's not as magical [14:42] but feels more solid [14:43] I think patches-applied makes sense when you are maintaining your package in git, and pulling from upstream's git, less so for most MOTU tasks [14:44] if you are doing that though, why bother using quilt at all? [14:44] I wonder about that myself [14:45] * tumbleweed doesn't have any packages like that, I'm hypothesising :) But people in situation slike that seem to be proponents of patches-applied, and it vaguely makes sense [14:45] seems like if you are going to track the packages with quilt then track them with quilt ( and leave them unapplied in the archive )... if you are going to track with git or bzr, then track changes with that and don't bother with quilt [14:46] isn't it why 3.0 (git) format has been created? [14:46] is it used by any package? [14:46] kklimonda: it was NACKed by the ftp-masters [14:48] tumbleweed: no wonder I've heard no news about it - do you remember the reason? or link? [14:48] all I know is that it makes the vcs change log look like a mess when you have changes both to the original source, and bundled as a diff in patches/ and has got to be a needless duplication of effort... [14:49] I've had the dream where every distribution, and every project switches to git and we can just do it all in git.. ;) [14:49] hehehe, amen ;) [14:51] kklimonda: lists.debian.org/87wrrxhlr7.fsf@windlord.stanford.edu [14:53] thanks === jtimberman_ is now known as jtimberman === kim0_ is now known as kim0 [15:32] Is anything wrong with debian bugtracker? I submitted two bugs (one at least half an hour ago) and I didn't got any mail for the bug number. [15:34] micahg: Hello :) What's going on with Wallch, buddy :) ? [15:35] hakermania: sorry, it's been a busy week, will try to take a look over the weekend === psusi` is now known as psusi === shadeslayer_ is now known as shadeslayer [15:38] c2tarun: you sure you sent it from the right address? Did the bug get filed (can you see it on the web interface, under the package you filed it against?) [15:38] tumbleweed: I filed few more by same method. let me check on debian page [15:38] also, I think the BTS does greylisting, so it may take a while before the message is accepted... [15:40] tumbleweed: sure I'll wait :) [15:45] Last day of https://wiki.ubuntu.com/UbuntuDeveloperWeek starting in 15 minutes in #ubuntu-classroom [15:49] micahg: OK, no problem :) Take your time! [15:50] dholbach: any chance you could add me to ubuntu-sponsors? [15:50] kklimonda, sure, just a sec [15:51] kklimonda, done [15:51] thanks === kees_ is now known as kees === didrocks1 is now known as didrocks [16:03] kklimonda: the qwebview designer plugin is going to return soon :) [16:03] debfx: awesome :) === milli is now known as 84XAAB32R === cody-somerville_ is now known as cody-somerville === Bachstel1e is now known as Bachstelze === popey_ is now known as popey === Quintasan_ is now known as Quintasan === dpm_ is now known as dpm === maxb_ is now known as maxb [16:56] If something was originally GNU GPLv2 and a fork was made from it; can the fork be DEP-5 ? === ttx` is now known as ttx === nxvl_ is now known as nxvl [16:57] MTecknology: DEP-5 is a documentation standard, not a license [16:57] or is DEP-5 not a license: I've never seen it before so I'm kind of confused [16:58] oh.. [16:59] micahg: thanks :) === adamhorden_ is now known as adamhorden === tremolux_ is now known as tremolux === _jason is now known as jrib === ampelbein_ is now known as Ampelbein [17:21] ari-tczew: re your requestsync crash: does it happen every time? (I didn't had any sync request to file in the recent past so didn't use requestsync recently) [17:49] geser: I got it once and dunno whether it happens every time - no point to use requestsync anymore ATM. Problem has been resolved. More questions, ask tumbleweed. [17:53] geser: yes, it would happen every time, it was due to a stale WADL cache [17:54] * micahg is still using requestsync [17:55] tumbleweed: is this a problem of requestsync and should it do something about it? [17:55] geser: it's a problem with launchpadlib, they are aware of the issue [17:55] (well there's an open bug) [17:56] is ther use of syncpackage still discouraged by archive admins? [17:56] also fails on maverick backport, so if there are minimum version requirements, they should be specified [17:56] micahg: what fails, and how? [17:56] micahg: I mean that I don't have a demand to use requestsync. It doesn't mean that I don't request syncs anymore. [17:56] * micahg upgrades again so it can fail [17:56] kklimonda: yes [17:58] geser: for the record, bug 714621 [17:58] Launchpad bug 714621 in Launchpad itself "Reevaluate our WADL caching strategy under continuous deployment" [High,Triaged] https://launchpad.net/bugs/714621 [17:59] tumbleweed: weird, it seems to want to work now, last night it was temperamental [17:59] micahg: any recollection what the issue was? [18:01] python backtrace of some sort, I think when polling the packages [18:02] micahg: try requestsync firestarter, does it show you th eduplicate === psusi` is now known as psusi [18:03] (--lp of course) === jhelwig_ is now known as jhelwig [18:03] tumbleweed: I was having some trouble with authorization last night, that could've been it [18:04] tumbleweed: ah, that did it, got a backtrace, do you want to see it? [18:04] micahg: was it something about a missing web_link attribute? [18:04] tumbleweed: yes [18:04] micahg: rm -rf ~/.launchpadlib/*/cache [18:04] and it'll work again [18:05] that's the WADL stuff? [18:05] yeah === didrocks1 is now known as didrocks [18:05] * tumbleweed must run [18:05] tumbleweed: thanks and have a good weekend [18:27] if package in main Depends on package in universe, move it in d/control to Recommends is enough? [18:28] I'm merging sane-backends with Debian and in delta we have moved it from Depends to Suggests, but Debian moved it to Recommends. [18:28] If Recommends is fine, I'd like to stick with Debian. [18:29] Advices are welcome. ;-) [18:31] My guess is it should stay in Suggests for Ubuntu [18:32] geser: why? [18:32] I'm not fully sure about it but as Recommends are installed by default nowadays, Recommends for packages in main should be available in main === kees_ is now known as kees [18:33] geser: Would be nice to look into technical documentation. [18:34] I'm trying to find something [18:35] which either supports or contradicts my statement [18:35] I think it should stay in suggests too [18:36] ari-tczew: http://people.canonical.com/~cjwatson/ubuntu-policy/policy.html/ch-archive.html#s-main [18:37] * must not require a package outside of main for compilation or execution (thus, the package must not declare a "Depends", "Recommends", or "Build-Depends" relationship on a non-main package) [18:38] geser, mr_pouit: OK, I'll keep them in Suggests. Thanks geser. [19:03] grmpf, requestsync now asks me to authorize it on LP at every call… [19:04] mr_pouit: with python-launchpadlib 1.9? [19:05] geser: no, 1.8.0-2 [19:06] which Ubuntu version are you running? [19:06] sid ;-) [19:07] and u-d-t 0.119? [19:07] yep [19:08] I removed .launchpadlib and .cache/lp_credentials, but it doesn't change anything [19:09] requestsync got recently upgraded to work with python-launchpadlib 1.9 (ie. let python-launchpadlib handle the authorization completely) [19:11] you might ask leonardr (on #launchpad, probably after the weekend) if the code to work with python-launchpadlib 1.9 should also correctly work with 1.8 too (or if we should bump the dependency to >= 1.9) === Daviey- is now known as Daviey === superm1` is now known as superm1 [19:41] geser: I just built python-launchpadlib 1.9 on sid, and it works as expected, so u-d-t 0.119 should bump the dep === WaVeR` is now known as WaVeR === james_w` is now known as james_w === highvolt1ge is now known as highvoltage === Kmos is now known as Guest79780 [20:50] DktrKranz: around? [20:51] yeah [20:53] DktrKranz: oh, great. Do you remember what's the point of this change? http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/natty/sane-backends-extras/natty/revision/12 [20:54] ari-tczew: IIRC, it was to get rid of an old libtool NBS [20:54] DktrKranz: Can I drop it if package builds fine without it? [20:54] 99,9% could go away [20:56] DktrKranz: OK, I'll test build and get you back the information. ;-) === popey_ is now known as popey [20:58] :) [21:05] DktrKranz: Built fine. Dropping. [21:06] who can kill a PPA build for me? (its a kernel targeted to the wrong distro -- hate to have it clog up the builder for hours). [21:06] kamal: ask on #launchpad [21:06] ari-tczew: ty [21:06] kamal: np [21:07] kamal: go to the source of the package detail and request delete [21:07] kamal: I just did the same thing two hours ago [21:07] paultag: I've done that, but the builds are already running, and don't appear to be stopping [21:07] kamal: oh, then it's past the point of no return [21:07] !sru | ubottu [21:07] ari-tczew: Stable Release Update information is at http://wiki.ubuntu.com/StableReleaseUpdates [21:13] !ffe [21:13] Feature Freeze Exception. See https://wiki.ubuntu.com/FreezeExceptionProcess for the freeze exception process. === broder_ is now known as broder [21:56] bdrung, tumbleweed, geser: when I entry wrong password while requestsync: http://paste.ubuntu.com/575727/ [21:57] ari-tczew: file a bug [21:59] bdrung: why it now asks me twice for passwords? [21:59] previous requestsync didn't ask and I was happy. [21:59] ari-tczew: because of heavy changes in launchpadlib [21:59] bdrung: is it possible to workaround? [22:00] ari-tczew: dunno. you may ask in #launchpad [22:02] ari-tczew: is this from a gnome session? [22:03] see ubuntu-dev-tools' NEWS file [22:03] tumbleweed: nope [22:04] ari-tczew: that bug has been passed upstream to python-keyring, but there are known workarounds (sort-of) [22:11] bdrung: bug 729383 [22:11] Launchpad bug 729383 in ubuntu-dev-tools (Ubuntu) "[requestsync] Traceback when password is wrong" [Undecided,New] https://launchpad.net/bugs/729383 [22:13] ari-tczew: what password was wrong? [22:13] tumbleweed: do you want to get to know my password? [22:14] ari-tczew: no, I mean did you get a gnome-keyring password dialog? [22:15] tumbleweed: dunno whether gnome-keyring, but 1st was kwallet and 2nd was pinentry, I guess. [22:15] and I dunno which password it needs. [22:16] ari-tczew: ok, but it works when you get the password right? [22:18] ari-tczew: it'll need your login password (I assume) basically whatever password protects your kwallet [22:19] tumbleweed: I forgot password :/ [22:20] ari-tczew: I guess you'll have to delete your kwallet password-store then [22:20] tumbleweed: how? [22:21] it's in ~/.kde/share/apps/kwallet/ according to google [22:49] ari-tczew: just committed the download-specified-version support to pull-{lp,debian}-source we discussed [22:51] tumbleweed: how it works now? [22:51] if I want to get source from snapshot [22:53] ari-tczew: I'll trigger a PPA build [22:54] oh, that's already in the queue [23:23] A MOTU just uploaded version 0.3.7-2ubuntu1 of a package I maintain in Debian. That's fine, except one problem: the latest version in unstable is 0.3.7-1. When I release the *right* 0.3.7-2, how can I ensure that gets moved over to Ubuntu? [23:26] lfaraone: sounds like someone screwed up :( [23:26] I'm actually at a loss how the uploader came across the changes I had in VCS which were previously unpublished, the UDD branch for my package only has the released version. (Ubuntu's changelog of pithos now has an "UNRELEASED" entry that its basing on) [23:26] lfaraone: might have to either bump to 3 up or ask for that package to get removed :( [23:26] lfaraone: +1 [23:27] merde. it was published 21 minutes ago. [23:27] too late to get it removed now. <_<; [23:27] lfaraone: at least now you get to yell at the MOTU who did it :) [23:28] oooh, he's @canonical.com. [23:28] lfaraone: :D [23:28] lfaraone: pithos? [23:28] Ampelbein: yep. [23:28] lfaraone: there are other options than uploading a -3. you could upload a -2, and then we could merge it as -2ubuntu2 [23:28] lfaraone: I asked in #ubuntu-desktop [23:28] (or the always excellent -2ubuntu1reallyjust2) [23:29] lfaraone: ken is in there [23:29] Ampelbein: there were no changes in -2, other than including changelog entries that were lost in -1, but I was going to roll out a -2 with the patch Ken just uploaded. [23:29] * lfaraone joins and waves.