IRC log for #maemo-ssu on 20120914

00:00.28DocScrutinizer05and I publicly blamed Suse devels and dunno whom else for fucking up that stuff
00:02.20DocScrutinizer05still you usually see etc7init.d/hwclock which does hwclock --systohc on shutdown, and of course recalculates systemic error based on RTC running on a totally off time it got set to during last boot when last systemic error correction kicked in, while systemclock got adjusted meanwhile to correct time
00:07.30DocScrutinizer05I usually "fixed" that mess by neutering etc/adjtime, replacing hwclock by a wrapper adding --noadjfile to each call to hwclock, and a wrapper to date that invoked date and hwclock --systohc when date got invoked to set time
00:08.59merlin1991hm even with the timed:TimeControl permission I can't access the rtc
00:09.16merlin1991I guess I'll have to use the timed api, fu nokia
00:14.05DocScrutinizer05meanwhile: https://gitorious.org/opensuse/aaa_base/blobs/336db0a714e4ff0d866ddc76cb911b8ca87a2c79/files/etc/init.d/boot.clock#line207
00:16.06DocScrutinizer05while mine looks like: http://pastebin.ca/2204004
00:17.41merlin1991oh ffs there QmTime api is bullcrap, there is a method to set both system and rtc time, but no method to sync the rtc with the system time
00:19.00DocScrutinizer05haha, hahahaha, haha
00:19.30DocScrutinizer05so x=gettime(); QmTime.settime(x)
00:20.02DocScrutinizer05introduce scew a few ms each single time you run that
00:20.51merlin1991yeah I'm just wondering if I should patch the QmTime::setTime call into openrdate, (which currently has no qt dependency whatsoever) or should write an own binary which does what you wrote
00:24.03merlin1991hm own binary is faster, nfc how to get qt support into something built by autotools
00:30.33*** join/#maemo-ssu LaoLang_cool (~LaoLang_c@221.226.175.140)
00:37.09merlin1991http://paste.debian.net/189754/
00:37.19merlin1991hm could get rid of line #2
02:35.53*** join/#maemo-ssu amiconn_ (amiconn@rockbox/developer/amiconn)
03:35.44*** join/#maemo-ssu DocScrutinizer05 (~HaleBopp@openmoko/engineers/joerg)
06:19.32*** join/#maemo-ssu LaoLang_cool (~LaoLang_c@221.226.175.140)
06:23.08*** join/#maemo-ssu djszapi_ (~lpapp@92.251.255.7.threembb.ie)
06:23.25*** part/#maemo-ssu djszapi_ (~lpapp@92.251.255.7.threembb.ie)
06:33.24*** join/#maemo-ssu LaoLang_coo_ (~LaoLang_c@221.226.175.140)
07:30.58*** join/#maemo-ssu arcean (~arcean@aacy99.neoplus.adsl.tpnet.pl)
07:47.27kerioDocScrutinizer05: as i said, maemo-launcher is crap
07:47.44kerio*maemo-invoker?
08:49.46*** join/#maemo-ssu M4rtinK2 (~M4rtinK@mail.melf.eu)
09:14.54freemangordonkerio: why crap?
09:15.53keriofreemangordon: because if i'm launching a program i expect it to be launched where i am, with my environment, under my terminal and in my process group
09:15.58kerionot "somewhere else"
10:22.41*** join/#maemo-ssu Sicelo (~sicelo@us.members.bombshellz.net)
10:22.41*** join/#maemo-ssu Sicelo (~sicelo@unaffiliated/sicelo)
10:23.39keriomerlin1991: can you add labels to community-thumb and community-devel?
10:24.25*** join/#maemo-ssu djszapi (~lpapp@kde/developer/lpapp)
10:24.51*** part/#maemo-ssu djszapi (~lpapp@kde/developer/lpapp)
10:28.50keriomerlin1991: also, do you pay for bandwidth on merlin1991.at?
10:38.28*** join/#maemo-ssu ThreeM (~DonJohnso@cassiopeia.uberspace.de)
10:58.14*** join/#maemo-ssu BCMM (~ben@unaffiliated/bcmm)
11:20.22*** join/#maemo-ssu Sicelo (~sicelo@us.members.bombshellz.net)
11:20.22*** join/#maemo-ssu Sicelo (~sicelo@unaffiliated/sicelo)
11:51.04*** join/#maemo-ssu jonwil (~jonwil@27-33-137-199.static.tpgi.com.au)
12:17.45*** join/#maemo-ssu arcean_ (~Arcean@aacy99.neoplus.adsl.tpnet.pl)
12:18.15*** join/#maemo-ssu arcean_ (~arcean@aacy99.neoplus.adsl.tpnet.pl)
12:22.25DocScrutinizer05kerio: well, if that's crap, then it's not alone
12:29.54*** join/#maemo-ssu jonwil (~jonwil@27-33-137-199.static.tpgi.com.au)
12:30.00*** join/#maemo-ssu dafox (~dafox@ip51cc571d.speed.planet.nl)
12:30.58DocScrutinizer05kerio: crap is a question of defining your requirements
12:31.32DocScrutinizer05probably for the requirements defined for it, the maemo-launcher is not all that bad
12:32.00kerioare we even sure it speeds up the startup of programs?
12:32.14DocScrutinizer05yes
12:33.01DocScrutinizer05and not only that, afaik it even reduces memory footprint
12:33.23keriobut... shared objects are already shared!
12:33.32DocScrutinizer05eh?
12:33.48keriothere aren't multiple copies of gtk in memory
12:33.52DocScrutinizer05kerio: who would share them for you?
12:34.02kerioare there?
12:34.38DocScrutinizer05they are (usually dynamically, but still) linked libraries
12:35.31DocScrutinizer05I don't think any .so is really shared in memory
12:35.42DocScrutinizer05they are shared on storage
12:35.46keriohm
12:36.19DocScrutinizer05I might be wrong, but then I have to be terribly wrong
12:37.43DocScrutinizer05aiui in the end it's a file handle (on some very very low level) that opens the *.so and reads (parts of) it into memory for the process to run the code
12:37.58DocScrutinizer05maemo-launcher shares that filehandle
12:39.15DocScrutinizer05nah, it probably even shares the pointer table that points to shared mamory where the .so got loaded
12:39.55DocScrutinizer05that's the whole point of "early binding" resp "preloading" the libs
12:42.31DocScrutinizer05idly wonders how the maemo-launcher incarnation/instance after the fork() will get rid of the program text of the launched binary. Must do some free(), or dlclose(), tricky
12:44.48DocScrutinizer05anyway the "add --exec parameter, for launching normal binaries" (in maemo-launcher ToDo list) sounds like something worth evaluating
12:45.52keriowtf is run-standalone.sh?
12:46.27DocScrutinizer05a script setting up some $env you need for "normal" processes to run cleanly
12:46.38kerioi see
12:46.40DocScrutinizer05e.g session-bus
12:47.01kerioi might be repeating myself, but fremantle is a fucking mess
12:47.24DocScrutinizer05you could think of it like a ueber-"su user"
12:50.33DocScrutinizer05or rather "su - user --command='sudo gainroot'"
12:56.24merlin1991kerio: no I only pay the monthly fee for the server, though if the bandwidth usage in 1 month goes over 100GB I have to tell them that I'm really not running p2p stuff on the box :D
12:57.13DocScrutinizer05hmm?
12:58.16DocScrutinizer05aah
12:59.46keriok
13:00.09DocScrutinizer05merlin1991: lol, welcome next my door with your server ;-D
13:00.15kerioplease add a label to the repo so i can properly pin cssu-θ without pinning cssu-d
13:00.39merlin1991DocScrutinizer05: somehow your sentence does not compute
13:00.54keriomerlin1991: your servers are probably geographically close or something like that
13:00.58DocScrutinizer05<PROTECTED>
13:01.11keriooh, hoppily close
13:01.15DocScrutinizer05probably is less than 3000m away from me
13:01.28keriooh, it's in germany?
13:02.00DocScrutinizer05could try to find out where's hetzner's rz10
13:03.33DocScrutinizer05anyway you also could parse this statement according to
13:03.37DocScrutinizer05<PROTECTED>
13:03.38DocScrutinizer05<PROTECTED>
13:03.40DocScrutinizer05<PROTECTED>
13:04.31merlin1991hm I gotta check if hetzner has a better server option these days
13:06.48DocScrutinizer05or like >> time ssh docscr@maemo.cloud-7.de wget merlin1991.at/some_few_GB_file    --> real: 0m0.500s <<
13:07.25merlin1991:D
13:07.34DocScrutinizer05i'm pondering a move to server4you
13:08.00keriohost everything on S3
13:08.01DocScrutinizer05central services (aka andromeda-labs) is too expensive
13:08.10kerioand provide multiple mirrors across the world
13:11.01DocScrutinizer05merlin1991: https://www.server4you.de/
13:12.44ThreeMovh.net
13:12.56merlin1991holy shit
13:13.04ThreeMbetter known as: Bittorrent spreading rz
13:13.05merlin1991one time payment of 150€ for the server
13:13.16merlin1991(server4you)
13:14.06DocScrutinizer05huh?
13:14.17DocScrutinizer05wtf are you looking for?
13:14.25merlin1991the dedicated servers on server4you all have: Einrichtungsgebühr€ 149,00 oder € 10,00/Monat
13:14.53DocScrutinizer05oh shit!
13:17.20ThreeMlook over ovh.net. there are cheap. or if shared hosting is enoght, ueberspace.de
13:17.24merlin1991hm I could get the same specs but 24gb ram instead of 8 for the same price and no one time payment on hetzner
13:19.55DocScrutinizer05duh?
13:20.30DocScrutinizer05merlin1991: which offer?
13:20.36merlin1991DocScrutinizer05: the new ex 5 dedicated server from hetzner is pretty much the same thing I have (same cpu same hdd space, ...) but it has 3 times the ram
13:20.47DocScrutinizer05aah
13:20.59DocScrutinizer05I thought same offer like server4you
13:25.09DocScrutinizer05hetzner is stingy with their storage
13:25.38DocScrutinizer05750GB raid-1 c'mon
13:26.00merlin1991ex4 has 3tb raid1
13:26.17merlin1991but only 16gb ram :D
13:26.21DocScrutinizer05for a server costing 60€/month I'd expect at very least 2TB
13:27.07merlin1991hm I wonder how hard it is with hetzner to move to a new server
13:27.55DocScrutinizer05I probably could help there, I know a (now ex-)hetzer-service dude
13:28.23DocScrutinizer05but basically it shouldn't be hard at all
13:28.54DocScrutinizer05they should even do the migration for you, basically you don't notice anything except sudden change in hw specs
13:28.57DocScrutinizer05aiui
13:29.25merlin1991hm then they'd have to resize my partitions though
13:29.43merlin1991since it would pounce from 750gb to 3 tb :D
13:29.48DocScrutinizer05sure
13:30.00DocScrutinizer05or rather, you have to do that
13:30.22merlin1991yeah they probably just dd the image over and tell you to claim the additional space if you feel like
13:30.28DocScrutinizer05yep
13:30.57DocScrutinizer05try to catch user sid on #maemo or #openmoko
13:31.07DocScrutinizer05or generally on freenode
13:31.42DocScrutinizer05ask him if he's Imi from Hetzner and knows Joerg
13:32.35DocScrutinizer05I'm not sure he registered as sid
13:34.48merlin1991hm when did I add the thumb repo to my server, since the 9th of july my daily traffic jumped to about 4 gb from basically nothing
13:35.04freemangordonhehe
13:35.34DocScrutinizer05lol
13:36.00merlin1991hm the thumb folder is from 11th of may
13:36.05merlin1991let's find the tmo post
13:36.09DocScrutinizer05mumbles about 50€ and "steep still"
13:36.22freemangordonmerlin1991: what version to put on dosfstools
13:37.08merlin1991freemangordon: keep the version, we have the same cruft in -testing and there we're not going to go mental unless we want to add an epoch
13:37.23freemangordonok
13:37.27DocScrutinizer05idly wonders if he should feel responsible for inclusion of dosfstools
13:37.44freemangordonDocScrutinizer05: and what is the problem with dosfstools?
13:37.54DocScrutinizer05I hope nothing
13:38.36DocScrutinizer05just feel in a mood to "sum up my life"
13:38.44keriomerlin1991: what?
13:38.49keriowe have to fix the version, dammit
13:38.59freemangordonyou hope? ubuntu upstream version, sitting in testing for half an year or so and you *hope*?
13:39.31DocScrutinizer05ok, I'm  not even thinking anything. Better?
13:39.39merlin1991kerio: relax, the version of dosfstools even does what it should reagarding to original plan, because there is only 1 -
13:39.40freemangordonmuch better :)
13:39.53DocScrutinizer05oiaeunzeqoibc oieqnuc1poe
13:39.57keriofreemangordon: remember to use +, anywy
13:39.59kerioanyway
13:40.12merlin1991what a coincidence, post from freemangordon about thumb is from the 11th of july
13:40.35freemangordonwhich one?
13:40.41merlin1991http://talk.maemo.org/showthread.php?t=84829
13:40.48merlin1991the very first in the thread :D
13:40.54DocScrutinizer05still no story why 4GB/d need download
13:41.23merlin1991DocScrutinizer05: yeah, it's kinda odd
13:41.29merlin1991maybe I should enable the http logs again
13:41.34DocScrutinizer05yep
13:41.35freemangordonmerlin1991: it's june
13:41.49merlin1991freemangordon: shit you're right
13:41.51merlin1991headdesks
13:42.11DocScrutinizer05somebody drawing daily mirrors?
13:42.14*** join/#maemo-ssu IronLegend (~IronLegen@ironlegend.student.ipv6.utwente.nl)
13:42.28merlin1991unlikely, the complete thumb repo only has 1.4 gb
13:42.37DocScrutinizer05with brute force wget?
13:42.47merlin1991thumb + devel would be 2.5 gb
13:43.36merlin1991logfiles it is
13:43.42DocScrutinizer05:nod:
13:43.54DocScrutinizer05never disable any logfiles ;-)
13:44.16merlin1991what I don't know about doesn't scare me ;)
13:44.25DocScrutinizer05idly checks maemo.cloud-7 munin
13:47.31DocScrutinizer05what are the implications of available entropy ditch?
13:48.41merlin1991hm I think I'll let the logs run for a few days and see if I can extract any stats about # of -thumb users
13:49.09freemangordonmerlin1991: well, that will make sense once new update is out
13:49.18merlin1991freemangordon: it works now too
13:49.27freemangordonworks?
13:49.38freemangordonwhat works?
13:49.39merlin1991everythime somebody apt-get updates I have a hit on the Release  and Packages.gz file
13:49.42merlin1991creating stats
13:50.20freemangordonaah, you mean HAM's scheduled checks
13:50.26merlin1991yep
13:50.27DocScrutinizer05also for those funny usrs that are clueless about which repos to enable?
13:50.28freemangordonok
13:50.42merlin1991they do run in the background if you have connectivity
13:50.49merlin1991and only a few people have disabled them :)
13:50.56kerioraises his hand
13:50.59merlin1991kerio:  I know :)
13:51.06kerioD: are you stalking me
13:51.17DocScrutinizer05It seems some have enabled/added repos they really shouldn't, though
13:51.42merlin1991nah, you raised your hand when me and Pali talked about the integer overflow related to that time calculation
13:52.04DocScrutinizer05quite understandable, given not even me has a complete picture about all the repos around maemo
13:52.35merlin1991well ofc counting the amount the new mp gets downloaded is a better metric
13:52.49merlin1991freemangordon: when do you think you'll have the new version out?
13:54.28freemangordonmerlin1991: will try to be ready today or tomorrow
13:54.33merlin1991okay
13:54.44freemangordoni hope you are available, i'll need your help
13:54.51freemangordonto cleanup the old versions
13:55.09DocScrutinizer05just notices he's obviously wasting a significant part of his life on PC, while RL goes by unnoticed out there
13:56.02merlin1991I'll be around today though not at home after 6CET so expect higher response times :), tomorrow I'll be avaiable for sure
13:56.13DocScrutinizer05seems the "sum up life" background task just finished and the result been alarming
13:56.15kerioDocScrutinizer05: don't say "wasting" :(
13:56.18freemangordonwell, i'll aim tomorrow then
13:56.24keriosay "rightfully dedicating"
13:56.37merlin1991today is fine aswell, it's just when you say "clean the repo now" I might take up to 30 mins :D
13:56.48freemangordonok
13:56.56keriomerlin1991: when you say clean the repo, you mean...
13:57.01DocScrutinizer05~botsnavck
13:57.05DocScrutinizer05~botsnack
13:57.05infobotthanks, DocScrutinizer05
13:57.09merlin1991kerio: remove the old versions so we have no collisions
13:57.46keriook, so remove every package with "-thumb" in the version?
13:58.04merlin1991yep
13:58.22keriohm, do you have to rebuild packages to fix the version names?
13:58.25freemangordonmerlin1991: you may want to remove alarmd stuff
13:58.35freemangordonI mean now
13:58.52freemangordonkerio: guess
13:58.58keriono?
13:59.22freemangordonand the winner is...
13:59.44freemangordonno,no, not kerio
13:59.49kerio:(
13:59.51kerioi never win
14:00.19keriofreemangordon: hm, isn't alarmd already up to date in your repo?
14:00.26merlin1991freemangordon: actually, why?
14:00.32keriooh, the version is +1m5
14:00.33freemangordonchanged the version
14:00.37kerioi see
14:01.05freemangordonit is now +thumb0, was -thumb0
14:01.24keriofreemangordon: the current version in -testing is 1.1.16+0m5+0cssu0
14:01.31keriothe current one in -thumb is 1.1.16+1m5+0cssu0-thumb0
14:01.39keriois the +1m5 the problem?
14:03.05freemangordonkerio: are you sure about the version in -testing
14:03.22merlin1991checks the version in testing
14:03.35freemangordontoo
14:03.37keriofreemangordon: yep
14:03.42keriobut thanks for the trust :c
14:03.47kerioor lack thereof
14:04.53freemangordonalarmd (1.1.16+0m5+0cssu0) unstable; urgency=low
14:04.59freemangordonWTF?
14:05.33keriowhat?
14:05.36freemangordonthat is what is on gitorious
14:05.46kerioyeah, that's also what's in the repo
14:06.39freemangordonkerio: where did you get your alarmd from?
14:06.47kerioyour repo!
14:07.25freemangordonaah, sorry, my fault, i thought you mean the version in -testing
14:07.47keriothe version in -testing is +0m5, the version in -thumb is +1m5
14:07.50kerioand it's weird
14:08.48freemangordonanyway, i'll do a script with the exact version, so there should be no problem
14:09.17merlin1991kerio: nah that's not weird
14:09.35merlin1991that's probably "dch -i" going crazy (as usual)
14:09.46merlin1991btw kerio thumb now has Suite: community-thumb
14:10.05kerio^_^
14:10.42freemangordonnaah, it is my fault, i raised the version by mistake
14:12.31keriofreemangordon: anyway, the priority-based approach to version fixing is sound
14:32.10keriomerlin1991: you could clean up community-devel, btw
14:32.20keriothe stuff there matches -testing now, right?
14:36.19*** join/#maemo-ssu Sicelo (~sicelo@unaffiliated/sicelo)
14:48.42*** join/#maemo-ssu M4rtinK2 (~M4rtinK@mail.melf.eu)
15:21.46keriofreemangordon: oh dammit
15:22.08keriofreemangordon: the current metapackage depends on the -thumb versions
15:38.37keriohey, why is modest in the metapackage? :(
15:48.00*** join/#maemo-ssu NIN101 (~NIN@p5DD28B5A.dip0.t-ipconnect.de)
16:01.30freemangordonkerio: could you do ls -al /usr/bin/controlpanel.launch
16:03.59kerio-rwxr-xr-x 1 root root 48108 2012-07-06 17:25 /usr/bin/controlpanel.launch
16:04.41freemangordonthe fuck, 41780 here
16:06.02DocScrutinizer0548108 Apr 11  2011
16:06.25freemangordonseems like thumb-compiled, going to check it
16:06.40DocScrutinizer05yeah, thumb saved some 300 bytes ;-D
16:07.10DocScrutinizer05ooh wait
16:07.15DocScrutinizer057k
16:07.27freemangordonstill not enough
16:07.37freemangordonshould something like 20k
16:09.26DocScrutinizer05freemangordon: you asked about detail info on *.launch?
16:09.51DocScrutinizer05freemangordon: there's a decent README in the source.tgz
16:10.07freemangordonDocScrutinizer05: I think it  could be thumb-compiled
16:10.14freemangordonint -testing
16:10.38DocScrutinizer05eeeew
16:11.10DocScrutinizer05thank god I didn't get it on my cssu-testing device then, obviously
16:11.14freemangordonobjdump cannot read arch flags :(
16:11.24freemangordonDocScrutinizer05: you have it
16:11.48DocScrutinizer05or is it like that since Apr 11  2011 ?
16:11.57freemangordonyep
16:12.02DocScrutinizer05ffs
16:13.15DocScrutinizer05starts to think that thumb SiErr impact is much smaller than we worried
16:13.18freemangordonhmm, looks ok in IDA
16:13.52freemangordon7k is about 20%, ain't?
16:14.39*** join/#maemo-ssu M4rtinK2 (~M4rtinK@mail.melf.eu)
16:14.59DocScrutinizer05~100 - (41780 / 48108)*100
16:14.59infobot13.153737424129
16:15.08freemangordonTag_THUMB_ISA_use: Thumb-1
16:15.11freemangordonit is ok
16:16.15DocScrutinizer05~41780 *1.1315
16:16.15infobot47274.07
16:16.22DocScrutinizer05err
16:16.37DocScrutinizer05~48108/1.1315
16:16.37infobot42517.012814847549
16:16.47DocScrutinizer05headdesks
16:17.17keriothumb-1 is ok?
16:17.56freemangordonit stands for "no thumb" :)
16:18.01kerioaww
16:18.47freemangordoni am tempted to thumb-compile gzip, half of the HAM slowness is because of it
16:18.55keriodo it!
16:19.00freemangordonnot no
16:19.05freemangordonnot now
16:19.35keriok
16:20.37keriomerlin1991: hm, is there an easy way for you to only apt-mirror the latest versions of packages in -devel?
16:20.59merlin1991yep, it's a single command
16:21.08merlin1991I'm only pondering if I should though
16:21.09kerio-devel's package list is bigger than debian's
16:21.22kerioand it's ridiculous
16:21.57merlin1991I'd need to replace the apt-mirror with reprepro and it should work
16:22.04merlin1991apt-mirror always clones everything
16:22.20keriooh, reprepro has a way to mirror another repo?
16:22.24merlin1991but actually it's a nice idea, to create a reduced repo to speed up ham
16:22.33DocScrutinizer05freemangordon: (gzip) makes perfect sense
16:24.38merlin1991kerio: yeah it has, you can even "track" another repo and still have your own stuff on top
16:24.41keriohell, i don't get why we have to keep multiple versions on repository.maemo.org
16:24.41DocScrutinizer05defines abiguous usage of -devel and -testing a bashable major criminal offense
16:24.57kerioproposes cssu-testing-testing as an alternative to cssu-devel
16:26.24kerioDocScrutinizer05: repos on repository.maemo.org hold a shitton of versions of the same package
16:26.46DocScrutinizer05kerio: were you talking about cssu-devel, or extras-devel?
16:26.50kerioextras-devel
16:27.01keriowhich is mirrored on maemo.merlin1991.at/apt-mirror/extras-devel/
16:27.57DocScrutinizer05I'm pretty much happy with *somebody* keeping an archive of older versions
16:28.20keriomerlin1991: you heard the doc
16:28.21DocScrutinizer05actually I asked merlin to do so, while he already did
16:28.22keriomake two mirrors!
16:29.42DocScrutinizer05shouldn't bee too hard and too space consuming, when you use hardlinks?
16:30.04keriofreemangordon: the new controlpanel is quicker!
16:30.07kerioyou're a magician!
16:32.12DocScrutinizer05idly ponders to waste 50€/month for a proper server with 3TB instead meager 50GB
16:32.48keriofreemangordon: hold on, you're using a fancy new compiler, right?
16:32.51keriothat's why it's faster
16:32.52DocScrutinizer05vserver with 50GB storage: 16 bucks7month, c'mon
16:33.10DocScrutinizer05no option for storage upgrade
16:33.18DocScrutinizer05:-S
16:33.33kerioDocScrutinizer05: well, duh
16:33.40kerio100GB for 32b/month
16:33.47kerioon two separate servers
16:34.33DocScrutinizer05hell, my N900 has more storage than my server
16:34.50keriomine too! :D
16:34.55kerionot my home server though
16:35.19kerioon my home server i've got 1TB on a grand total of one (1) hd
16:40.30freemangordonmerlin1991: would you delete h-d from the repo?
16:45.23kerioaw yiss
16:45.33keriomotha fuckin blurless
17:02.02freemangordonmerlin1991: hildon-home too
17:03.40keriofreemangordon: i keep updating but hildon-desktop is still not there :(
17:04.05freemangordonkerio: yes, merlin1991 has to clean the old version first
17:04.18keriodammit!
18:00.09*** join/#maemo-ssu toxaris (~toxaris@s83-180-246-172.cust.tele2.se)
18:19.23*** join/#maemo-ssu nox- (noident@freebsd/developer/nox)
18:41.46keriohm, does "User guide" work for anyone?
18:59.06Sicelothe Application, you mean?
19:00.14Sicelomeh..it's just links.
19:00.57kerioSicelo: yeah, the icon in the hildon launcher
19:01.24kerioit redirects to swipe.nokia.com here
19:01.40keriowhich is hilarious
19:03.35Siceloyeah. maemo.nokia.com has been that since N9
19:04.27Sicelobut wtf doesn't this icon/shortcut point to the on-device html document?
19:06.36keriothere isn't one?
19:06.39keriothere's a pdf guide iirc
19:08.24SiceloMyDocs/.documents/User\ Guides/*
19:08.35keriohm, that's html?
19:08.40kerioanyway, i don't have that anymore :3
19:08.41Siceloyup
19:09.19Sicelo41.4MB in total, wow
19:14.23merlin1991freemangordon: srry for the long wait, both removed now
19:15.35freemangordonmerlin1991: np, remove qt and hildon-status-menu too :)
19:16.38merlin1991freemangordon: both removed
19:16.45freemangordonthanks
19:17.33freemangordonI guess it is enough for today, time for some foosball :D
19:21.34freemangordonmerlin1991: the fuck?
19:21.36freemangordonPreparing to replace libqt4-translations 1:4.7.4~git20110505+cssu6-thumb4 (using .../libqt4-translations_1%3a4.7.4~git20110505+cssu7+thumb0_armel.deb)
19:21.55freemangordonthat counts as an upgrade, I am lost :(
19:29.12keriofreemangordon: it does
19:29.27kerioversion 1:4.7.4~git20110505+cssu6, debian-release thumb4
19:29.34kerioversus version 1:4.7.4~git20110505+cssu6+thumb1, debian release 0
19:29.54keriooh, hell
19:29.56kerioit's cssu7 now
19:30.00keriothat's even better
19:31.01freemangordonkerio: latest in -thumb was cssu6-thumb4
19:31.25kerioyou're replacing +cssu6 with +cssu7+thumb0
19:31.40keriothere's not an issue if there's no "-" before "-thumb"
19:31.55freemangordonI am replacing cssu6-thumb4 with cssu7+thumb0
19:32.05kerioyep
19:32.08freemangordonthat is why am lost
19:32.09keriothere's not an issue if there's no "-" before "-thumb"
19:32.17freemangordonbut there is
19:32.21freemangordonin old version
19:32.35kerioi literally meant a "-" **before** "-thumb"
19:32.36freemangordonaah, i got it
19:33.08freemangordonbut but, we don't have problem then and I don't need to make scripts
19:33.20keriofreemangordon: otoh, hildon-desktop *has* that problem :)
19:33.29freemangordonkerio: besides h-d
19:33.37kerioalarmd also has that problem
19:33.44freemangordonhmm, yeah
19:33.58kerioand all the packages it's not prompting me to update, because of the stupid metapackage
19:34.03kerio(there are 5 so far)
19:34.03freemangordonanyway, I am too tired now, will continue tomorrow
19:35.07freemangordonis going to find some bar
19:35.10freemangordonnight
19:35.31keriofreemangordon: so far, alarmd, hildon-desktop, hildon-home, hildon-status-menu, libalarm2
19:36.20keriobut really, it's no big deal, just pin community-thumb with 1001 priority and apt-get upgrade :)
19:41.41keriohm, wtf is turbo, in the [blur] section of transitions.ini?
19:42.16kerioDocScrutinizer05: ^
19:42.24DocScrutinizer05hmm?
19:43.48DocScrutinizer05asking ME?
19:43.59keriosure, you seem knowledgeable enough
19:44.06DocScrutinizer05haha
19:44.31DocScrutinizer05nfc, ask amiconn
19:44.46DocScrutinizer05arcean?
19:45.20DocScrutinizer05nah, ask MATAN!
19:45.51keriowtf is "is_cool" in [notification]
19:45.53keriowhy is that even a thing
19:45.59kerioi don't even
19:46.05DocScrutinizer05sorry, I never had a glimpse at all that transition crap
19:46.50DocScrutinizer05prolly since I always considered transitions useless ;-P
19:47.23DocScrutinizer05or do they help me get my job done?
19:52.41kerioheh
19:52.47kerioi'm trying to remove as much eyecandy as possible
19:54.27keriooh god, lol
19:55.33kerioDocScrutinizer05: http://i.imgur.com/EkIz8.png
19:55.44kerioi don't even know what happened here
19:56.18DocScrutinizer05:shrug:
19:56.28keriowhy is it red?
19:56.39DocScrutinizer05I've seen weirder effects ;-P
19:56.57DocScrutinizer05like double pictures of same icon
19:57.24DocScrutinizer05looked like screen being a shakey photo of itself ;-P
19:58.19DocScrutinizer05blames ovi.share for dicontinued service :-S
19:59.25DocScrutinizer05first those assholes force you on OVI ("this is an OVI device..."), then they discontinue that very service after less than 2 yyears
20:00.15DocScrutinizer05HELL, MORONS! what if I bought the N900 just because of your fsckning awesome ovi-share?
20:00.42kerioto be fair that's incredibly unlikely xD
20:00.52DocScrutinizer05still possible
20:01.40keriohow do i extract a single file with tar?
20:01.46kerioi'm restoring my old transitions.ini
20:01.51DocScrutinizer05RTFM?
20:02.12DocScrutinizer05tar has a fine manpage
20:02.28keriohah, just found a bug in the HAM that kills apt-worker when it exits
20:02.34kerioHAM is not the only one that uses apt-worker
20:02.47DocScrutinizer05o.O
20:02.54kerioopen a picture, share, share with service, update list (or something)
20:03.07DocScrutinizer05O.O
20:03.28DocScrutinizer05WUT?
20:03.55DocScrutinizer05meh, I'll miss time window for dinner again
20:04.22DocScrutinizer05which is kinda unfortunate since I had no breakfast or lunch yet
20:07.27keriook, backupmenu saves the day again
20:07.35kerionice extraction, A++ would extract again
23:04.22*** join/#maemo-ssu dhbiker (~dhbiker@193.2.218.150)
23:13.24*** join/#maemo-ssu dhbiker (~dhbiker@95.87.145.175)
23:35.59*** join/#maemo-ssu M4rtinK2 (~M4rtinK@mail.melf.eu)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.