WebHosting Paid by #1Payday.Loans


   The ROCK Linux project has been discontinued in 2010. Here are the old data for the historical record!

[00:23] stf^rocklinux (n=user@M1221P008.adsl.highway.telekom.at) joined #rocklinux.
[00:32] blindcoder (i=blindcod@tor/regular/blindcoder) joined #rocklinux.
[01:34] <th> https://www.rocklinux.net/people/teha/9-gcc32.err
[01:34] <th> anyone knows a fix for this?
[01:34] <th> trying to build gcc32 with current crystal
[01:52] <stf^rocklinux> th: looks like a gcc4x related error
[01:53] <stf^rocklinux> th: I've seen this for casts used as lvalues, e.g. ((int) x)=y;
[01:54] <stf^rocklinux> gcc4x does not allow this.
[01:55] <stf^rocklinux> the fix would be to do int z = y ; x = z ;
[01:56] <stf^rocklinux> or something similar
[01:59] <stf^rocklinux> th: Im pretty sure there's already a gcc4 patch for gcc32 available on the net.
[02:46] nookie (n=nookie@85-124-53-225.dynamic.xdsl-line.inode.at) left irc: Read error: 110 (Connection timed out)
[02:56] stf^rock1inux (n=user@M1300P019.adsl.highway.telekom.at) joined #rocklinux.
[03:10] stf^rocklinux (n=user@M1221P008.adsl.highway.telekom.at) left irc: Read error: 110 (Connection timed out)
[04:19] kasc_ (n=kasc@dslb-084-060-101-052.pools.arcor-ip.net) joined #rocklinux.
[04:28] kasc (n=kasc@dslb-084-060-105-129.pools.arcor-ip.net) left irc: Read error: 110 (Connection timed out)
[04:28] Nick change: kasc_ -> kasc
[04:46] rocklogbot (i=blindcod@pallas.crash-override.net) left irc: Remote closed the connection
[04:47] rocklogbot (i=blindcod@pallas.crash-override.net) joined #rocklinux.
[07:05] blindcoder (i=blindcod@tor/regular/blindcoder) left irc: Remote closed the connection
[08:28] blindcoder (i=blindcod@tor/regular/blindcoder) joined #rocklinux.
[10:14] <blindcoder> moin
[10:18] kasc_ (n=kasc@dslb-084-060-121-226.pools.arcor-ip.net) joined #rocklinux.
[10:29] kasc (n=kasc@dslb-084-060-101-052.pools.arcor-ip.net) left irc: Read error: 110 (Connection timed out)
[10:29] Nick change: kasc_ -> kasc
[10:38] <th> stf^rock1inux: thanks
[10:47] <blindcoder> okay, this must be the crappiest way to start the day
[11:02] stf^rocklinux (n=user@M1413P029.adsl.highway.telekom.at) joined #rocklinux.
[11:16] stf^rock1inux (n=user@M1300P019.adsl.highway.telekom.at) left irc: Read error: 110 (Connection timed out)
[11:18] rocklogbot (i=blindcod@pallas.crash-override.net) left irc: Remote closed the connection
[11:18] rocklogbot (i=blindcod@pallas.crash-override.net) joined #rocklinux.
[11:36] blindcoder (i=blindcod@tor/regular/blindcoder) left irc: Remote closed the connection
[11:37] blindcoder (i=blindcod@tor/regular/blindcoder) joined #rocklinux.
[12:09] nookie (n=nookie@85-124-53-225.dynamic.xdsl-line.inode.at) joined #rocklinux.
[12:54] <esden> blindcoder: o_O?
[12:54] <esden> moin
[12:54] <esden> sbtw
[12:59] <blindcoder> moin esden 
[12:59] <blindcoder> esden: lilo
[13:00] _BoS_ (n=bodo@dslb-088-072-045-141.pools.arcor-ip.net) left irc: Remote closed the connection
[13:00] _BoS_ (n=bodo@dslb-088-072-052-085.pools.arcor-ip.net) joined #rocklinux.
[13:13] <owl> moin
[13:13] <blindcoder> moin moin owl
[13:13] <owl> hi blindcoder 
[13:33] <stf^rocklinux> th: you might w
[13:33] <stf^rocklinux> err... forget that ^^
[13:33] <stf^rocklinux> moin btw.
[13:33] <blindcoder> moin stf^rocklinux 
[13:34] <blindcoder> stf^rocklinux: got any clue on the bdb44 thing?
[13:34] <stf^rocklinux> blindcoder: no, since this didn't appear in my latest crystal+addons build...
[13:36] <blindcoder> hmm
[13:36] <blindcoder> okay, I'll look into it yet
[13:36] <blindcoder> s/yet/then/
[13:36] <blindcoder> stf^rocklinux: btw, got any more Config speedup patches? :)
[13:41] <stf^rocklinux> blindcoder: sorry, no, afaics further speedups would involve replacing config.in files with something faster...
[13:41] <blindcoder> heh, thought so
[13:41] <stf^rocklinux> which is non-trivial, to say the least
[13:41] <blindcoder> yeah
[13:41] <stf^rocklinux> oh wait
[13:41] <blindcoder> we could write an on-the-fly bash-to-C converter and then compile it
[13:42] <blindcoder> an #include file should do the trick :-)
[13:42] <blindcoder> macros and stuff :)
[13:42] <stf^rocklinux> Config could be changed to not recreate the whole Config menu on each cycle, only when something has really changed. That would speed up menu navigation a lot :)
[13:43] <blindcoder> that sounds good
[13:44] <blindcoder> for x in ${!ROCK*} ; do eval "${x}old=\"\${${x}}\"" ; done
[13:44] <blindcoder> ...
[13:44] <blindcoder> recreate=0
[13:44] <stf^rocklinux> It would only require to store all Config menus on disk, not just the currently selected.
[13:44] <blindcoder> for x in ${!ROCK*} ; do eval "[ \"\${${x}old}\" != \"\${${x}}\" ] && recreate=1" ; done
[13:45] <blindcoder> those three lines sholud practically do it, no?
[13:45] <stf^rocklinux> it's even easier since the return code of rockdialog tells us wether something has changed.
[13:46] <stf^rocklinux> the return code in combination with the selected menu item, that is.
[13:46] <blindcoder> ooh
[13:46] <blindcoder> even better :-)
[13:46] <blindcoder> can you take care of that? then I'll look into the bdb44 issue
[13:47] <stf^rocklinux> hm, I'm currently pretty busy. It will take some time...
[13:48] <stf^rocklinux> but I can do it
[13:49] <blindcoder> great :D
[13:49] <blindcoder> stf^rocklinux: since the mailinglists don't work atm can you just msg me the id then?
[13:49] <stf^rocklinux> you mean the patch id?
[13:50] <stf^rocklinux> blindcoder: you mean the patch id?
[13:52] <blindcoder> stf^rocklinux: yes
[13:52] <stf^rocklinux> blindcoder: ok :)
[13:52] <stf^rocklinux> will do
[13:53] <blindcoder> great :D
[14:10] <blindcoder> stf^rocklinux: guess I got the error
[14:11] <blindcoder> stf^rocklinux: it's in the noinst-major.patch_bdb44 file
[14:22] rocklogbot (i=blindcod@pallas.crash-override.net) left irc: Remote closed the connection
[14:22] rocklogbot (i=blindcod@pallas.crash-override.net) joined #rocklinux.
[14:30] <blindcoder> hmm
[14:30] <blindcoder> interesting
[14:31] <blindcoder> Config says there is no bdb active
[14:43] nookie (n=nookie@85-124-53-225.dynamic.xdsl-line.inode.at) left irc: Read error: 110 (Connection timed out)
[14:44] toberkel (n=toberkel@toberkel.net) left irc: Read error: 104 (Connection reset by peer)
[14:58] <blindcoder> stf^rocklinux: !!!
[14:59] <blindcoder> stf^rocklinux: it's your pkgfork implementation in config_helper.c
[14:59] <blindcoder> stf^rocklinux: it doesn't handle bdb=bdb44
[14:59] <blindcoder> stf^rocklinux: only bdb44
[14:59] <blindcoder> stf^rocklinux: that way bdb.conf can't find its default version
[15:01] Action: blindcoder trying again with adapted subconfig-libs.in
[15:08] owl (n=owl@193.93.28.218) left irc: "need to change me dumb aliases"
[15:13] <blindcoder> stf^rocklinux: okay, that and the noinst-major patch
[15:13] owl (n=owl@193.93.28.218) joined #rocklinux.
[15:14] <owl> re
[15:14] <stf^rocklinux> blindcoder: pkgfork? not pkgcheck?
[15:21] <blindcoder> stf^rocklinux: err, pkgcheck, yes
[15:21] <blindcoder> stf^rocklinux: Library Options is empty here with your patch from submaster
[15:22] <stf^rocklinux> hm, I though it could handle pkg=xpkg as well
[15:22] <blindcoder> stf^rocklinux: if I change base/bdb/subconfig-libs.in to use bdb44 instead of bdb=bdb44 it works
[15:23] <stf^rocklinux> at least pkgcheck _should_ handle pkg=xpkg :/
[15:24] <blindcoder> I assume the pat_list[10] is for that?
[15:25] <stf^rocklinux> dunno, I also implemented POSIX regexp for pkgcheck, this way pat_list is not used anymore.
[15:25] <blindcoder> ah
[15:25] <blindcoder> the "|" thingie
[15:26] <stf^rocklinux> see 2006091220203625971
[15:26] <stf^rocklinux> with this patch checking for forked packages should work iirc
[15:27] <blindcoder> ah
[15:27] <blindcoder> haven't applied that yet
[15:32] <blindcoder> stf^rocklinux: the reason pkginstalled behaves differently for stage 9 is that rocket emerge behaves like a stage 9 build
[15:36] <blindcoder> stf^rocklinux: I see the problem with pkgcheck
[15:36] <blindcoder> stf^rocklinux: pkg->alias only contains the $xpkg part
[15:36] <blindcoder> stf^rocklinux: but pat_list contains pkg=xpkg
[15:37] <blindcoder> DEBUG: pat_list: gcc=gcc34 pkg->alias: gcc34
[15:37] <blindcoder> and that doesn't match with !strcmp
[15:40] <stf^rocklinux> blindcoder: that is fixed in the patch above
[15:40] <blindcoder> ah, great
[15:40] <stf^rocklinux> it creates a whole line from the package list, then matches the pkgcheck argument against it.
[15:41] <blindcoder> and 1k is enough for that/
[15:41] <blindcoder> ?
[15:42] <stf^rocklinux> there's also the 1k limit when reading lines from the packages file...
[15:42] <stf^rocklinux> see read_pkg_list
[15:43] <blindcoder> stf^rocklinux: patch: **** unexpected end of file in patch
[15:43] <blindcoder> no read_pkg_list in that file
[15:44] <stf^rocklinux> read_pkg_list is in config_helper.c
[15:44] <stf^rocklinux> I haven't modified it
[15:44] <blindcoder> ah, okay
[15:44] <blindcoder> still, the patch is broken :(
[15:47] <stf^rocklinux> blindcoder: fixed in 2006091715463920246
[15:47] <stf^rocklinux> had to run recountdiff on the broken patch
[15:47] <stf^rocklinux> that comes from manually editing patch files ^^
[15:49] <blindcoder> hehe
[15:50] <blindcoder> misc/tools-source/config_helper.c:277: Fehler: syntax error before »return«
[15:51] <blindcoder> now pkgswitch is totally messed up
[15:52] <blindcoder> seems I miss one patch
[15:54] <blindcoder> hmm
[15:54] <blindcoder> no
[15:55] <blindcoder> 2006091715463920246 is incremental to 2006091021345217936?
[16:03] <blindcoder> stf^rocklinux: ?
[16:12] <stf^rocklinux> blindcoder: no it is not incremental
[16:13] <blindcoder> oh
[16:13] <blindcoder> that's why thes
[16:13] <blindcoder> then
[16:14] <blindcoder> stf^rocklinux: still doesn't apply fine
[16:15] <blindcoder>         regfree(preg);
[16:15] <blindcoder>         return 0;
[16:15] <blindcoder> }
[16:15] <blindcoder>         return 0;
[16:15] <blindcoder> }
[16:15] <blindcoder> int cfghlp_builtin(WORD_LIST *list)
[16:15] <blindcoder> that's against ROCK rev 7884
[16:16] <blindcoder> stf^rocklinux: it must be incremental to the pkgfork patch
[16:16] <blindcoder> stf^rocklinux: because pkgfork isn't in ROCK rev 7884
[16:18] <blindcoder> okay, one return 0; } must simply go
[16:19] <blindcoder> stf^rocklinux: okay, works now
[16:20] <stf^rocklinux> blindcoder: sorry misread your question, the patch indeed is incremental to the other one you mentioned.
[16:21] <blindcoder> stf^rocklinux: okay
[16:21] <blindcoder> stf^rocklinux: still the duplication of return 0; } is there anyway
[16:21] <blindcoder> stf^rocklinux: I've changed that manually now
[16:21] <blindcoder> stf^rocklinux: and it works with pkg=xpkg now *hug*
[16:22] <stf^rocklinux> :)
[16:23] <blindcoder> stf^rocklinux: got my comment about stage 9?
[16:27] <stf^rocklinux> blindcoder: yes, I know about emerge using stage 9, but still I see no reason for two different pkginstalled checks...
[16:28] <stf^rocklinux> the main problem is in crystal+addon builds, e.g. php5 builds in stage 5 and tries to use packages built only in stage 9, because pkginstalled thinks they are already installed...
[16:29] <blindcoder> stf^rocklinux: guess we just need to see if something breaks
[16:29] <blindcoder> I see
[16:30] <blindcoder> I'll try it in my next build
[16:30] <stf^rocklinux> blindcoder:  at least php and one other core package break because of this.
[16:30] <blindcoder> so far I've only got the system.init split patch not applied
[16:30] <stf^rocklinux> hm? how do you mean?
[16:31] <blindcoder> stf^rocklinux: in my own tree I have every submaster patch but the system.init split patch applied
[16:31] <blindcoder> stf^rocklinux: remember rock-community?
[16:31] <blindcoder> stf^rocklinux: like that
[16:31] <stf^rocklinux> yes. I see.
[16:33] <blindcoder> I just need a complete build now for my workshop on LIT-DD
[16:34] <blindcoder> https://linuxinfotag.de/86/detail/98
[16:34] <stf^rocklinux> I've rediffed the pkgcheck regexp patch once more, in 2006091716262611763
[16:36] <stf^rocklinux> blindcoder: sounds nice :)
[16:36] <blindcoder> stf^rocklinux: great, thanks
[16:36] <blindcoder> stf^rocklinux: yeah, I hope that there will be some people there :-)
[16:38] <stf^rocklinux> I thought DD stands for Düsseldorf
[16:39] <blindcoder> Dresden IIRC
[16:39] <blindcoder> https://www.plz-postleitzahl.de/land.sachsen/kfz-DD.html
[16:40] <blindcoder> https://www.plz-postleitzahl.de/land.sachsen/kfz-D.html
[16:42] <stf^rocklinux> kind of counter-intuitive ^^
[16:42] nookie (n=nookie@85-124-53-225.dynamic.xdsl-line.inode.at) joined #rocklinux.
[16:43] <esden> wooow
[16:43] <esden> I now got the lilo news ... 
[16:43] <esden> I really do not know what to think about it
[16:44] <blindcoder> esden: heh, well, I'm quite shocked
[16:44] <stf^rocklinux> lilo like linux loader?
[16:44] <blindcoder> esden: given that I chatted with him quite a bit
[16:44] <blindcoder> stf^rocklinux: lilo like Rob Levin
[16:45] <esden> stf^rocklinux: the master of freenode
[16:45] <esden> blindcoder: I have never chatted with him ... but I am also pretty shocked
[16:45] <esden> it sounds like a very bad april fools joke
[16:46] #rocklinux: mode change '+o blindcoder' by ChanServ!ChanServ@services.
[16:46] Topic changed on #rocklinux by blindcoder!i=blindcod@tor/regular/blindcoder: ROCK Workshop in Dresden: https://linuxinfotag.de/86/detail/98 || Mailinglists currently out of order || ROCK 3 released: Crystal binary at: https://gems.rocklinux.org/release/ROCK3-crystal-r7770.iso
[16:46] #rocklinux: mode change '-o blindcoder' by blindcoder!i=blindcod@tor/regular/blindcoder
[16:46] <blindcoder> sadly, it isn't
[18:14] nookie (n=nookie@85-124-53-225.dynamic.xdsl-line.inode.at) left irc: Read error: 110 (Connection timed out)
[18:39] <esden> humm ... /me thinking how he could support the piratenpartei as a non german citizen :/
[18:40] <blindcoder> spenden
[18:40] <esden> humm ... yes that is a solution
[18:40] <esden> but first I have to render my bank account into black numbers ...
[18:41] <blindcoder> true that
[18:41] <blindcoder> esden: btw, do you know 'Neurons - Fire at will'?
[18:41] <blindcoder> esden: from paniq?
[18:41] <esden> I wanted to greet your choice to enter the piratenpartei ...
[18:42] <esden> blindcoder: sure ... 
[18:42] Action: esden np: Paniq - Neurons - Fire at will
[18:43] <blindcoder> paniq is a member of PIRATEN :-)
[18:43] <esden> hehe ... I really could imagine that ... ;)
[18:43] <esden> he is pretty much in the CCC scene 
[18:44] <esden> I really have to say that I am happy that finally there is someone who wants to change something about the current political state in germany
[18:44] <esden> I am really eager to see if they will succeed
[18:45] <esden> I will for sure tell everyone I will meet to go and vote for them as soon as it will be possible
[18:48] <blindcoder> *hug*
[18:52] <esden> o_O'
[18:53] <esden> I know two other guys (you know them too) that think the same
[18:54] <esden> but the more paranoid one of them is considering joining pp but is not sure because of possible problems he could get in the future because of being officcially a member of pp
[18:54] <esden> the otherone already printed out his join request ... but has not yet sent it away
[18:56] <blindcoder> I've already sent it
[18:56] <blindcoder> if all you do is worry about the future
[18:56] <blindcoder> it won't change
[18:58] <blindcoder> but maybe I'm just cocky because I've got a cool employer
[19:00] <stf^rocklinux> blindcoder, here you are:  2006091718591712169
[19:06] <blindcoder> YEEEE-HAAAAW!
[19:06] <blindcoder> stf^rocklinux: that's what I love about you :-)
[19:07] <blindcoder> you just go ahead and do all of the cool stuff :)
[19:11] <blindcoder> ah
[19:11] <blindcoder> a beamer, 5.1 sound and pr0n
[19:11] <blindcoder> that's life :D
[19:13] stf^rock1inux (n=user@M1224P017.adsl.highway.telekom.at) joined #rocklinux.
[19:21] stf^rocklinux (n=user@M1413P029.adsl.highway.telekom.at) left irc: Read error: 110 (Connection timed out)
[19:52] <esden> blindcoder: you watching pr0n?
[19:52] <esden> blindcoder: without me? ;)
[19:53] <netrunner> esden: if you were there, for what he'd need pr0n? ;)
[19:55] <esden> netrunner: you mean I am enough pr0n?
[19:55] Action: esden is pr0no
[20:11] nookie (n=nookie@85-124-53-225.dynamic.xdsl-line.inode.at) joined #rocklinux.
[20:13] rocklogbot (i=blindcod@pallas.crash-override.net) left irc: Remote closed the connection
[20:13] rocklogbot (i=blindcod@pallas.crash-override.net) joined #rocklinux.
[20:36] misl (n=chatzill@84-104-172-187.cable.quicknet.nl) joined #rocklinux.
[22:43] misl (n=chatzill@84-104-172-187.cable.quicknet.nl) left irc: "Chatzilla 0.9.75 [Firefox 1.5.0.6/2006072814]"
[00:00] --- Mon Sep 18 2006