/srv/irclogs.ubuntu.com/2011/01/01/#ubuntu-motu.txt

joseHello, I'm hoping you guys can help me. I followed Daniel Holbach's videocast for setting up the tools. When I type in "pbuilder-dist natty create" I get an error, but when I type in "pbuilder-dist lucid create" it works. Is this because I'm running on Lucid?00:14
joseOops, sorry didn't realize the message above was partly cut off. I followed Daniel Holbach's videocast, and now I'm having the problem mentioned above.00:15
Bachstelzejose: please pastebin the exact error00:20
Bachstelze!pastebin| jose00:20
ubottujose: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.00:20
josehttp://paste.ubuntu.com/549182/00:22
joseAny ideas?00:24
Bachstelzehmm, I'm using pbuilder directly, not with pbuilder-dist, so I don't know how you're supposed to get that script00:24
maxbis it in ubuntu-dev-tools ?00:25
Bachstelzeit's in the package debootstrap in natty, you should be able to download it from packages.ubuntu.com and install it, but that's a bit ugly00:25
joseSo, what do you recommend?00:26
stgraberjose: debootstrap doesn't seem to know natty. Maybe there's a backport of debootstrap for lucid that adds support for natty or you can workaround it with: sudo ln -sf gutsy /usr/share/deboostrap/scripts/natty00:27
BachstelzeI would recommend not using pbuilder-dist :p I'm not sure what it does but I'm doing fine without it00:27
joseIf I run "sudo pbuilder --create natty" it seems to work fine. Any problems with doing so?00:27
Bachstelzeyou'll have a problem if you want to run several pbuilders (for different releases or architectures), the wiki has a nice .pbuilderrc that lets you do that with pbuilder00:28
Bachstelze!pbuilder00:29
ubottupbuilder is a system to easily build packages in a clean chroot environment. To get started with PBuilder, see http://wiki.ubuntu.com/PbuilderHowto00:29
Bachstelzejose: look in section 1300:29
cjwatsonthere should be a working debootstrap for everything up to natty in lucid-backports00:31
cjwatsonyeah, there is, I just checked00:32
joseOkay, so what you guys are trying to say is if I do what I mentioned above, I'll only be able to work on natty?00:33
josecjwatson, so do I have to update something?00:33
cjwatsonyes, upgrade your debootstrap package to the version in lucid-backports and the error you showed will go away00:33
Bachstelzejose: http://packages.ubuntu.com/lucid-backports/debootstrap you can get it from here, or enable the backports in your package manager00:34
joseOkay, let's see if that works.00:37
joseThank you, that fixed it. Where is all that data landing?00:39
hakermaniahappy new year00:53
dnivrahello. I am packaging openteacher and would like to know which template to use to create manpage- manpage.1.ex, manpage.sgml.ex or manpage.xml.ex? is there some preference given to either of them? also how can i watch a bazaar branch? is it possible?01:57
maxbmy suggestion for manpages would be to use whichever formatting language tou are familiar with02:05
maxbit's not clear what you mean by watching a bazaar branch02:05
dnivrai'm writing man pages for first time and have not really worked with sgml/xml. what would you suggest?02:06
dnivra"watch" in the sense check upstream for changes using 'uscan'.02:06
maxbah, no, you can't watch a branch with uscan02:07
dnivraso no way of adding it. great!02:08
dnivramaxb, any suggestions/advice on man pages? i'm totally new to packaging :).02:09
dnivrai read that having man pages is a plus and makes it easier to get it into debian and hence to ubuntu as well :). so just wanted a few opinions :).02:10
=== yofel_ is now known as yofel
c_kornHappy new year!12:29
TheNumbHey guys. Any tips about curing alcohol poisoning?12:30
=== Amaranth_ is now known as Amaranth
bdrungkklimonda: around?16:34
kklimondabdrung: yes17:43
bdrungkklimonda:  what do you suggest as name for dprintf?17:43
kklimondabdrung: I'd suggest simple debug17:44
kklimondaor debug_print17:44
bdrungdebug is better17:45
bdrungkklimonda: are you interested in reviewing it?17:45
kklimondabdrung: sure, but not today :)17:47
ari-tczewhey, what does mean last column on page http://qa.ubuntuwire.org/debcheck/debcheck.py?dist=natty&list=ALL ?17:47
bdrungkklimonda: what do you think about the function names?17:48
ari-tczewwho is reponsible for debcheck/ubuntuwire?17:50
kklimondabdrung: what happens if kibi_init isn't called before other kibi functions?17:51
* tumbleweed prods bdrung with a code review reminder17:51
bdrungkklimonda: it uses the packers default config17:52
kklimondabdrung: mhm, great17:52
bdrungwe have three levels of configuration: user, system, and packager17:53
kklimondabdrung: but kibi_init do have a warning that it should be called before any other kibi function.17:53
kklimondabdrung: I'm asking because later there is a #define g_format_size_for display kibi_format_size...17:54
kklimondabdrung: if other people are like myself someone will forget to add kibi_init call at some point ;)17:54
bdrungkklimonda: the warning is there because the user and system configuration is ignore if you don't run kibi_init17:55
bdrungkklimonda: there is an alternative: check in every function call if libkibi is initialized (one if(foo == NULL)) and drop kibi_init17:56
kklimondabdrung: I wonder.. it makes sense, most _init functions, at least in the "G" world,  are there because you pass some arguments to them. g_type_init is the only exception I can think of right now18:00
cdbsari-tczew: There are some people who maintain ubuntuwire, such as wgrant and ajmitch (I may be wrong)18:00
kklimonda(also, an additional condition check is a performance penatly of sort - even when you use UNLIKELY macro)18:01
bdrungkklimonda: it's a trade of. what do you prefer?18:01
kklimondabdrung: I guess it depends on how often the functions are going to be called - with correcly used UNLIKELY macro the overhead of the if check should be negligible..18:08
bdrungkklimonda: what do you mean with "unlikely macro"?18:10
kklimondabdrung: gcc has __builtin_expect which is, by kernel and by glib, wrapped in LIKELY/UNLIKELY macros - when you use one you inform the compiler that the wrapped condtional is unlikely/likely to evaluate to something - gcc uses it for optimalization18:13
bdrungkklimonda: can you give me an example?18:14
bdrungor point me to one?18:14
kklimondabdrung: there are quite a lot of examples in glib/gobject sources (sorry for the delay, got a call)18:32
bcurtiswx_im using bzr bd and it required a version of gsettings-desktop-schemas, so i build that and used dpkg to install it.. (both the regular and -dev) so the version on my system were right.. but it still fails at the dep check.  idk why21:25
ari-tczewwhat do you think about merge package devscripts into ubuntu-dev-tools?21:27
dapalmaybe the contrary ;) -- but a bad idea, introducing an unnecessary delta between Debian and Ubuntu21:31
bcurtiswx_why doesn't bzr bd notice my package version changes ?21:32
bcurtiswx_http://paste.ubuntu.com/549372/21:38
bcurtiswx_http://paste.ubuntu.com/549372/ i still can't figure out why its not recognizing the correct version.. any ideas?22:29
emHi everyone.22:57
emI was here quite a long time ago asking about the Racket package for Ubuntu. I was told that Ubuntu cannot make packages and it leaves that to Debian.22:58
emI was told I should file a bug with Debian, and I did, here -- http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=59268822:58
emThat was on August 12, 2010, can Racket be in Natty now?22:59
maxbem: That bug report has not yet resulted in a finished package in Debian23:00
emThat's incredible.23:01
maxbhuh?23:01
emI filed that bug on August 12, 2010. I'm really surprised that Racket can't have any package in Ubuntu.23:01
maxbem: You are asking volunteers to do something, on their own time. They are doing it.23:02
emYeah Im not complaining. Im just disappointed.23:03
bdrungem: the only way to ensure that the software is package is either to do it yourself or to pay someone for it.23:15
embdrung: okay how much would that cost?23:16
paultagbdrung: has anyone ever paid you?23:16
paultagbecause that would be sweet.23:16
bdrungpaultag: no23:16
emhow much?23:16
paultagem: might want to pay someone @debian.org23:16
bdrungem: you need to find someone.23:16
paultagbdrung: I s'pose most @canonical get that deal23:17
bdrungem: the problem you will have if you pay someone for packaging it, you won't have someone who maintains it23:18
emthere is already someone who maintains it. It makes no sense to me.23:18
bdrungi found this: http://git.debian.org/?p=collab-maint/racket.git23:18
emlook at this -- http://git.debian.org/?p=collab-maint/racket.git;a=commit;h=86f39a16c0caf051cf9800b25858a156bd29b26d23:18
bdrungit's in NEW -> http://ftp-master.debian.org/new.html23:19
emwhat needs to happen so that it is in position so that Ubuntu can have a package for Racket?23:20
paultagem: we pull every six months from Debian. If it's in Debian, it's most likely it will migrate the next sync23:20
paultagunless there's a block, but I doubt that muchly.23:21
bdrungem: a debian ftp-master has to accept the package. then someone needs to request a sync.23:21
bdrungpaultag: it targets experimental. so it won't get synced automatically23:21
paultagbdrung: roger.23:23
paultagI did not even look at it23:23
bdrungkklimonda: the performance loss with removing the kibi_init function would be 1.3 %23:53

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