/srv/irclogs.ubuntu.com/2014/12/18/#kubuntu-devel.txt

valorieRiddell: something weird with that task00:19
valorielooks like you didn't save/submit yet00:19
valorieand I can't submit it00:19
valoriesoee_: I wrote a rough draft, thanks for reminding me00:19
valorieI'll polish that and send00:19
=== rdieter_work is now known as rdieter
bukaiRiddell: Hi07:36
ovidiu-florinbukai: good morning08:03
bukaiovidiu-florin: good morning :)08:03
ovidiu-florinhow's the theme testing going?08:04
ovidiu-florinhttp://test2.kubuntu.co.uk/wordpress/ still has the default theme08:04
bukaiovidiu-florin: I have just finished installing wordpress now I am uploading my theme. 08:05
ovidiu-floringreak08:07
ovidiu-floringreat*08:07
bukaiovidiu-florin: If i import my database to the new one will all the pages that I had created be restored?08:07
ovidiu-florin1. It depend on what you have in that  DB08:08
ovidiu-florin2. why do you need a DB for a theme?08:08
bukaiI created all the pages in my local machine , that gets stored in the DB afaik hence,08:09
bukaiimporting it will import all the pages i have created I guess08:10
ovidiu-florinyes, but didn't you create those pages on a wordpress instance?08:10
bukaiyes, I did08:11
ovidiu-florinthen why not make that WP instance public?08:11
bukaiok, I will try doing it. Btw theme activated08:12
ovidiu-florinFailed to load resource: the server responded with a status of 404 (Not Found)08:13
ovidiu-florinhttp://test2.kubuntu.co.uk/kubuntu/wp-content/themes/html5blank-stable/img/logo.png08:13
ovidiu-florinthe url is wrong08:13
ovidiu-florinand I think there are some elements missing08:13
bukaiI guess I have to change some of the links08:13
bukaiovidiu-florin: Is it a better option to upload to wordpress?08:15
ovidiu-florinbukai: please be specific. Wordpress the site, or Wordpress our instance.08:16
bukaiour instance08:16
ovidiu-florindo you want to upload those images using the wordpress uploader? is that what you mean?08:20
bukaiyes08:21
ovidiu-florinIt would be better, in that case the WP instance will be aware of it08:21
bukaiovidiu-florin: I am unable to make changes to the header.php, there is no update option!08:24
ovidiu-florinwhat are you trying to do?08:25
bukaicorrect the link ->http://test2.kubuntu.co.uk/kubuntu/wp-content/themes/html5blank-stable/img/logo.png to http://test2.kubuntu.co.uk/wordpress/wp-content/themes/html5blank-stable/img/logo.png08:27
bukaiin the header.php08:27
bukaiI changed the premission to 755 still not working08:32
ovidiu-florinwhere is the site situated on the server? in what dir?08:33
yofel/home/subho020m/test2.kubuntu.co.uk/wordpress - so 755 will not work as "www-data" has no write permissions08:34
ovidiu-florinfound it, thank you08:36
ovidiu-florinbukai: can I edit the header file?08:36
bukaiSure08:36
ovidiu-florinplease set the write permissions so I can08:37
sitterMirv: as it turns out the bogus QSGSimpleTextureNode symbol retraction in plasma-framework I mentioned yesterday apparently only happens on utopic while vivid still exports them not sure why though :S08:37
bukaiovidiu-florin: how do I change the permission?08:38
ovidiu-florinwhat do you use to access the files?08:38
bukaiwhat I use as in?08:39
ovidiu-florinssh, dolphin, filezilla08:39
yofelovidiu-florin: you're admin, so you could just 'sudo -u subho020m -i" if you want to edit them in the shell08:39
ovidiu-florinyofel: I'm admin? awesome08:40
bukaissh08:40
ovidiu-florinyofel: thanks, but he should also learn how to do that08:41
yofeltrue :)08:41
ovidiu-florincd into /home/subho020m/test2.kubuntu.co.uk/wordpress/wp-content/themes/08:41
bukaiok08:41
bukaithen?08:42
ovidiu-florinyofel: do you recommend "chmod a+w -R html5blank-stable" or better to create a group webdevs and add me and bukai to it?08:42
ovidiu-florinI think the group thing is safer08:44
yofellatter would be cleaner, but would need SGID set on folders and www-data added to it so apache also has w permissions, former is faster08:45
Mirvsitter: oh, I did see it when I was compiling the ~rc 2.5 weeks ago: https://launchpadlibrarian.net/191605713/buildlog_ubuntu-vivid-amd64.plasma-framework_5.4.0-0ubuntu3~rc~test1_FAILEDTOBUILD.txt.gz08:45
MirvI haven't tried with the final yet because of your 5.5.0 transition and my scripts take the -proposed version and upload that, which wouldn't yet compile08:45
sittermost peculiar08:45
ovidiu-florinyofel: then add me and bukaito the www-data group?08:46
ovidiu-florinand chown -R :www-data ?08:46
ovidiu-florinto the whole WP site?08:46
ovidiu-florinbut that would be a risk08:46
ovidiu-florinit gives appache access to everything08:46
ovidiu-florinI'll go with the webdevs group thing08:47
yofelwell, apache only really needs access to wp-content/uploads/ usually, anything else it shouldn't need to access (unless you use the wp theme files editor, which is urgh)08:47
ovidiu-florinyeah08:49
ovidiu-florinbukai: 08:49
ovidiu-florinyou are now added to the webdevs group08:49
ovidiu-florinchange the group of the whole WPI dir to webdevs08:49
ovidiu-florinrun: cd ~ && chown -R :webdevs test2.kubuntu.co.uk08:51
ovidiu-florinand then run: chmod -R g+rw test2.kubuntu.co.uk08:52
bukaiok, I will run this in /home/subho020m/ ?08:53
ovidiu-florinyes08:53
ovidiu-florinchown (change owner)08:53
ovidiu-florin:webdevs (change the group to webdevs)08:53
ovidiu-florin-R recursive, this and all under08:54
ovidiu-florinchmod (change mode) g+rw (add read write to group permissions)08:54
ovidiu-florinbukai: any questions?08:54
bukaiwhat is the use of ~&& ?08:55
ovidiu-florin~ translates to /home/$USER, which for you means /home/subho020m/08:57
ovidiu-florin&& means: if previous command was successfull, run this command08:58
ovidiu-florinthat's just to inline things08:58
ovidiu-florinyou could not use && and run them separately08:58
ovidiu-florinmention me after you run the commands09:01
=== soee_ is now known as soee
bukaiovidiu-florin: i ran those09:03
ovidiu-florinI still see the group of the test2.kubuntu.co.uk dir to be your group09:04
bukaiyes, that is because it is giving operation not permitted09:05
ovidiu-florinyofel: you can't change thw group of your own files?09:06
bukaiovidiu-florin: what do we do now?09:12
ovidiu-florinI've changed the group for you09:13
ovidiu-florinbukai: So the logo apears now09:17
ovidiu-florindoes the theme look ok to you?09:18
ovidiu-florinto me it looks like there's no CSS09:18
bukaitheme is ok, when the pages are added it would look as it is suppossed to look. But Logo does not appera for me09:20
bukaiovidiu-florin: the editor shows all the css are included.09:22
bukaiovidiu-florin: but still I cannot modify the header file directly from the browser!09:23
* sitter falls off chair09:24
sitterMirv: I was being stupid again... apparently my vivid rebuild was still done against 5.3 hence the symbol disagreement between vivid and utopic09:24
Mirvsitter: :D09:27
EgorMatirovRiddell: hello. Could you make a GCI task for testing latest kubuntu vivid? I can test both amd64 and i686.09:29
ovidiu-florinbukai: you don't modify it from the browser09:32
ovidiu-florinbukai: use Shift+F5 to refresh, without cache09:32
bukaiovidiu-florin: ok09:37
* bukai leaves for a while09:38
Riddellerk new images10:04
RiddellEgorMatirov: yeah get testing!10:04
EgorMatirovRiddell:ok, thank you.10:07
RiddellI made a task, but needs someone to approve it http://www.google-melange.com/gci/task/edit/google/gci2014/581506146553036810:08
sitterRiddell: http://paste.ubuntu.com/9559098/10:32
sittercontext: cmake package has different name so people have a hard time finding the right dev package10:32
sitterI think we briefly discussed this in munich10:33
sitteralso affected: plasma-framework, baloo, kio10:33
Riddellsitter: meh, I'm skeptical, what do debian think?10:41
soeevalorie: thank you, got your mail10:41
RiddellEgorMatirov: http://www.google-melange.com/gci/task/edit/google/gci2014/5815061465530368 approved, grab it while it's fresh10:43
EgorMatirovRiddell: claimed10:44
RiddellEgorMatirov: great, now test test! :)10:45
EgorMatirovRiddell: btw, should welcome dialog with language selection and etc be displayed after boot iso?10:45
RiddellEgorMatirov: can you take a screenshot?10:46
EgorMatirovRiddell: I mean, testcase says that it should but there is only plasmashell and "Install Kubuntu" icon on desktop10:48
RiddellEgorMatirov: yes, so probably we want to disable it from the live cd10:48
RiddellEgorMatirov: take a screenshot, file bug :)10:48
EgorMatirovRiddell: Which package is related to this bug? AFAIK, I need to specify one.10:52
RiddellEgorMatirov: I won't remember until I see a screenshot :)10:54
RiddellEgorMatirov: probably kubuntu-notification-helper10:54
sitterehm, no10:55
sitterthat is not even enabled on the live session AFAIK10:56
EgorMatirovRiddell: http://i.imgur.com/GBSL2fP.jpg10:56
EgorMatirovfrom Kubuntu Desktop testcase: "The system boots properly and loads the installer displaying Welcome dialog with language selection and 'Try Kubuntu' and 'Install Kubuntu' buttons"10:56
EgorMatirovIs it just unchanged testcase?10:57
RiddellEgorMatirov: oh I see, that's talking about ubiquity-dm which isn't enabled10:57
Riddellbecause it doesn't work with sddm10:57
Riddellso yes something to fix, there is already a bug somewhere under ubiquity10:57
Riddellpossibly a closed one10:57
EgorMatirovRiddell: ok, got it. Thanks10:57
Riddellhmm can't find it, just report a new one then10:58
EgorMatirovRiddell: also, is bug with wrong timezone recognition during install related to ubiquity?11:00
Riddellum, probably, I don't know that one11:01
EgorMatirovRiddell: Is there something specific that I should write in bug report (about ubiquity-dm). Now it looks like "Ubiquity-dm doesn't work with sddm. So it's now possible to use it with Kubuntu Live iso"11:10
EgorMatirovMaybe you know something related to this?11:10
RiddellEgorMatirov: yes that'll do11:10
EgorMatirovI found it: https://bugs.launchpad.net/kubuntu-ppa/+bug/136259911:11
ubottuLaunchpad bug 1362599 in Kubuntu PPA "ubiquity-dm does not transition to sddm to plasma5 desktop" [Undecided,Fix committed]11:11
EgorMatirovbut fix was reverted11:12
RiddellEgorMatirov: well discovered, I set to to apply to ubiquity in vivid11:14
Riddellhi Sergobot 11:35
SergobotRiddell: hello11:35
RiddellSergobot: are you working on calligra 2.9 beta?11:37
RiddellI seem to have failed to assign that task11:37
SergobotRiddell: Yes. But I can't build it11:37
Riddellok assigned11:38
RiddellSergobot: what's the problem?11:38
SergobotRiddell: log https://paste.kde.org/p1oauxixq11:39
Riddellah yes, patches need updating11:40
sitterMirv: qtsensors push please :)11:41
SergobotRiddell: so, how to update them?11:42
RiddellSergobot: I expect the patch is still needed so you need to manually work out what needs to change, we use a tool called quilt to manage patches11:42
RiddellSergobot: if you run  quilt push  you should get the same error as you pasted11:42
RiddellSergobot: if you run   quilt push -f  it'll apply it and break (before it would test first and not apply it)11:43
=== kbroulik is now known as kbroulik-lunch
RiddellSergobot: actually if it's just fuzz (meaning line numbers changed) it may just apply with just  quilt push11:43
RiddellSergobot: in which case use  quilt refresh  to update line numbers and it's all good11:43
SergobotRiddell: I also have one unmet dependy. Calligra needs libkactivities-dev, but when I try to install, it wants to remove plasma-desctop from my PC11:47
EgorMatirovSergobot: you need to have plasma5 afaik11:48
SergobotRiddell: But I have it11:48
RiddellSergobot: what version of kubuntu and of plasma do you have?11:49
SergobotKubuntu 14.10 and Plasma 511:49
SergobotRiddell: Plasma 5.1.111:50
RiddellSergobot: possible you'd be better developing it in a chroot made with debootstrap for vivid11:50
SergobotRiddell: what do I need to run in terminal?11:51
RiddellSergobot:  sudo debootstrap vivid vivid11:51
Riddellthen sudo chroot vivid  will give you a vivid system (of sorts)11:52
=== kfunk is now known as KRF
Mirvsitter: qtsensors pushed11:56
sitterthanks11:56
Riddellanyone know about dh_acc? I can recreate this but I've no idea what it's moaning about (it's a new library soversion) https://jenkins.qa.ubuntu.com/job/vivid-adt-marble/lastBuild/ARCH=amd64,label=adt/console12:04
sitter       dh_acc - abi-compliance-checker dump generator and comparison12:05
SergobotRiddell: I still can't install libkactivities-dev. It needs to remove plasma12:44
shadeslayerAbi tar is probably out of date I guess12:45
shadeslayerRiddell: ^^12:45
=== kbroulik-lunch is now known as kbroulik
RiddellSergobot: so remove it?12:55
Riddellshadeslayer: there isn't one, do I need to make one somehow?12:55
SergobotRiddell: But I want to use Plasma12:55
RiddellSergobot: it's just a chroot12:56
Riddellwork in side the chroot12:56
Sergobothow to work inside it?12:57
SergobotRiddell: how to work inside it?12:58
yofelshadeslayer, Riddell: marble ships an acc configuration without the actual ABI tarball. That can't work12:58
yofelpersonally I'm against using it at all until it supports uncompressed symbol tables12:59
RiddellSergobot: sudo chroot vivid13:00
Riddelland then work as normal13:00
Riddellyou might need to copy over any config files you have and you might need to export LANG=C and LC_ALL13:00
Riddellyofel: gotcha, I'll delete it then13:00
Riddellhi Sick_Rimmit 13:01
Sick_Rimmitcatch u in a bit in meeting13:01
=== rdieter_ is now known as rdieter
shadeslayeryofel: ahh13:03
shadeslayerRiddell: why not create the file instead13:03
yofelplease ask debian first why it's not there before you commit a binary blob into git13:03
shadeslayerHeh13:04
Riddellshadeslayer: what's the point? we already have .symbols files to check for ABI13:05
yofelacc is more accurate13:06
yofelwhich is good, only dh_acc sucks13:06
shadeslayer^^13:06
yofel.symbols are more for something like dh_shlibdeps13:07
* Riddell packaging the rest of kde applications13:12
RiddellEgorMatirov: only 1 test done? (and that one failed!)13:16
EgorMatirovRiddell:oh, no. (I have done all tests for amd64, they all have similar bug and I'm filling it now)13:17
Riddellgreat13:18
EgorMatirovRiddell: ubiquity recognizes wrong location\timezone for me. It detects "Yekaterinburg" (UTC+6). But I live in Izhevsk (UTC+4). I'll fill this bug there: https://bugs.launchpad.net/ubuntu/+source/ubiquity/+filebug13:19
EgorMatirovIs it right place?13:20
RiddellEgorMatirov: good enough, the code itself might be in debian-installer or maybe it's just part our how your internet is set up but ubiquity will do for now13:20
EgorMatirovRiddell: ok, thanks. (about internet... I tried some geo services based on ip determination and all of them says that my ip belongs to Izhevsk)13:22
BluesKaj_Hey all13:27
Riddellhi BluesKaj_ 13:31
BluesKaj_Hi Riddell13:33
SergobotRiddell: can you help me? https://paste.kde.org/pchlmwud013:43
RiddellSergobot: as I say use  quilt push  if that works then   quilt refresh   will tidy up the line numbers13:46
SergobotRiddell: but quilt push doesn't help https://paste.kde.org/pxet4gdfi13:47
RiddellSergobot: so you need to get dirty in the code13:57
Riddellquilt push -f13:57
Riddellthen edit (with kate or emacs or whatever) krita/sketch/CMakeLists.txt krita/sketch/CMakeLists.txt.rej13:57
Riddelland manually copy over the changes13:57
Riddellthen quilt refresh13:57
EgorMatirovRiddell: hm, Am I right that `locale -a` should output all available locales in live session?14:03
EgorMatirovand that it should contains most of languages available for selection during install14:04
RiddellEgorMatirov: yes I think so14:04
Riddellno during install will be loads of langauges, locale -a will only display the installed ones14:04
EgorMatirovRiddell: oh, ok. I have a bug when installing with wrong locale (looks like with any locale) and I read logs a bit14:07
Riddellwhat's the bug?14:07
EgorMatirovand ubiquity says that "setting locale failed. please check that your locale settings ... are supported and installed on your system"14:08
EgorMatirovI selected russian, and when I click "next" after choosing timezone it fails14:09
EgorMatirovI'll provide logs, wait a bit please14:09
SergobotRiddell: I can't build it :( https://paste.kde.org/pfdvfvdfq14:10
RiddellSergobot: you sorted one patch, this just needs the same stuff done14:11
RiddellSergobot: in this case the patch is called upstream_switch-to-librevenge-based-import-libs.patch which tells me it comes from calligra (upstream) anyway so the patch is no longer needed14:12
RiddellSergobot: so just delete the patch in debian/patches and remove from debian/patches/series14:12
RiddellSergobot: run   quilt push -a  to check if all the patches apply14:12
EgorMatirovRiddell: http://paste.ubuntu.com/9560539/ and http://paste.ubuntu.com/9560568/14:16
RiddellEgorMatirov: uh oh14:17
RiddellEgorMatirov: anything different on that install than on other installs? different language set?14:17
EgorMatirovRiddell: I tried Russian, Ukrainian, French, "Catala", "Dansk" languages with same result.14:19
RiddellEgorMatirov: but fine with English?14:19
EgorMatirovI'll reboot now and try again14:19
_Groo_Riddell: whazup riddell, when you have a minute,could you take a look at plasma-workspace in ci? its the only package breaking a clean upgrade today, the others rebuild fine14:20
EgorMatirovRiddell: hm, before - yes.14:20
Riddell_Groo_: porque mi? sitter knows more about ci14:21
SergobotRiddell: I still can't build it. quilt push -a ran without issues.14:22
RiddellEgorMatirov: fooey, use  ubuntu-bug and report a bug then14:22
sitterread ci channel topic and start uisng a snapshot ppa14:22
RiddellSergobot: what happens?14:22
SergobotRiddell: there is veeeery long log14:22
RiddellSergobot: do you see an error line?14:23
RiddellSergobot: how far does it get?14:23
RiddellSergobot: maybe we should set up a shared ec2 server so I can see what you're doing14:23
SergobotRiddell: here is small part from log's end. https://paste.kde.org/pabtthpjp14:24
RiddellSergobot: I think you have something mixed up with your chroot there14:24
SergobotRiddell: what do you mean?14:25
RiddellSergobot: vivid/ contain the chroot filesystem, you don't seem to be inside that filesystem, the filesystem seems to be inside your packaging14:25
=== jono is now known as Guest60113
SergobotRiddell: so, what should I do?14:26
RiddellSergobot: let me set up an ec2 and we can work on that14:27
SergobotRiddell:  okay14:27
EgorMatirovRiddell: same with Russian, but it works at least with English and Belarusian14:28
Riddelllucky belarusians14:29
EgorMatirov:D14:29
Riddellshadeslayer: sitter: is that koko build yours?14:33
Riddellin ~blue-shell-next14:33
RiddellSergobot: ssh ubuntu@ec2-54-92-241-134.compute-1.amazonaws.com14:34
RiddellSergobot: copy the .orig .debian and .dsc fiels to ec2-54-92-241-134.compute-1.amazonaws.com:mnt/14:34
RiddellSergobot: run byobu at your login14:34
SergobotRiddell: Permission denied. May be you used my old pubkey?14:35
Riddellsitter: vhanda says that failing test needs internet access so can be ignored14:36
RiddellSergobot: I used the one at https://launchpad.net/~sergobot256/+sshkeys14:36
RiddellSergobot: update launchpad if you've a new one14:36
SergobotRiddell: but there is the latest14:38
RiddellSergobot: and ssh ubuntu@ec2-54-92-241-134.compute-1.amazonaws.com  fails?14:39
RiddellEgorMatirov: you can tick live session surely? http://iso.qa.ubuntu.com/qatracker/milestones/328/builds/85790/testcases14:39
SergobotRiddell: yes it fails14:40
RiddellSergobot: try logging in with password foobar14:41
SergobotRiddell: it doesn't ask for a password14:41
RiddellSergobot: try again?14:42
SergobotRiddell: logged!14:42
Riddellphew14:42
RiddellSergobot: ok scp the three files into mnt/14:42
EgorMatirovRiddell: oh, I think yes (but with unbiquity-dm bug)14:44
Riddellyep14:44
SergobotRiddell:  scp asks password, but doesn't accept foobar14:48
RiddellSergobot: set username to ubuntu@ ?14:48
Riddellsitter: wouldn't we be better to set up meta packages than rename all the -dev packages ?14:49
Riddellkde-frameworks-tier1 ?14:49
SergobotRiddell: it asks password for sergey@ec2-54-92-241-134.compute-1.amazonaws.com14:49
Riddell14:48 < Riddell> Sergobot: set username to ubuntu@ ?14:50
EgorMatirovSergobot: Use ubuntu@ec2... 14:50
sitterRiddell: also prone to error as with the provides14:50
sitteralso we wouldn't rename all the dev packages14:50
sitterwe would rename 4 of them14:50
sitterto align with the 50 others14:50
Riddellaligns in some sense, makes them inconsistent in another sense14:51
sitterRiddell: how does it make them inconsistent?14:51
Riddellsitter: it names them after libraries which don't exist14:52
yofelin that case you would need to make kio-dev provide a -dev package for any lib it contains14:53
yofeljust renaming kio sounds more sensible IMO...14:53
sitterRiddell: that's onlyt he case for KIO I think14:54
sitteryou are being as nitpicky as I am usually :P14:54
sittervery unreasonable14:54
sitterthe thing is: the user does not care, we do not care, the policy doesn't care, cmake doesn't care, our tooling doesn't care ... nothing cares whether or not libkf5kio-dev actually has a libkf5kioN associated with it14:55
sitterat any rate there is a libkf5kiocoreN for which libkf5kio-dev is still a better fit than kio-dev14:56
Riddellshrug, go ahead, but I will forever be reminding you there's no such thing as libkf5kio :)14:56
sitterpft14:56
sittertake it up with upstream :P14:56
RiddellI've already got dfaure to admit he was wrong and I was right once this year, I think twice would be just impossible14:57
sitterif the cmake packages weren't shared fro multiple libraries then there wasn't an argument to be had here :P14:57
EgorMatirovRiddell: I filled bug report. What should I do with this test case? Mark as "Failed" and provide link to bug?14:59
RiddellEgorMatirov: which one?15:00
EgorMatirovRiddell: Non-English Live Session & Installation15:00
EgorMatirovhttps://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/140391415:01
ubottuLaunchpad bug 1403914 in ubiquity (Ubuntu) "Crash after selecting timezone with non-US locale" [Undecided,New]15:01
RiddellEgorMatirov: yeah I guess that's a fail15:01
EgorMatirovRiddell: ok, thank you.15:01
Neo31hello guys :)15:03
Riddellhola Neo31 15:03
RiddellNeo31: EgorMatirov is also doing testing today but as ever all help appreciated and don't be afraid to duplicate15:03
EgorMatirovNeo31: Hi. Yep, I could miss something.15:04
RiddellSergobot: you're uploading calligra_2.9.0.orig.tar.gz ? but 2.9.0 doesn't exist where's that from?15:09
SergobotRiddell: I cloned sources from git and packed them to archive15:10
RiddellSergobot: nah just get the released version15:11
RiddellSergobot: download (with wget) from here http://download.kde.org/unstable/calligra-2.8.90/15:11
RiddellSergobot: we usually only package released versions because then if someone has a problem we all know what they're working with15:11
Neo31sure Riddell, it's a confirmation that everything is fine ;) and a training so next time I am more ready (actually i can teach new recruits from our loco team ;) )15:11
RiddellNeo31: ooh please :)15:12
SergobotRiddell: done15:13
RiddellSergobot: where are you getting the packaging from?15:14
Neo31I will ping you for testing and bug triaging stuff Riddell. but I might need a mentor recommendation for some dev stuff next month. I hope you know someone who can help (I will transfer the knowledge to our loco team of course)15:14
Riddellyou'll need to rename calligra-2.8.90.tar.xz to follow the right name for orig tars15:14
RiddellNeo31: yeah me or others are happy to help, although I probably won't be around much for next two weeks since it's fiesta time15:15
Neo31ah yeah yeah, anytime u think appropriate really ;)15:16
SergobotRiddell: unpack?15:18
RiddellSergobot: yep15:18
=== rdieter_ is now known as rdieter_laptop
RiddellEgorMatirov, Neo31: you guys onto i386?15:23
Neo31no i have amd64 i can get i386 if that is needed15:23
RiddellNeo31: yeah that's what needs most testing just now15:23
Neo31ok i will start downloading i386, but not sure if i can start testing early tonight (i'll be travelling to another city either tonight or early morning)15:25
Riddellthanks15:26
Neo31thanks to u Riddell ;)15:27
EgorMatirovRiddell: yep, I'm downloading i38615:31
RiddellSergobot: fix the version number in the changelog15:31
SergobotRiddell:  what should it be?15:32
RiddellSergobot: 2.8.9015:33
Riddellmissing the last 015:33
bukaiovidiu-florin: ping15:38
RiddellSergobot: try this..15:39
_Groo_Riddell: not, porque me, its porque eu?15:45
_Groo_Riddell: no reason, you were alive, thats all :D15:45
SergobotRiddell: What should I do next?15:45
_Groo_Riddell: and i dont have access,so ^.^15:45
RiddellSergobot: fix the broken patch? didn't you already do that on your local computer?15:46
SergobotRiddell: no, didn't15:47
RiddellSergobot: observe :)15:48
RiddellSergobot: voila15:49
RiddellSergobot: voila15:50
_Groo_Sergobot: voila abuse detected! rule 256-b of the kubuntu-devel clearly states! just one voila per hour or riddell will kill a puppy.15:51
Riddellthese are evil rules15:52
_Groo_Riddell: says the puppy killer!15:54
Riddell_Groo_: hey I have to feed my starving grandmother!15:56
_Groo_Riddell: give interns to her instead15:57
_Groo_Riddell: they are a good source of proteins15:58
Riddellhear that Sergobot? EgorMatirov? you're a good source of proteins15:58
RiddellSergobot: do you know what to do?15:58
SergobotRiddell: no. Can you help me?15:59
RiddellSergobot: it's looking for a library boost-system but can't find it15:59
RiddellSergobot: this must be something new since the 2.8.x version of calligra15:59
RiddellSergobot: apt search  will let you find what it's called16:00
=== KRF is now known as kfunk
_Groo_Riddell: look at this, more work :D16:00
_Groo_https://www.irccloud.com/pastebin/rSx1UuV216:00
_Groo_fun stuff16:01
RiddellSergobot: go with libboost-system1.55-dev16:01
_Groo_dont mention it :)16:01
RiddellSergobot: add it to build-depends in debian/control16:01
Riddelland debuild16:01
RiddellSergobot: missing a comma in debian/control I think16:05
EgorMatirovRiddell: I'm not good source of proteins! :D (Sorry, was busy)16:05
SergobotRiddell: how to out from chroot?16:29
EgorMatirovExit16:30
EgorMatirovexit16:30
Sergobotthanks, EgorMatirov16:30
RiddellSergobot: chroot or the ec2?16:30
Sergobotchroot16:30
Riddellcontrol-d will also do it16:30
SergobotRiddell: build failed! :(16:39
RiddellSergobot: yep, filenames will have changes16:40
Riddellchanged16:40
RiddellSergobot: you need to edit the .install files in debian/ for the new filesnames16:40
RiddellSergobot: look in debian/tmp for the files16:40
Riddelland run  dh_install --list-missing  to check if the .install files are ok16:41
Riddellthere will be lots of missing files as well, that's fine, they're listed in debian/not-installed16:41
Riddellbut you'll have to check for new files16:41
SergobotRiddell: Should I change anytjing in karbon.install?16:48
Sergobot*anything16:48
RiddellSergobot: I don't know what files is it complaining about?16:49
SergobotRiddell: What should I do?16:54
RiddellSergobot: looks like it has renamed to libkarboncommon.so.1416:55
RiddellSergobot: update that name in karbon.install16:55
RiddellSergobot: eek you started the compile from the start again!16:57
Riddellthat'll take ages16:57
Riddelljust run  dh_install --list-missing  to check if the .install files are ok16:57
Riddellthen  debuild -nc  once you're happy to build it without a clean16:57
Riddell(but too late now)16:57
Sick_RimmitRiddell: Hi, sorry was in Sprint demo earlier, how you doing ?17:01
Riddellsprint demo?17:01
RiddellEgorMatirov: how's the testing of i386?17:02
Sick_RimmitRiddell: At work no worry17:02
Sick_RimmitRiddell: Our code development sprints run for 6 weeks, day before release we do a demo of what we been making to the company17:03
EgorMatirovRiddel: tested 2 cases. I'll fill them now17:03
RiddellSick_Rimmit: a 6 week sprint! that's a marathon!17:03
Sick_RimmitRiddell: Yes, we're trialling out timings in our Scrum process, this run seems to have worked out17:04
Riddellsitter: what am I doing wrong? https://paste.kde.org/p1grhxvcf17:09
RiddellSergobot: now you can update krita.install17:17
Riddellor karbon.install rather17:17
SergobotRiddell: what's wrong with krita?17:17
RiddellSergobot: karbon I ment17:18
RiddellSergobot: comprende?17:23
sitterRiddell: that regex matches the cmakelists17:26
sitterwell17:26
sitters/regex/wildcard17:26
Riddellsitter: what?17:28
Riddellsitter: ah seems I was trying to apply it to the wrong package17:30
sitterthat would also do it17:30
sitterpkgkde-symbolshelper batchpatch -v 4:14.12.0 -c arm64,armfd,powerpc,ppc64el *txt17:30
sitterfrom your ls17:30
sittermatches17:30
sitterbuildlog_ubuntu-vivid-*.txt AND CMakeLists.txt 17:31
Riddellah yes17:31
RiddellSergobot: compiling again?17:45
SergobotRiddell: sorry, forgot about -nc flag :(17:45
Riddellit's your own time you're waisting :)17:46
Riddellwasteing 17:46
Riddellsomething like that17:46
shadeslayeranyone know of a man page where I can read apt-get's exit codes?18:05
Riddellman apt-get?18:06
shadeslayerdoesn't have them18:07
shadeslayerquite annoying18:07
EgorMatirovRiddell: review please: http://www.google-melange.com/gci/task/view/google/gci2014/581506146553036818:14
Riddellall done?18:15
EgorMatirovI didn't test live netbook only18:15
Riddellno that doesn't exist any more18:15
Riddellso you did the right thing18:15
EgorMatirovRiddell: thank you. Do you have any tasks related with code? :)18:18
RiddellEgorMatirov: thanks  closed!18:21
RiddellEgorMatirov: fixing icon sizes I think it my only one currently18:21
Riddellhttp://www.google-melange.com/gci/task/view/google/gci2014/581854361026560018:22
EgorMatirovRiddell: how should it done? I should add transparent space from "smaller" sizes? so, if it's 30x32, I add 1px from both sides and it becomes 32x3218:24
EgorMatirovRiddell: am I right?18:24
RiddellEgorMatirov: yep exactly18:24
EgorMatirovRiddell: ok, thank you18:24
Riddellhi kranzer 18:26
kranzerhi Riddell 18:26
kranzerRiddell: as you see, I claimed that task18:26
Riddellkranzer: assigned :)18:27
Riddellkranzer: have you got kubuntu vivid running?18:27
kranzerno, I just wanted to ask you where to get it?18:27
kranzerRiddell: and even what is it?18:28
EgorMatirovhi kranzer :)18:29
Riddellkranzer: it's the codename for the development version of kubuntu18:29
Riddellwhich will be kubuntu 15.0418:29
Riddelldownload at http://cdimage.ubuntu.com/kubuntu/daily-live/20141218/18:29
Riddelland install on either your computer or on a virtual machine18:29
kranzerRiddell: Isn't it that thing that I install yesterday?18:30
Riddellkranzer: could well be, what did you install yesterday?18:30
kranzerEgorMatirov: привет :)18:30
kranzerRiddell: Kubuntu 15.04, I tested it18:31
soeewhat is the Vivid release date ?18:31
Riddellkranzer: that's the one18:31
Riddellsoee: 04/1518:31
kranzerRiddell: this thing yeah?18:32
soeeRiddell: ok so i think ill sync my website release with Vivid release, so all the images etc. ill use will come from Vivid18:32
kranzerRiddell: okay, I need to reboot to windows18:32
Riddellsoee: great yes18:32
kranzerto start my virtual machine18:32
kranzerRiddell: where to get the list of bugs?18:37
Riddellqa.kubuntu.co.uk18:38
Riddelllink to utopic milestoned bugs18:38
kranzerRiddell: thank you18:38
kranzerRiddell: these ones https://bugs.launchpad.net/ubuntu/+bugs?field.searchtext=&orderby=-importance&field.status%3Alist=NEW&field.status%3Alist=CONFIRMED&field.status%3Alist=TRIAGED&field.status%3Alist=INPROGRESS&field.status%3Alist=FIXCOMMITTED&field.status%3Alist=INCOMPLETE_WITH_RESPONSE&field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&assignee_option=any&field.assignee=&field.bug_reporter=&field.bug_commenter=&field.subscribe18:39
kranzer?18:39
Riddellthere's a reason that was a shortened url :)18:39
Riddellthere's 7 of them18:40
kranzerRiddell: and only two of them are new18:41
soeeRiddell: guys on #plasma told me that yesterday there was patch for plasma 5.2 that adds prev/next shortcuts to activities, is there any chance to backport it to 5.1 ?18:44
Riddellunlikely that code has changed a lot18:45
SergobotRiddell: can you help me?18:47
RiddellSergobot: looks like it's gone, just remove it from the .install file (control-k in nano to remove a line)18:49
RiddellSergobot: and control-w to find text18:49
Riddelland control-z to background and fg to forground a terminal application18:50
kranzerRiddell: So, I need to triage only that two bugs?18:51
Riddellkranzer: triage all of them18:51
Riddellto check if they should be marked as valid for vivid18:51
kranzerhmmm18:51
Riddellthen mark them valid for vivid, not sure what permissions you need for that18:51
kranzerRiddell: so18:51
Riddellprobably you need to be a member of ~ubuntu-bugs or something18:52
kranzerRiddell: i need to triage utopic bugs, yeah?18:52
Riddellkranzer: yep18:52
Riddellto check if they are still valid on vivid18:52
kranzerRiddell: and if they're reproduced I am to mark them as valid for vivid18:52
Riddellkranzer: yep18:53
Riddell"nominate for series" "vivid"18:53
SergobotRiddell: there isn't line with keximigrate_spreadsheet.so18:53
kranzerRiddell: I didn't understand your last message18:53
Riddellkranzer: to mark them for vivid click "nominate for series" "vivid"18:54
RiddellSergobot: voila18:54
kranzerRiddell: where is the button I need to click?18:55
SergobotRiddell: thanks18:56
Riddellkranzer: on the bug page18:57
Riddellkranzer: probably you need to apply to join this https://launchpad.net/~ubuntu-bugcontrol/+members18:58
RiddellSergobot: kexi-postgresql-driver is the package it's trying to install into18:58
Riddelldh_install: cp -a debian/tmp/usr/lib/kde4/kexidb_pqxxsqldriver.so debian/kexi-postgresql-driver//usr/lib/kde4/ returned exit code 118:58
Riddellbad file is kexidb_pqxxsqldriver.so  package is kexi-postgresql-driver18:59
kranzerRiddell: there's no button "Join group"18:59
kranzerRiddell: what to write if I didn't reproduce the bug?19:06
SergobotRiddell: how to make this work faster? There are many lines in krita.install19:10
kranzerRiddell: https://bugs.launchpad.net/ubuntu/+source/kipi-plugins/+bug/1372920 everything works good on my VM19:20
ubottuLaunchpad bug 1372920 in kipi-plugins (Ubuntu) "kipi-plugins should depend on libkqoauth" [Undecided,New]19:20
=== rdieter is now known as rdieter_work
RiddellSergobot: open it in kate?  using sftp://ubuntu@aws.1.2.3/home/ubuntu/ ?20:29
SergobotRiddell: how to do it?20:33
EgorMatirovSergobot: use "kate sftp://ubuntu@ec2-54-92-241-134.compute-1.amazonaws.com/path/to/your/file"20:44
RiddellFile -> Open -> sftp://ubuntu@ec2.1.2.3/home/ubuntu/21:06
kranzer Riddell: could you review?21:15
R33D3M33Rhello, will KDE 14.12 come to Kubuntu 14.10 via kubuntu-backports ppa or should I use some other PPA21:24
R33D3M33R?21:24
RiddellR33D3M33R: yes backports but I don't know when21:29
R33D3M33Rgreat, no hurry21:29
Riddellkranzer: sorry too much cava to review21:30
kranzerRiddell: what is cava?21:31
EgorMatirovRiddell: Excuse me, did you submitted task with icons? (Nobody didn't confirm it yet, I'm just wondering if you understood that I want to work on it).21:34
RiddellEgorMatirov: http://www.google-melange.com/gci/task/view/google/gci2014/5818543610265600 unapproved21:59
Riddellping valorie with it21:59
Riddellwaa I can't get konqueror to run22:05
Riddellcan anyone run konqueror?22:05
Riddellmeh22:07
yofelon plain vivid it works fine22:14
valorieRiddell: done22:16
valoriepublished, I mean22:16
RiddellEgorMatirov: ↑22:17
Riddell"How much wood could a woodchuck chuck if a woodchuck could chuck wood?" - Guybrush Threepwood, Monkey Island22:17
Riddellpublished kubuntu.org/news/kubuntu-vivid-alpha-122:18
kranzerRiddell: could you review my task?22:19
soeei think 2nd screenshot here https://wiki.ubuntu.com/VividVervet/Alpha1/Kubuntu should use Plasma5 also :)22:20
Riddellsoee: it's a wiki, edit :)22:25
mparillosoee: I replaced the second screenshot. If you have a high-resolution monitor, feel free to replace it again, showing more apps.23:49
mparillohttps://wiki.kubuntu.org/VividVervet/Alpha1/Kubuntu23:49
Riddellthanks mparillo 23:50
mparilloRiddell: YW, and when Plasma 5.1.2 lands and resolves https://bugs.kde.org/show_bug.cgi?id=340966 (I hope), I could show more apps. No pressure though ;-)23:52
ubottuKDE bug 340966 in general "Plasma 5 crashes maximizing VMware Player" [Crash,Resolved: fixed]23:52
soeemparillo: thanks, i had no time since im working atm :/23:52
mparillosoee: YW. That work thing. Messes up our hobbies.23:54

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