*** rdale_ct has joined #baserock | 02:31 | |
*** rdale has quit IRC | 02:34 | |
*** gtristan has quit IRC | 02:42 | |
*** gtristan has joined #baserock | 03:13 | |
*** gtristan has quit IRC | 05:05 | |
*** franred has quit IRC | 06:05 | |
*** franred has joined #baserock | 06:15 | |
*** jjardon has quit IRC | 06:15 | |
*** jjardon has joined #baserock | 06:18 | |
persia | learning: if your circular dependency is a bootstrap issue, find a way to use host tools to build something that can build something (maybe itself) repeatedly. If not a bootstrap issue, find a way to untangle them. | 07:11 |
---|---|---|
*** toscalix has joined #baserock | 08:03 | |
*** anahuelamo has joined #baserock | 08:17 | |
*** jonathanmaw has joined #baserock | 08:35 | |
*** edcragg has joined #baserock | 08:46 | |
*** ssam2 has joined #baserock | 09:11 | |
*** ChanServ sets mode: +v ssam2 | 09:11 | |
leeming | ok so sounds like what I thought initially. Was just slightly confused with the mention of us not handling them | 09:15 |
*** ssam2 has quit IRC | 09:34 | |
*** ctbruce has joined #baserock | 09:34 | |
*** ssam2 has joined #baserock | 09:50 | |
*** ChanServ sets mode: +v ssam2 | 09:50 | |
*** rdale_ct has quit IRC | 10:01 | |
*** rdale has joined #baserock | 10:03 | |
*** gtristan has joined #baserock | 10:11 | |
*** toscalix has quit IRC | 10:35 | |
*** toscalix_ has joined #baserock | 10:36 | |
*** toscalix_ has quit IRC | 10:40 | |
*** toscalix has joined #baserock | 10:41 | |
*** toscalix has quit IRC | 10:46 | |
*** toscalix has joined #baserock | 10:54 | |
persia | Ah, yes. The tools do not handle this, so require human assistance. Maybe not the most accessible phrasing. | 11:25 |
*** fay_ has quit IRC | 12:34 | |
*** fay_ has joined #baserock | 12:48 | |
*** edcragg has quit IRC | 13:40 | |
*** gtristan has quit IRC | 13:50 | |
*** edcragg_ has joined #baserock | 14:04 | |
*** edcragg has joined #baserock | 14:34 | |
*** edcragg_ has quit IRC | 14:42 | |
*** cosm has quit IRC | 14:42 | |
*** franred has quit IRC | 15:07 | |
*** anahuelamovallej has joined #baserock | 15:09 | |
*** anahuelamo has quit IRC | 15:09 | |
*** anahuelamovallej is now known as anahuelamo | 15:10 | |
*** ctbruce has quit IRC | 15:25 | |
*** cosm has joined #baserock | 15:45 | |
*** cosm has quit IRC | 15:57 | |
*** cosm has joined #baserock | 16:06 | |
*** fay_ has quit IRC | 16:27 | |
*** anahuelamo has quit IRC | 16:28 | |
*** anahuelamo has joined #baserock | 16:28 | |
*** locallycompact has joined #baserock | 16:29 | |
*** gtristan has joined #baserock | 16:40 | |
locallycompact | trying to build enlightenment I get | 16:40 |
locallycompact | configure: error: Package requirements (glproto >= 1.4.17 gl >= 9.2.0) were not met: | 16:40 |
locallycompact | Requested 'gl >= 9.2.0' but version of gl is 9.1.1 | 16:40 |
locallycompact | which chunk is that? | 16:40 |
ssam2 | have you seen strata/enlightenment.morph ? | 16:41 |
ssam2 | anyway the gl chunk is probably Mesa | 16:41 |
locallycompact | ty | 16:42 |
*** toscalix has quit IRC | 16:43 | |
paulsherwood | does anyone know if it's possible to build a runtime-only version of devel-system using morph? | 16:52 |
paulsherwood | (i'm still wrestling with splitting, and am wondering if my latest bug is me or the definitions) | 16:52 |
ssam2 | sure, it's possible | 16:52 |
ssam2 | i'm not sure if it's possible in the way that you are thinking of ... how do you do it with YBD ? | 16:53 |
ssam2 | by specifying in the system .morph that for each stratum it should only include the -runtime artifact? | 16:53 |
ssam2 | or some other method ? | 16:53 |
paulsherwood | currently my idea is i set default-splits: [-runtime] and expect it to figure everything out from rules for what a -runtime artifact containts | 16:54 |
richard_maw | ssam2: aye morph determined that by you listing the *-runtime artifact name | 16:54 |
ssam2 | Morph doesn't have a default-splits option | 16:55 |
ssam2 | I guess you could edit DEFAULTS, and delete the -devel artifact altogether | 16:55 |
ssam2 | and also remove the '- .*' line from the runtime artifact | 16:55 |
paulsherwood | my issue is missing 'depmod' during the system integration commands | 16:56 |
paulsherwood | i'm guessing (but it may be a bug in ybd) that maybe the runtime artifacts somehow might not include depmod | 16:56 |
paulsherwood | my very long log is at http://paste.baserock.org/raxoqizoyu | 16:57 |
ssam2 | it should be in /usr/sbin/depmod I think, which would be in the linux-bins chunk artifact by default | 16:57 |
ssam2 | is that actually depmod missing? | 16:58 |
ssam2 | seems that the 'sh' process would fail if that was the case | 16:59 |
ssam2 | which would print a "depmod not found" message to stderr, rather than raising a Python OSError | 16:59 |
paulsherwood | eek, then. maybe missing 'which' ? | 17:00 |
ssam2 | it would make more sense if 'chroot' was missing | 17:00 |
ssam2 | that's what sandboxlib is trying to run | 17:00 |
ssam2 | and it seems like that is the only case that could raise a Python OSError | 17:00 |
ssam2 | anything else would have a subprocess.CalledProcessError | 17:00 |
ssam2 | oh, wait | 17:01 |
ssam2 | i forget that sandboxlib uses os.chroot(), it doesn't call a separate program | 17:01 |
ssam2 | ok | 17:01 |
ssam2 | but still, that must mean 'sh' is not found | 17:01 |
*** jonathanmaw has quit IRC | 17:02 | |
ssam2 | in fact, it's definitely not due to 'depmod' missing, because that line explicitly succeeds even if depmod is missing (so that it doesn't break minimal-system builds) | 17:02 |
paulsherwood | axk | 17:25 |
paulsherwood | nm, i'll have to research tmrw | 17:27 |
*** edcragg has quit IRC | 17:30 | |
*** locallycompact has quit IRC | 17:53 | |
*** ssam2 has quit IRC | 17:55 | |
*** edcragg has joined #baserock | 18:33 | |
*** rdale has quit IRC | 19:17 | |
*** edcragg has quit IRC | 22:18 | |
*** SotK has quit IRC | 22:41 | |
*** gary_perkins has quit IRC | 22:42 | |
*** gary_perkins has joined #baserock | 22:43 | |
*** SotK has joined #baserock | 22:43 | |
*** astrophys has joined #baserock | 22:57 | |
*** astrophys has quit IRC | 23:02 | |
*** astrophys has joined #baserock | 23:02 | |
*** astrophys has left #baserock | 23:03 | |
*** janderJLR has joined #baserock | 23:03 | |
*** janderJLR has quit IRC | 23:59 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!