/srv/irclogs.ubuntu.com/2010/12/06/#ubuntu-motu.txt

geserstgraber: Hi, can you "sandbox" be used to mimic the no-net-access from buildds in pbuilder?00:16
stgrabergeser: I'm not sure how it's done on the buildds, but the no-network option of sandbox basically gives you a system where you only see a loopback device, so it might do the trick.00:23
geserthat would be enough, till I had no idea how to "disable" net inside the pbuilder but not my host00:24
stgraberdo you know if you can change the call to "chroot" in pbuilder to start another command ?00:24
stgraberif so, you could simply replace that call by: "/usr/bin/sandbox-helper nonetwork" followed by the usual parameters (path to the chroot and command)00:26
geserI might need to make my own "pbuilder" but it should be doable00:26
geserand having pbuilder itself using a tmpfs is no problem?00:26
stgraberwell, if you replace "chroot" by "/usr/bin/sandbox-helper nonetwork" it'll only use the namespace switching part of sandbox, it won't create a tmpfs or anything. It'll just behave exactly like chroot.00:27
geserI guess the sandbox and the host don't share the lo device, right? as I use apt-cacher-ng to download the debs00:29
geserperhaps I can only "sandbox" the package building itself (and not the build-dep installation too). Will have to check the pbuilder shell scripts00:30
stgraberindeed, that's two separate lo00:33
geserdo I need sudo inside the pbuilder?00:52
geserstgraber: http://paste.ubuntu.com/540131/ the first line is the old call, the second line what I replace it with and the third the error I get00:55
geserI don't know where the sudo comes from00:56
stgrabergeser: ah right, I forgot about this part of sandbox-helper, it's usually started as root using sudo and then it sudo back to the original user01:06
stgrabergeser: so, in theory (though it's slight hackish), if you can manage to get sudo installed in the chroot and make sure SUDO_USER=root in your environment, it should work fine01:10
stgraberas it'll basically do "chroot <target> sudo -u root <cmd>" in the new namespace (yeah, as I said, hackish)01:10
gesera sandbox-raw (without the chroot call) would be nice so I could use it for pbuilder (simply add it before the chroot call)01:13
geserbtw: wouldn't using "chroot --userspec=${SUDOUSER}" allow you to do it without sudo? (not that it would help me for pbuilder)01:16
gesera --nonetwork option to chroot would be nice01:18
stgraberah, didn't know of userspec, that'll help quite a bit indeed. I'll do that in the next release.01:21
stgraberI'm trying to build you a stripped down version that does what you want01:21
geserjust noticed it myself by looking at the chroot manpage if perhaps it already has a --no-network option :)01:22
stgrabergeser: http://paste.ubuntu.com/540135/01:29
stgrabergeser: gcc sandbox-raw.c -o sandbox-raw01:30
stgrabergeser: then you can call it with: ./sandbox-raw chroot <path> <cmd>01:30
stgraberneeds to run as root01:30
stgraberthe code is now in lp:~stgraber/+junk/sandbox too (though not added to the Makefile)01:33
geserthanks01:35
gesermy patched pbuilder doesn't error out anymore, but for some reason which I don't know yet it behaves now different01:36
stgraberhow so ?01:37
stgraberI'm not familiar with exactly how pbuilder works, but if you want it to work properly, you'll need to make sure it mounts /proc from inside the chroot, not from the outside01:38
stgraberotherwise you'll get a /proc from the wrong namespace01:38
geserthat's the output I get http://paste.ubuntu.com/540136/01:39
geserwith sandbox-raw01:40
stgraberouch, that's really weird01:40
stgraberwould be interesting to know where that "can't read xvt_2.1-20_amd64.changes!" comes from and exactly what failed there01:41
geserthat's one of my pbuilder hooks which gets run after a successfull builds, but this doesn't look like a successful build01:41
stgraberyeah, it just stopped after the first step ...01:42
geserthe same without sandbox-raw http://paste.ubuntu.com/540137/ (the FTBFS is expected)01:42
geserand the only change I did was to the following line in pbuilder: 'echo "$DPKG_COMMANDLINE" | $CHROOTEXEC $SUTOUSER' adding sandbox-raw before the $CHROOTEXEC01:44
stgraberhttp://paste.ubuntu.com/540138/01:46
stgrabercan you try this one instead ?01:46
stgraberit's even more stripped down to only do the network namespace part and keep all the rest as it's01:46
geserstgraber: that one works better as I get the expected FTBFS01:50
stgrabercool, can you try doing something that needs network access during the build process ?01:51
geserI've modified my pbuilder to also run my hooks with sandbox-raw. One of the hooks starts a shell if the package FTBFS and I tried now to install a package with this shell: "Network is unreachable" :)01:53
stgrabercool01:54
geseryeah01:54
stgraberok, current code is in rev38 of sandbox and has been renamed to sandbox-raw-nonetwork (yeah, long but at least we know what it does ;))01:55
=== ssj6akshat|sleep is now known as ssj6akshat
c2tarunare there any defined coding standards for source codes (except proper indentation) that one has to follow before uploading a package??03:58
ssj6akshatc2tarun, hey, fixed that bug?03:59
c2tarunssj6akshat: not yet :(04:01
ssj6akshatk04:02
c2taruncan anyone please help me with the packages having source code in .cs format.04:50
RAOFc2tarun: Sounds like a C# app.  What's your question?05:01
c2tarunRAOF: i was looking at the source code of tomboy and found that its code is in cd format. how can i make changes to that code and check on ubuntu that it is working. i think c# is not supported by ubuntu05:02
* micahg coughs...mono05:03
c2tarunvery sorry micahg, my net is not working properly so i cant look about mono. i'll come back ASAP, please be there/05:04
RAOFc2tarun: The package build system itself is a demonstration of how to build it.05:06
RAOFIf you've got the build-dependencies of the tomboy package, you've got all the dependencies required to build it.  Beyond that, it's fairly standard autofoo.05:07
c2tarunRAOF: sorry i m not getting properly of what you are saying. are you saying that all i need to do the desired changes and go to the standard package building procedure and it will work??05:08
RAOFYes.  Because the tomboy package is an Ubuntu package; it builds on the build daemons like any other package.05:09
c2tarunwow... thanks :) if that worked this will be my first contribution ( though its not a bug, its in wishlist :P).05:10
MTecknologyHow can I force myself to be dropped into the pbuilder environment after it finishes building with or without errors?05:24
nigelbMTecknology: there is a hook for that05:26
paultagMTecknology: you mean --login   ?05:26
paultagMTecknology: you should not log in, you can cause a lot of issues in the resulting deb05:26
nigelbpaultag: that's for debugging and I've done that before05:27
paultagMTecknology: calling login gets you in the image, then gets rid of the stuff you did, you should not login when you're building a deb05:27
paultagnigelb: yeah, I know05:27
paultagnigelb: :)05:27
nigelb:)05:27
paultagnigelb: did you get my PMs?05:27
MTecknologyI plan on purposely breaking things in there :P05:27
paultagnigelb: I did some good stuff05:27
nigelbpaultag: I did, I did :)05:27
nigelbMTecknology: https://wiki.ubuntu.com/PbuilderHowto#Running a Shell When Build Fails (Intro to Hook Scripts)05:28
paultagnigelb: whana see the demo I did?05:28
MTecknologythanks :)05:28
nigelbnp :)05:28
nigelbpaultag: sure :D05:28
MTecknologyusing --login didn't drop me in after the build05:29
paultagMTecknology: sudo pbuilder --login    ?05:30
MTecknologysudo pbuilder-dist lucid ../nginx_0.8.53-2.dsc --login05:30
paultagcan't do that05:31
paultagyou'll break the deb05:31
MTecknologyI guess I'm looking for C10Shell then - just making it happen whether the build fails or not05:32
MTecknologypaultag: btw- I'm just trying to poke around in there - not expecting the package to end up nice and pretty and usable05:34
paultagMTecknology: k05:34
MTecknologyis the C in there significant? like - if build 'C'rashes then run anything C*?05:35
MTecknologyI bet if I do a tiny bit of digging I find out :P05:38
dholbachgood morning!06:46
c2tarundholbach: good morning06:46
dholbachhi c2tarun06:46
c2tarundholbach: i mailed you on launchpad yesterday and requested for a classroom session. you checked that ???06:47
dholbachc2tarun, I got your email on sunday evening06:48
c2tarunok u thought something about that. something about live fixing of a small bug06:48
dholbachc2tarun, and I forwarded it to the packaging training coordinators - we're in the process of setting up a few sessions06:48
dholbachso stay tuned06:48
c2tarundholbach: wow...  thanks a lot :)06:49
ari-tczewttx: could you sponsor for me bug 684874 and bug 682898 ?07:49
ubottuLaunchpad bug 684874 in rabbitmq-server (Ubuntu) "Merge rabbitmq-server 2.2.0-1 (main) from Debian unstable (main)" [Wishlist,Confirmed] https://launchpad.net/bugs/68487407:50
ubottuLaunchpad bug 682898 in gwt (Ubuntu) "Fakesync gwt 1.6.4-1 (main) from Debian unstable (main)" [Wishlist,Confirmed] https://launchpad.net/bugs/68289807:50
ttxari-tczew: not right now. I'll have a look in a few days07:50
ari-tczewok07:50
=== freeflyi1g is now known as freeflying
geserMTecknology: yes the 'C' does matter, see the explanation for --hookdir in "man pbuilder". From a quick look at the manpage, it seems like you need a "C" hook (like C10shell) and a "B" hook (like B10shell). [the '10' is for ordering of similar hooks and the 'shell' a short description]09:24
lucasgeser: the local mirror on UDD is out of sync again. I've notified the people in charge.09:59
micahglucas: BTW, thank you for the efforts WRT to the rebuild10:00
lucasheh :) you're welcome10:01
* geser did his 2000th upload10:26
\shmoins11:13
micahg\sh: greetings, are congratulations in order?11:14
\shmicahg: sure :)11:14
micahg\sh: well, congratulations :)11:15
\shmicahg: thx a lot :)11:15
\shmicahg: since this morning it's also official in germany...and now I have a lot of work to do :) changing name etc.11:15
micahg\sh: not yours I hope ;)11:16
\shmicahg: of course...I'm not "Stephan Hermann" anymore :) I'm now known as "Stephan Adig" :)11:17
* micahg is confused, 21st century chivalry?11:17
\shmicahg: I took the name of my wife :)11:18
geserdon't forget to change your IRC nick :)11:19
nigelbheh11:19
nigelb\sh: congrats :)11:19
micahg\sh: well, in any case, congrats and I'm signing off before I put my foot any further in my mouth :)11:20
\shgeser: hmmm...we'll see :)11:20
\shnigelb: thx :)11:20
nigelbmicahg: Your awake times confuse me awfully most of the time.11:21
micahgnigelb: my circadian rhythm feels the same way ;)11:21
nigelblol11:22
nigelbIsn't your circadian rhythm more like a circadian rap? :p11:22
evaluateHello11:22
nigelbhi11:23
evaluateI have submitted a package to debian but it takes awfully long for it to get included (if at all) so I thought I'd also submit it to ubuntu (because that's what I'm using myself).11:23
nigelbDo you have a bug number for that?11:24
nigelbA debian bug number that is11:25
evaluateI have got feedback from the debian-mentors mailing list and the package seems to be fine with the exception of one warning, which isn;t critical though. Now, before I submit it to ubuntu, is there anything else I need to take care of beside bumping the version (from *-1 to *-0ubuntu1) and changing the distro from unstable to maverick?11:25
evaluatenigelb, sure, just a second11:25
dapalevaluate: is it a NEW package? If yes, it should wait in the NEW queue (given we're frozen, it'll take a while)11:25
evaluatedapal, what do you mean with "we're frozen"?11:26
dapalwe == Debian, sorry11:26
nigelbdapal: I think its a patch.11:27
evaluatenigelb, ITP #603131811:27
nigelbdebian bug 603131811:27
ubottuError: Debian bug 6031318 could not be found11:27
nigelbevaluate: are you sure that number is correct?11:27
nigelbdapal: gah, I read wrong, sorry!11:27
evaluatedapal, nigelb, it's new. But shouldn't it be allowed to be uploaded to sid regardless of the testing freeze?11:27
dapalevaluate: yes, but the ftpteam is busy in catching RC bugs, rather than processing NEW11:28
dapalevaluate: even though they sometimes do batch processing11:28
dapal(during the Freeze, I mean)11:28
evaluatenigelb, this should be it: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=60313111:29
evaluatedapal, I understand that, but I find one month for such a small package a little too long...11:29
nigelbI saw this on debian-mentors recently11:29
nigelbthe thing is, really, we'd rather have you maintain this in debian11:29
dapalevaluate: DktrKranz is in the ftpteam, ping him ;)11:29
dapalevaluate: (or bribe him :D)11:29
evaluateI mean, a couple of people have already said that the package is fine, I don't think it would be such a immense effort for it to be uploaded. I find all of this pure bureaucracy...11:29
nigelbbribing with network equipment might work :p11:30
dapalevaluate: the problem is not "uploading" the package; is someone from the ftpteam steal time from RC hunting and reviewing it :)11:30
evaluatenigelb, I would also love to maintain it in debian, but it just seems to take too long...11:30
nigelbI think it should unfreeze before ubuntu releases11:30
dapalnigelb: I hope so :)11:31
dapallatest rumours say before christams11:31
evaluatedapal, well, like I said, a couple of people have already reviewed it and they said it's fine...11:31
dapalevaluate: maybe they were not DDs? I am, let me check it and eventually upload11:31
nigelbthere you go, a sponsor :p11:31
evaluatedapal, that would be awesome, thank you very much :-)11:31
geserevaluate: I don't want to disappoint you but getting a new package into Ubuntu through REVU isn't fast either11:32
evaluatedapal, if you want I could link you to the threads on the debian-mentors mailing list...11:32
dapalevaluate: nope, I read d-mentors11:32
evaluatedapal, ohh, ok.11:32
evaluategeser, well, I thought it might be faster than uploading through debian. Also, this step will be necessary anyway, for the package to be synced over from debian to ubuntu, won't it?11:33
evaluatedapal, if you would like to sponsor it, please let me know so I make another package so that the debian package is in sync with the upstream (I just did another release a couple of hours ago)11:35
geserif the package is in Debian, syncing it over is easy (REVU is only for new package not in Debian)11:35
evaluategeser, ohh, I thought it would be the same process, as I saw that I would also need to request a sync for the package to get into ubuntu11:35
dapalevaluate: yes, I'll sponsor it. Since you're going to make a new package, would you mind adding a desktop file too?11:37
dapalevaluate: i.e. debian/clipit.desktop , to be installed in /usr/share/applications/11:38
evaluatedapal, there is a desktop file in the source package already...11:38
dapalah, sorry, missed it :)11:39
evaluatedapal, so is it ok like this?11:39
dapalwait, compiling :)11:40
evaluatesure11:40
dapalit looks ok though, let me finish to be sure ;)11:40
dapalevaluate: ok, please make a new package, I'll upload it11:47
evaluatedapal, sure, I just seem to have a little problem. I added 'Applet indicator' support for it in the latest version and it seems that the package name differs on debian to what it is on ubuntu. On ubuntu I have added 'libappindicator-dev' as dependency, but on debian I can't find this package. Is the debian package named libindicator-dev the same as the ubuntu libappindicator-dev one?11:56
dapalevaluate: let me check11:56
dapaluhm, nope, they're not the same11:57
dapalthere's some ongoing work in Debian regarding appindicator, IIRC11:57
dapalI'll search on d-mentors11:58
evaluatedapal, so should I remove the dependency on libappindicator and let it build without the application indicator support?11:58
dapalevaluate: initially, yes. Then you'll need to make a ubuntu merge (-1ubuntu1), re-adding the Build-Depends11:58
dapaloh, we have indicator-applet, but not indicator-application12:00
dapalweird names :)12:00
dapalevaluate: going away, will be back here later today. Would you please send me a mail (dapal@d.o) when you have your package ready? Thanks12:03
evaluatedapal, sure, I'll have it ready in the next half hour or so, will ping you on e-mail. Thanks again! :-)12:04
dapalevaluate: you're welcome -- if you also need assistance with the ubuntu merge, I can help you (but I'm not a MOTU (yet, planning it), so you need another sponsor)12:04
dapalread you later :)12:04
DktrKranzevaluate: during freeze, we usually process Debian NEW queue at a slower pace, but we can accept a package anytime (and I'm potentially turning into a drunk man given how many beers people owe me already :P)12:31
evaluateDktrKranz, well, like I said, I can understand that things are going at a slower pace, but it just seemed a bit long for me (maybe I'm just not used to the debian pace... :-)12:32
evaluateanyway, the reason I rush this a bit is because I think that getting the package into debian and into ubuntu might get it a larger userbase ans thus faster bug reports...12:32
DktrKranzevaluate: btw, which package are we talking about?12:33
evaluateDktrKranz, the name is 'clipit'12:33
evaluateDktrKranz, dapal already said he would upload it after I repackaged the new upstream version, just so you know if you missed that...12:33
DktrKranzah, not yet in NEW12:34
DktrKranzI thought it was already12:34
geserevaluate: sponsoring a sync request is much easier as it's mainly checking if the package builds in Ubuntu (you only need to find one sponsor for it and there are enough MOTUs working on the sponsoring queue), for REVU you need to find two MOTUs who ACK your package after looking for packaging errors (similar to debian-mentors) but only a few MOTUs do reviewing on REVU13:10
evaluategeser, ok, I get it.13:11
evaluateIf it gets uploaded to debian It'll hopefully then be easier to get it into ubuntu too13:11
evaluateI mean, the only changes it would need, would be the libappindicator ones. Also, I have a PPA in which the package builds just fine, that should also be a proof that it works on ubuntu too...13:12
ari-tczewcjwatson: you did an upload of system-tools-backends, but I got ACK of sync previous. ehhh, what's next?13:19
cjwatsonari-tczew: I don't understand your commenet13:23
cjwatson*comment13:23
=== Aquina is now known as Kathrin
ari-tczewcjwatson: bug 68552813:23
ubottuLaunchpad bug 685528 in system-tools-backends (Ubuntu) "Sync system-tools-backends 2.10.1-1 (main) from Debian unstable (main)" [Wishlist,Confirmed] https://launchpad.net/bugs/68552813:23
ari-tczewyou did an upload13:24
cjwatsonari-tczew: oh, that'll have to be a merge then13:24
ari-tczewand my sync has been expired13:24
ari-tczewI'm not satisfied13:24
cjwatsonthat's life13:24
cjwatsonI'm sorry that I didn't happen to spot the sync request, but I don't always read through all recent bug reports on a package before uploading it, particularly when my attention is focused on something entirely different13:32
ari-tczewcjwatson: OK, I'll forget about this one. I know that you didn't want do bad.13:36
ari-tczewcjwatson: I'd like to discuss with you about merge-o-matic.13:36
cjwatsonthe experimental thing?  right.  I'm not quite sure what would be involved in setting up an entire separate set of pages for that (particularly since the current focus on experimental is largely temporary, and will subside again after the squeeze release).  I think it would be confusing because you'd have to look in two places.  My feeling is that I'd rather use the existing facilities to tell MoM to attempt to merge just ...13:38
cjwatson... certain packages from experimental; that's an override file and I'm happy to add things too do13:38
cjwatsoner, *things to it13:38
ari-tczewcjwatson: hmm, that's not I expected directly13:42
ari-tczew:(13:42
=== xfaf is now known as zul
ari-tczewbdrung: FYI, I gave comment for Kmos unban request.13:44
bdrungari-tczew: you comment doesn't help much13:46
ari-tczewcjwatson: I don't think so that people will must have a look into 2 places. Just last time I have to merge one package with experimental to resolve DEPWAIT and I had to create patches manually. If DEPWAIT wouldn't exist, propably I never would look on merge this package with experimental13:47
ari-tczewbdrung: I know, nothing help much13:47
cjwatsonari-tczew: I don't generally think that people should merge from experimental unless there's a specific reason to do so13:51
ari-tczewcjwatson: from my point of view, now Debian is frozen. some packages have been upgraded to new upstream release and uploaded to experimental. If contributors want to get some new upstream releases, then can go with experimental.13:52
cjwatsonari-tczew: not all of experimental follows that though13:53
cjwatsonari-tczew: I don't want to encourage people to upload things to Ubuntu which from Debian's point of view are essentially random junk.  They should be inspecting it in more detail13:54
cjwatsonso I'd rather that they explicitly ask for MoM to follow a package from experimental13:55
ari-tczewcjwatson: ok another case. what do you think, parsing binary package under source is necessary/useful?13:56
cjwatsoncan you give me an example?13:56
ari-tczewcjwatson: universe: source package chromium-browser, binary: chromium-browser, chromium-browser-dbg, chromium-browser-l10n, chromium-browser-inspector13:57
cjwatsonyou mean the fact that it's listed in the Package field?  I do find that useful for searching sometimes, yes13:58
cjwatsonI know it's kind of long in a few cases13:58
* ari-tczew is seeing that today has only bad ideas13:59
cjwatsonthere's a difference between "ideas Colin disagrees with" and "bad ideas". :)14:00
ari-tczewcjwatson: ok, if you want to create department for MoM/experimental, would be nice to get a tool which will create merge parcel from experimental, available under command like 'grab-merge XXX experimental'14:00
cjwatsonout of interest, have you considered using bzr merge-package lp:debian/experimental/XXX?14:01
cjwatson(I know it doesn't work for everything)14:01
ari-tczewas you said: it doesn't work for everything14:02
ari-tczewand I hate merging with bzr14:02
ari-tczewit just sucks, if it requires anyway dput14:02
cjwatsonhm, works well for me14:02
ari-tczewAdri2000: are you on merge filezilla?14:12
tumbleweedari-tczew: whether or not you like UDD, being able to merge locally with UDD means we don't *need* a central MOM for experimental. Although that would be handy if we had a way to mark packages as "should be synced/merged from experimental" (which I've wanted to do in the past)14:14
cjwatsontumbleweed: we do, although it needs MoM admin action - file a bug on merge-o-matic if you want a package marked that way14:14
tumbleweedcjwatson: does it apply to auto-syncing?14:14
cjwatsontumbleweed: no14:15
cjwatsonthat one does still require manual requests14:15
tumbleweedmost such needs are temporary (either a package is experimenting with something that we want/have, or debian is in freeze)14:16
mr_pouitari-tczew: filezilla was uploaded only yesterday to unstable, so you should really wait...14:19
Adri2000ari-tczew: yep, will do it14:31
ricotzmr_pouit, hi, i hope you will have some time to look into elementary-icon-theme 2.6 ;)14:31
Adri2000ari-tczew: comment added14:32
hrwhi14:45
ari-tczewmr_pouit: btw, wait for?15:09
cdbsari-tczew: from that sentence, I think that you just merged an XFCE package?15:15
cdbsari-tczew: MOTUs are expected to deal mostly with unseeded packages, its best to leave seeded packages to their devs15:15
ari-tczewcdbs: I don't understand what are you talking about15:15
cdbsari-tczew: ah, sorry, my fault15:16
ari-tczew:]15:17
mr_pouitari-tczew: you ask Adri2000 about filezilla, but I wrote it has only been uploaded yesterday. So I meant there's no reason to rush (and it's probably better to wait a few days ;)15:20
mr_pouit(but well, I'm just speaking, you do what you prefer)15:21
ari-tczewmr_pouit: what could give these days?15:21
ari-tczew(not in filezilla case, it's explained)15:21
mr_pouit(especially in filezilla's case, a rc bug can be reported)15:24
=== dholbach_ is now known as dholbach
=== ulysses is now known as emovaldi
udienzhiya all16:21
udienzi try to solving #54936516:21
udienz!bug #54936516:21
ubottuLaunchpad bug 549365 in light-themes (Ubuntu) "Terminals have a translucent background" [Wishlist,Fix committed] https://launchpad.net/bugs/54936516:21
udienzplease reviewing itu16:21
udienzi wsih i can help MOTU team16:22
hrwbug 686054 reported16:36
ubottuLaunchpad bug 686054 in plasma-widget-fancytasks (Ubuntu) "crashes plasma with 4.5.80 packages" [Undecided,New] https://launchpad.net/bugs/68605416:36
=== emovaldi is now known as ulysses
hrwops16:41
evaluatehello dapal. I just sent you another mail, not sure what went wrong with the first one...17:36
dapalevaluate: got it :)17:38
dapalevaluate: can't find 0x521767F1 on keyservers though ;)17:38
dapalevaluate: however, I'm getting the mentors package17:38
evaluatedapal, hmm, awkward. It should at least be on keyservers.ubuntu.com.17:39
evaluatedapal, sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 521767F117:39
dapalapt-key? :p17:39
dapalgpg --keyserver ... --recv-keys, better17:39
dapalwould you mind sending it to pgp.mit.edu and subkeys.pgp.net too? They're commonly used keyservers :)17:40
evaluatedapal, ohh. I copied that over from my instructions on how to install my PPA :p17:40
evaluatesure, I'm checking that out right now17:40
evaluatedapal, it seems that I also had keyserver.pgp.com and pgp.mit.edu in the servers list and I also added subkeys.pgp.net now, as you suggested, thank you!17:45
dapalevaluate: np, I'm compiling it again17:45
evaluatealso, sorry if I'm doing stuff wrong, I'm not really familiar with encryption yet, as I only just started using it when I started packaging my program for debian and ubuntu :-)17:46
evaluatedapal, did the decryption work with that key?17:47
dapalevaluate: yup :)17:48
evaluateawesome :D17:48
=== yofel_ is now known as yofel
dapalevaluate: uploaded, thanks for your contribution :)17:50
dapalevaluate: feel free to ping me for future uploads17:51
evaluatedapal, thank you very, very much17:51
evaluatedapal, sure, I also had one more question if you have the time. Would it be wrong to use the debian-mentors mailing list to get reviews of future packages before I send them to you?17:52
dapalevaluate: usually, when one gets a "long-term sponsor", it's safe to send the url to the .dsc directly to the sponsor17:52
dapalhowever, it wouldn't be *wrong*17:53
dapalit would be unpolite (i.e. wasting other sponsors' time)17:53
paultagevaluate: just mark it a RFC not an RFS, unless you want someone else to upload it17:53
paultag:)17:53
dapalor, yes. :)17:53
dapalpaultag: +1 :)17:53
evaluatedapal, ok, I understand. Like I said, I'm new to this and don't really know how it all works.17:55
dapaleveryone has been "new to this" (except a couple of people, really), don't hesitate to ask :)17:56
paultag+1 dapal :)17:56
paultagevaluate: I just started working with Debian upstream, and d-m is actually a really nice place17:56
evaluatedapal, should I send an e-mail to the debian-mentors mailing list saying that I found a sponsor?17:56
dapalevaluate: I'll do that myself :)17:56
evaluatedapal, ok, thank you very much :-)17:57
evaluatepaultag, yeah, people are really nice and helpful, the only "bad" experience I had with it is that it's a bit slow for my taste, but that's probably because of the current freeze status...17:57
dapalevaluate: that's the reason, yes. Most people are busy catching RC bugs17:58
dapalevaluate: other people, who aren't able to do any more RC bugs (like me :D), will sponsor things ;)17:58
paultagevaluate: true, true17:58
paultagI've taken a shine to starting to review, it's quite fun17:59
evaluatedo you have experience with alioth.debian.org? I'm curios because I have submited a new project to host the debian/* files of clipit there and I didn't get an answer yet (I submited it on 30.11 so it's around a week), is it normal to take this long?18:09
dapalevaluate: why would you need a new project?18:10
dapalevaluate: you'd just need to ask membership for collab-maint ; http://wiki.debian.org/Alioth/PackagingProject18:11
evaluatedapal, well, I don't know. This is how I did on sourceforge, I thought that would also be the way to go on alioth (I couldn't find much info on how alioth actually works...)18:11
dapalevaluate: (despite of the name, you can use it even if you're the only maintainer)18:11
dapalevaluate: now you know :) -- ask for membership to the collab-maint project, and say that you want to maintain your debian/ there (maybe also say that's it's currently NEW)18:12
dapalevaluate: a new project usually takes longer than just membership to an existing one18:12
evaluatedapal, ok, got it, thank you!18:12
dapalthe former depends on alioth admins, the alioth on collab-maint's admins, who should be quicker :)18:13
paultagevaluate: oh, are you the one working on clipit?18:14
evaluatepaultag, yes, why?18:15
paultagevaluate: I've been reading your mail and looking at your work18:15
paultagevaluate: great job :)18:15
evaluateohh, thank you very much!18:15
paultagI remember people by their packages, not by name, sorry :)18:15
paultagwhoh18:15
paultagthat came out way wrong18:15
paultag/clear18:16
evaluatehmm, it seems I hve been added to the collab-maint project (although I didn't get any notification about it). Does collab-maint only use SVN?18:29
paultagevaluate: narp. I'm using git on my projects18:31
evaluatehmm, I can only see SVN listed on the project page... too bad there's barely any information out there on how to use alioth...18:33
paultag+118:33
paultagWell, shucks. It's coffee time. BBL18:34
paultagevaluate: well met, keep up the great work18:34
evaluatepaultag, thanks! see you around :-)18:34
evaluateguess I'll go over to oftc.net's #alioth, hopefully they have some useful links18:35
=== hannesw_ is now known as hannesw
hrwdoes someone know is it possible to APT pin hosts not only releases/packages?20:36
micahghrw: yes, o=foo20:37
hrwmicahg: o=Ubuntu in both20:37
micahghrw: no, o= is for the host20:38
micahgor rather site20:38
micahgerr..repository :-/20:38
hrwmicahg: http://pastebin.com/kd68CUzU20:40
micahghrw: ok, what are you trying to do?20:40
hrwmicahg: set ports.ubuntu.com as lowest priority so apt will fetch arch=all from de.archive.ubuntu.com20:41
micahgerrr..apt's not set up for that AFAIK20:42
micahghrw: oops, yes, you can :)20:42
hrwo=host?20:43
hrwwill have to try20:43
micahghrw: try this in /etc/apt/preferences, http://pastebin.ubuntu.com/540421/20:43
hrwnope20:45
micahghrw: yeah, I think pinning is just for versions20:46
james_wput the site you prefer first in the list20:46
james_wif the site you prefer is dependent on the package that is being fetched then you are SOL I think20:47
hrwworks20:48
hrwadded main with pri 999 and then ports with pri 5020:48
hrwthanks20:48
hrwno more waiting for 100MB of files from slow ports.ubuntu.com when they are on fast link to mirrorred archive20:49
ari-tczewlucas: could you check whether UDD merges works fine?23:02
lucasari-tczew: they were (as geser already noticed). the problem was a mirroring problem to UDD, which is fixed now, so the data should be refreshed very soon now23:14
lucas(I'm doing a manual sync)23:15
ari-tczewok23:18

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!