/srv/irclogs.ubuntu.com/2010/03/20/#ubuntu-motu.txt

^arky^geser: thank you will remember to use update-maintainer in future00:15
=== Anzenketh|away is now known as tuxmaster
=== tuxmaster is now known as anzenketh
=== StevenK_ is now known as StevenK
ddecatorcan someone familiar with 'ar' look at this and let me know why it returns "ar: two different operation options specified"?: http://pastebin.ubuntu.com/398155/05:14
ddecator(i get this while trying to get sqlite to build for songbird)05:14
persiaddecator: I think you7re missing an instruction.  I think you need `ar r ${FILES}` or similar.  I may be mistaken.05:17
ddecatorpersia: i'll give that a shot. thanks05:17
persiaddecator: man ar : you man need some modifiers (e.g. "rc" rather than "r")05:18
ddecatorpersia: thanks. i'm not very good at figuring out when to use which arguments for what yet, haha05:18
persiaThe trick is with older programs like tar or ar where the '-' is optional for passed options.05:19
persiae.g. `tar xf ...` and `tar -xf ...` are equivalent.  Woe betide the person who tries to deal with xf.tgz unprepared.05:20
ddecatorof course, now i get the fun of what script is causing it to revert back to 'ar' instead of 'ar r'05:23
persiaReally, `ar r` may not be complete.05:24
persiaAnd I'm not a big ar user, I just read the manual, so I could be completely wrong.05:24
persiaSo my recommendation would be to play with ar and make sure you understand which command you want.05:24
persiaOnly then does it make sense to fiddle the build scripts.05:24
ddecatori'll do that once i can figure out where the makefile is being auto configured so that any changes i make are reverted...05:28
persiaUsually in ./configure05:30
ddecatorright, it's just a huge file, haha05:31
ddecatoroh wait..05:32
ddecatorlooks like it's supposed to use 'ar cr' but the conditions aren't right or something...heading in the right direction though05:33
persiacr or rc would make sense, based on the manpage.05:35
ddecatorwhat the...even the configure file got reconfigured on me05:37
persiaDo you have configure.in or configure.am ?05:37
persiaIf so, those are the culprits .am -> .in ->05:38
persiaIf not, check debian/rules (or for a new package, INSTALL) for guidance.05:38
ddecatorit's just "configure" there is no "configure.am" or "configure.in", but there are "config.*" files and a "configure.ac"05:39
persiacheck configure.ac, but check debian/rules and INSTALL05:39
ddecatorconfigure.ac is blank...05:39
ddecatornvm05:39
ddecatortyped the name wrong, haha05:40
ddecatori'm not used to using terminal for everything...05:40
ddecatoryah, even configure.ac is being autoconfiged05:44
ddecatoreven config.cache is resetting...05:53
ddecatornope, never mind, making progress...05:54
persiaReally, check INSTALL or debian/rules.  It will explain how the build happens.05:55
ddecatori setup the rules file for this part of the build, not sure where the INSTALL file is located05:58
ddecatori've identified the problem as $(AR) not being defined correctly, but i can't find where it's defined07:35
persiamight be an implicit define : check the make manual (no, not man make, but the real manual)07:36
ddecatoraha, i think i figured it out. thanks persia07:42
ddecatoryup, that did it =)07:43
persiaGreat.07:43
anzenkethHello i was wondering where there is more information in regards to the rules file. Or a updated version of https://wiki.ubuntu.com/PackagingGuide/Complete08:08
anzenkethI am trying to make a package from scratch08:09
hyperairanzenketh: http://www.debian.org/doc/debian-policy/ch-source.html <-- see section 4.908:10
hyperairyou're advised to use debhelper though08:11
anzenkethI plan on using debhelper08:11
hyperairman dh08:12
anzenkethbasicly so far I have run dhmake edit the changelog edited control and edited copyright08:12
hyperairdh_make's debian/rules is hopelessly outdated.08:12
anzenkethahh08:12
hyperairjust rm it and copy the one from /usr/share/doc/debhelper/examples/rules.tiny08:13
hyperairyou'll have to bump debhelper's version in build-depends to 7.0.50 as well08:13
anzenkethDo I still want to use dh_make to make the other files08:14
anzenkethOr is there a new updated way to create all of the debian files08:15
anzenkethBasicly I am looking for the best place to learn how to create my first ubuntu package from scratch.08:25
persiahyperair: Don't need 7.0.50 for rules.tiny: only 7.0.0.  7.0.50 is for overrides.08:57
persiaanzenketh: I'll really put this on a wiki page soon, but here's the recipe:08:58
persia1) mkdir -p ${package}/debian; cd ${package*08:58
persia2) echo 7 > debian/compat; cp /usr/share/doc/debhelper/examples/rules.tiny debian/rules08:59
persia3) dch --create to generate debian/changelog08:59
persia4) create debian/control based on policy 5.208:59
persia5) create debian/watch based on man uscan09:00
persia6) uscan to get the latest sources; unpack; move debian/ in there.09:00
persia7) review *all* the files and generate debian/copyright (DEP5 is nice)09:00
persia8) build the source and fix bugs as you find them09:01
anzenkethpersia: how up to date is the maint-guide obtained though sudo apt-get install maint-guide09:11
persiaanzenketh: Looks like it hasn't changed in at least a year.09:12
persiaanzenketh: Check the changelog for more.09:12
anzenkethlooks like sep 2008 how much would I be missing on that becosue the wiki is not up to date the maitnance guide is not up to date09:15
persiaBoth the maint-guide and the wiki will give you usable instructions.09:15
anzenkethBasicly would I know enough to sucessfuly create a package09:15
anzenkethok09:15
persiaFollowing my quick guide above may or may not be easier/faster depending on your upstream source.09:15
anzenkethIt is a rather complecated package09:16
persiawhy?09:16
anzenkethIt is amahi I am trying to port it over to ubuntu. Complecated due to it includes inits and adds to the bins09:17
anzenkethbut that is about the complexity of it09:17
persiaWhat do you mean "adds to the bins" ?09:17
ddecatorjust for the record, i found the MOTU videos to be helpful, even if they are outdated ;)09:18
anzenkethYa I watched those too I understand everything but rules09:18
persiaFor includes inits, dh_installinit should do the job, and rules.tiny runs that automatically.09:18
persiaReally, unless you need something special, use rules.tiny.09:19
persiaIt works 90% of the time without extra thought.09:19
anzenkethBasicly this package is a ruby source with some c creates some init.d files and most the files go to /usr/bin and changes some config files and adds some directories09:21
persiaAdding init.d files and putting files in /usr/bin is fine (as long as it doesn't conflict with other files there).09:23
anzenkethit won't09:24
persiaChanging configuration files is only allowed if those configuration files are specifically related to your package.  Changing conffiles is futher only permitted if the user hasn't changed them manually.09:24
anzenkeththe tiny will create the directories as long as i have them specified right?09:25
persiarules.tiny will install everything in the places specified by the upstream build system install rule.09:26
persiaYou can use debian/amahi.install to add anything that is missing.09:27
sebnerhyperair: grrrrr, 87MB updates and no banshee :\09:27
anzenkethahh ok09:27
sebnerhuhu persia :)09:27
anzenkethI think I will give it a wearl09:27
persiaanzenketh: It does assume the upstream build system just works.  If that's not true, it's worth fixing it upstream.09:27
directhexsebner, i'm not leaning on anyone since 1.5.6 is due within hours-ish09:30
sebnerdirecthex: wasn't that the same with 1.5.5 ^_^09:30
directhexsebner, ywah, but there was a freez09:31
directhexalso, b-c-e clearing NEW is good news for us09:32
sebnerdirecthex: freeze, pffffffffffffffffffffffffffff09:32
sebnerdirecthex: sure09:32
hyperairsebner: hmm?09:33
directhexsince it means archive admins can just trust debian & don't need to spend any time on ubuntu NEW09:33
sebnerdirecthex: well, waiting for next week then :)09:33
sebnerhyperair: ~~~ = 0_o = ~~~~09:33
hyperairsebner: it's in the PPA =D09:33
sebnerhyperair: we need archive!09:34
directhexhyperair, is b-c-e in the PPA?09:34
hyperairdirecthex: er no it isn't.09:34
hyperairdirecthex: should we upload b-c-e to ubuntu?09:34
hyperairdirecthex: or do we have something we have to wait for... oh wait, stupid question.09:34
directhexhyperair, we need to wait for banshee to be synced, but given how imminent 1.5.6 is meant to be, i haven't leaned on anyone to sync 1.5.509:35
* hyperair sighs.09:35
hyperairoh well.09:35
hyperairlet's hope 1.5.6 doesn't go the same way as the previous two.09:35
Laneypatience, lads09:35
Laneyi expect syncs will be done at the start of the week09:36
hyperairo yay.09:36
hyperairi'll be internetless for the next two days or so09:36
hyperairmake that one and a half days.09:36
* Laney pats hyperair 09:37
Laneyit'll be alright in the end, I promise09:37
directhexdownload the internets onto your hard disk so you aren't disconnected!09:37
* hyperair weeps09:37
hyperairto maximize the clicheness of this moment, i suppose i should be burying my face in Laney's chest and bawling my eyes out09:38
directhexhttp://www.penny-arcade.com/comic/2002/7/1/09:39
hyperair._.09:40
hyperairsign language?09:40
=== shadeslayer is now known as shadeslayer_
muellihey folks :) I want to package a Python application which brings some public modules. It's called Volatility (from http://code.google.com/p/volatility/) and I have some problems with the packaging: setuptools installs everything as ./lib/python.../site-packages/ but Python in Ubuntu does not have site-packages in their PYTHONPATH. Does anybody know how to make setuptools install stuff in dist-packages?10:08
anzenkethpersia: looks like i need to do it the hardware upstream does not have a build system.10:13
persiaDo you know where things belong?10:14
anzenkethI can tell from the RPM .spec file10:14
persiaUgh.  Then you have to do the same hack in packaging.10:15
persiaman dh_install, and put stuff in debian/amahi.install10:15
anzenkethdoes the amahi.install allow commands like install -m 755 -p file   directory10:16
persiaanzenketh: No.  It allows commands like "bin usr/bin" which then expands into the right set of install -m ... calls.10:17
persiaSo it's much more concise: it's just sources and destinations, and doesn't bother the user with the actual implementation details.10:18
anzenkethok good that means most of it was done right previously10:18
anzenkethhow does the amahi.install know what permitions to give file?10:19
persiaIt uses the permissions from the source.  Later dh_fixperms goes though and tries to clean up.10:20
anzenkethahh ok time for me to learn the CDBS10:20
persiaWhy?10:20
* persia currently recommends against CDBS for new packaging : rules.tiny achieves the same goals, and is easier to debug10:20
anzenkethok10:21
anzenkethso how would I compile a c file10:22
anzenkethit has one c file it needs to compile10:22
persiaAnd that compilation happens in the .spec file?10:22
anzenkethyes in %prep it has a %setup -q and a make hdactl-hup10:23
persiaUgh.10:24
persiaWell, you can do that by adding an override_dh_auto_build: rule to debian/rules10:24
persiaBut the *better* way to do it is to make an upstream Makefile that does the right thing.10:25
persiaAnd then to share that for both types of packaging.10:25
persiaThat way if it needs to be adjusted, it only needs to be adjusted in one place.10:25
anzenkethI agree10:26
anzenkethnow I need to think of a way to define upstream build system.10:26
persiavi Makefile ?10:26
filipcan I debuild an i386 package on an amd64 system?10:27
kklimondayes10:27
persiaUm, no.10:27
filip;)10:27
persiaOne can use sbuild or pbuilder to generate i386 packages on an amd64 system.10:27
filipyou got me confused a bit :P10:27
persiaOne cannot use debuild alone10:27
anzenkethpersia:  so a build something is something like a standard config and makefile10:28
persiaanzenketh: Sure.  Or setup.py or build.xml, or ...10:28
anzenkethugh upstream author refuses to make a build system.10:34
anzenkethEhh oh well10:37
persiaThen you get to duplicate code :(10:38
anzenkethYep10:39
anzenkethHe states it is 20 times more work and it never updates10:40
anzenkethWhich may be true it is a old fedora package10:40
persiaIt's precisely the same amount of work, and half as much as duplication, *but* it's a bunch of work to migrate from package hacks to a real Makefile.10:43
persiaSo for now, just work around it.10:43
persiaIf enough people like amahi on Ubuntu, you will have leverage to share code between .spec and debian/rules in ./Makefile10:43
anzenkethWell it was already semiported I am just updating the port. And as it is there is duplicates of the same file.10:45
anzenkethDue to some require specific code in fedora and some specific in ubuntu.10:45
persiaThere's no good reason for that.  The code should be able to use lsb_release to figure out which distribution it's using, and do the right thing.10:45
anzenkethI would agree10:46
persiaThen make your version do that, and submit patches upstream :)10:47
muellioh, okay. my bad: setuptools installs correctly in ./dist-packages/ for python2.6 but cdbs10:47
persiaLess maintenance overhead in the future.10:47
muelli' install stage moves it to site-packages... ?10:47
persiamuelli: Is this a new package, or are you trying to fix a bug?10:50
muellipersia: a new package. "Volatility" from http://code.google.com/p/volatility/. I'm not used to package stuff at all btw...10:50
persiamuelli: OK.  So my recommendation is: if CDBS doesn't do what you want, use rules.tiny instead.10:51
muellipersia: hm. a quick google for that resulted in bug reports only. Do you have some more information or pointers to more information about that?10:52
persiamuelli: cp /usr/share/doc/debhelper/rules.tiny debian/rules and `man dh`.  Ask in #ubuntu-packaging if you get stuck.10:53
muellipersia: thx. will have a look10:53
muelliheh. funky rules file -.- And the best thing: It (nearly) does what I want! holy cow!11:00
persiamuelli: Are you using python-support?  There should be a built-in dh_pysupport call if you are.11:00
shadeslayerso... is there someone here who can update me with the latest 3.0 format?11:00
shadeslayerlike point me to a doc..11:01
muellipersia: Sorry. I don't know whether I'm using "python-support". I started from scratch calling setup.py myself from the debian/rules, but I thought it was wrong. So I tried cdbs which messed installation up and now I'm using your rules.tiny.11:02
persiamuelli: Add python-support to Build-Depends: in debian/control11:02
muellipersia: k. right now I put debhelper, cdbs, python-setuptools and python-central. But I will get rid of cdbs and python-central in favour of python-support, I guess.11:05
muellipersia: btw: shall we move this to #ubuntu-packaging? :)11:05
=== lionel_ is now known as lionel
persiaEven odds.  If you're planning to push this package into the main repos for lucid+1, it's equally on-topic in either place.11:06
muellipersia: k :)11:07
muellioh, and I wouldn't mind pushing that but for now I only want to distribute that program easily using the great PPA system :) But I'm willing to do the right^tm steps so that the package is ready for inclusion. And would keep spending my time caring about it.11:08
persiaFor PPA stuff, #ubuntu-packaging is more on-topic : this channel is about working on Ubuntu directly11:12
Anzenkethpersia: Thanks for your help I think i convinced him to change to cmake in the future for a packaging system.11:22
Anzenkethbut right now he wants to do it this way11:23
persiaAnzenketh: That's fine.  In my experience the best way to get someone to change their code is to patch it to do it the way you want, and still work the way they want, and share the patch.11:23
Anzenkeththat is basicly what I will be doing is creating the patch to merge over to cmake and do it the way he wants for now.11:24
Anzenkeththat requires me learning cmake11:24
persiaI think make is easier, and powerful enough for what you're doing, but cmake could work.11:24
Anzenkethwell his comment when i said cmake was that will help with a windows port11:25
AnzenkethI just rolled my eyes11:25
persiait's true.  cmake probably has better Windows support than make.11:26
AnzenkethI noticed somewhere if it is installing to a standard directory I only have to specify the file correct?11:26
Anzenkethor do I have to specify the path in the package.installer file11:26
persiaI recommend using a variable to define the path, so that the various packaging systems can overrride the variable to whatever they need.11:27
AnzenkethI like that idea11:28
Anzenkethalso reduces mistakes11:28
* Anzenketh is looking for a example of that11:28
Anzenkethpersia:  do you know of a good source I can look at to learn from on doing this11:31
persiaI know nearly nothing about cmake.  Sorry.11:31
Anzenkethno not cmake the amahi.installer file11:32
muellipersia: which patch system do you suggest? I used cdbs' simple-patchsys so far but it doesn't work know anymore after I included simple-patchsys: the clean target is messed up.11:33
persiamuelli: I've been using quilt lately, but I'm increasingly tempted by using Format: 3.0 (quilt) and not having a patch system at all (while still using quilt for local patch management).11:35
muellipersia: can I easily make quilt work with rules.tiny?11:37
persiaYeah.11:37
persiaTwo ways: 1) use Format: 3.0 (quilt), 2) replace "dh $@" with "dh --with quilt $@".  Pick one.  Don't use both.11:37
Anzenkethhow do I make debuilder stop at creating the build directories in the temp files?11:41
persiaAnzenketh: Why do you want it to stop?11:46
AnzenkethSo I can verify the build directories are created correctly11:47
=== shadeslayer is now known as Guest87270
persiaAnzenketh: Just check the build log.11:50
AnzenkethThat is right that is there.11:50
Anzenkethpersia: How do you compile one file that is in c in the rules file.11:52
persiaAnzenketh: Add an override_dh_auto_build: rule to debian/rules.  Add the compilation instructions from the spec file in that rule.11:56
Anzenkethso something like this11:58
Anzenkethoverride_dh_auto_build:11:58
Anzenkethmake hdactl-hup11:58
=== Guest87270 is now known as shadeslayer
Anzenkethmake hdactl-hup is all that was in there before.11:59
Anzenkethwell in the .specs file11:59
persiaWell, try that, and see if it works.12:02
persiaIf it doesn't work, then you may have to track down something else fom the .spec file.12:02
Anzenkethok12:02
AnzenkethThanks a lot for your help persia I am sure what I learn to this I will contribute 10 fold to some other ubuntu package12:03
AnzenkethAnd I am learning A ton12:03
Anzenkethpersia: can you do variables in a package.install and if so how to do disclare them.12:16
persiaYou can't.12:16
persiaBut since you know the location of the source, and you know the destination, you shouldn't need it.12:17
Anzenkethok12:18
AnzenkethI was just wondering to reduce typos12:18
Anzenkethnot that there will be many it is actualy a small package12:18
* abogani waves Anyone could review my merge proposal https://code.launchpad.net/~abogani/ubuntu/lucid/avrdude/avrdude.fix-529444/+merge/21640 Thanks!12:20
Anzenkethif i call dh_installinit and dh_installcron I should not have to install them in the package.install right?12:20
persiaAnzenketh: dh $@ will call them automatically.12:21
persiabut read the individual dh_* manpages to be sure of behaviour12:21
Anzenkethok cool12:21
Anzenkethit states note Note that this command is not idempotent. dh_prep(1) should be called between invocations of this command. Otherwise, it may cause multiple instances of the same text to be added to maintainer scripts. but dh $@ should take care of that right?12:23
Anzenkeththat is for dh_installinit12:23
persiadh $@ should take care of that.  You can always check what it will do with `dh --no-act ${COMMAND}`12:25
=== shadeslayer is now known as shadeslayer_
Anzenkethpersia: when I run that command I get dh: specify a sequence to run or dh: Unknown sequence dh_installcron (choose from: binary binary-arch binary-indep build clean install)12:41
persiaRight.  You need to use one of binary, binary-arch, binary-indep, build, clean, or install for ${COMMAND}12:44
Anzenkethoh ok12:45
Anzenketh it goes dh_installinfo -a    dh_installinit -a    dh_installmenu -a12:47
Anzenkethbut it is only called once12:48
Anzenkethand I have 2 init files12:48
muelliHow can I make debuild produce an architecture independent .deb? It's pure python after all.. debin/control has Architecture: any set.12:48
lifelessset it to all12:49
lifelesshave a look at the packaging guides for the meaning of Architecture - or debian policy, the primary reference for packaging12:49
Anzenkethpersia: I need to so things post install what is the best way to do that?13:03
persiaAnzenketh: What sort of thing do you need to do?13:05
persiaAlso, if you ask questions generally, someone else may answer faster :)13:06
AnzenkethSorry Looks like the .spec has a post install that changes permitions of files and directories in addition to running a scruot13:08
Anzenkethscript13:08
AnzenkethSo basicly post install I need to run a shell script13:09
persiaOK.  Permissions changes can be added with something like http://paste.ubuntu.com/398306/ in debian/rules13:10
persiaWhat does the script do?13:10
AnzenkethLooks like it changes permitions and ownership of files. Then goes though and moves some files for post configuration. Then restarts some services.13:14
Anzenkethhttp://pastebin.ubuntu.com/398308/ that is the script13:15
persiaOK.  Permissions/ownership you do with stuff like my paste.13:15
persiaYou *cannot* do the stuff that changes the samba configuration.13:16
persia(you'll have to work with samba differently)13:16
persiaSame for openvpn13:16
persiaand httpd13:17
AnzenkethIs there a way to tell the installer to run a shall script post install?13:17
persiaand the apache user13:17
persiaYes, but first I'm going to tell you the bits that need adjustment :)13:17
AnzenkethYa I know some permitions are off13:18
persiathe %preun stuff and the hdactl.cache changes can be done in maintainer scripts.13:18
persiaNot permissions.  You can't mess with other packages.13:18
persiahttp://women.debian.org/wiki/English/MaintainerScripts is the best document for maintainer scripts I know.13:18
persiaI believe dh_installinit will do the service restart.13:18
persiaThe cache stuff may need manual additions.13:18
Anzenkethok so for permitions change I can use the pastbin for the cache stuff I can do maintainer scripts13:20
AnzenkethJust to clarify There is no wat to change config files of other packages13:21
persiaIt is in direct contravention of policy.13:22
persiaMany packages provide a programmatic way to adjust configuration under certain circumstances.13:22
persiaI believe both apache and samba fall into this category.13:22
persiaRead the documentation for those packages: you may be able to do something useful.13:22
AnzenkethSo once I find that programic way how would I have the debian install run those commands.13:37
persiaIn the maintainer scripts.13:40
Anzenkethok13:40
persiaNote that if the packages you need to adjust *don't* already include such a thing, you'll need to work with those packages to enable such a tool.13:41
AnzenkethAnd I can not run commands like sed correct?13:42
persiahttp://www.debian.org/doc/debian-policy/ch-files.html#s-config-files13:53
* abogani waves14:27
aboganiAnyone could review my merge proposal https://code.launchpad.net/~abogani/ubuntu/lucid/avrdude/avrdude.fix-529444/+merge/2164014:27
aboganiThanks!14:27
nigelbanyone noticed trouble with submittodebian?14:34
nigelbI said that patch has been submitted, but I dont see anything in the bug report14:35
lfaraoneI was wondering if anybody had the time to review the merge proposal attached to bug 540934?15:25
ubottuLaunchpad bug 540934 in lshell "The default configuration lets a user run every system command" [High,Triaged] https://launchpad.net/bugs/54093415:25
DktrKranzpersia: I prepared a preliminary UDD query to display mismatches between sha1sums from Debian and Ubuntu, output is http://merkel.debian.org/~dktrkranz/unmatch_sha1sums15:28
persiaDktrKranz: Thanks.  That's not bad at all.  I'll take a look through them, and see if I can't identify some candidates to get back in sync for lucid+115:32
DktrKranzpersia: I'll adjust a bit more to be in a better display format and then ask lucas if it can be pushed as UDD cgi15:33
persiaDktrKranz: Don't worry about it.  I think I can hit about 50% of it one-off, and the rest is probably relatively unfixable without deep social engineering.15:35
persiaI actively recognise most of these packages as being special in one way or another.15:35
persiaI may ask you for an update near DIF of lucid+1, but won't need it again until then.15:36
DktrKranzok15:36
persiaAdding it to UDD cgi just raises attention to it, and in many cases, we don't want that.15:36
DktrKranzscript is on merkel. so I can run anytime15:37
persia(because the reason for the variation may reflect badly on Ubuntu<->Debian relationships)15:37
persiaPerfect.  Thanks.15:37
DktrKranzif you want, I can adapt it to be run on a machine not restricted to DDs15:37
DktrKranz(alioth, that is)15:37
persiaI certainly don't need that.  If there's another user who wants it, or if you have an interest in doing so yourself... :)15:38
DktrKranzNot that much, as I use merkel for UDD hacking ;()15:39
persiaWell then :)15:40
persiaBut thanks again: as a one-time run, this is hugely useful to me.15:40
nigelbis submittodebian broken?15:41
lfaraonenigelb: please elaborate.15:42
nigelbI followed the instructions but nothing updated on bug15:42
nigelband it seems to be diff-ing only the changelog and not the changes made to package15:42
lfaraonenigelb: it won't modify your bug, it'll submit a new bug to debian.15:43
nigelbthats strange because it searched debian bugs and asked me which bug this patch corrected15:44
nigelbI'm not talking about reportbug15:44
* lfaraone will brb, no idea about your problem, it worked for me :)15:44
* nigelb will try again15:45
aboganiAnyone could review my merge proposal https://code.launchpad.net/~abogani/ubuntu/lucid/avrdude/avrdude.fix-529444/+merge/21640 ? Thanks!15:49
nigelbaha, my submittodebian troubles spring from sendmail I think16:22
=== korn_ is now known as c_korn
nigelbwhich I have no clue to fix16:26
=== shadeslayer is now known as Guest56644
=== shadesla1er is now known as shadeslayer
ryanakcaCould someone please take a look at bug 538283 ?18:00
ubottuLaunchpad bug 538283 in turnin-ng "Please merge turnin-ng 1.0.1-1 (universe) from Debian unstable (main)" [Wishlist,Confirmed] https://launchpad.net/bugs/53828318:00
crimsunryanakca: Uploaded; thanks for your contribution to Ubuntu Lucid!18:12
ryanakcacrimsun: thanks18:12
=== shadeslayer is now known as shadeslayer_
duanedesignif or current version is 0.32.4-12ubuntu1  and the new upstream is 0.34.1-1 that would make our new package 0.34.1-1ubuntu2 ?20:24
duanedesigns/or/our20:24
=== james_w` is now known as james_w
geserduanedesign: almost, 0.34.1-1ubuntu1 as it's the 1st change to 0.34.1-1 (but contains all the unmerged colltected Ubuntu deltas)20:41
duanedesigngeser: thank you. I had a feeling I was thinking about that wrong :)20:51
=== Anzenketh is now known as anzenketh|brb

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