IRC log for #oe on 20200929

00:04.07armpitkhem, are you seeing fetch errors on master for bigbuckbunny-1080p?
00:04.33armpitI am seeing it on dunfell
00:15.57khemarmpit: I disable it in world builds due to size problems
00:16.19khemso my world builds do not notice it
00:17.00armpithmm
00:17.23armpitwill do the same
00:23.07khemarmpit: https://github.com/YoeDistro/yoe-distro/blob/dunfell/sources/meta-yoe/conf/distro/yoe.inc#L156-L172
02:00.38armpitthanks
02:23.04armpitfyi: looks like you excluded build-appliance-image twice
02:43.28*** join/#oe bluelightning (~paul@pdpc/supporter/professional/bluelightning)
03:31.55*** join/#oe davidlt (~davidlt@78-63-27-146.static.zebra.lt)
04:34.50*** join/#oe bluelightning (~paul@pdpc/supporter/professional/bluelightning)
05:28.59*** join/#oe j241 (~Adium@20.ip-51-79-160.net)
05:29.06*** part/#oe j241 (~Adium@20.ip-51-79-160.net)
05:44.55*** join/#oe AndersD (~AndersD@h-98-128-162-82.NA.cust.bahnhof.se)
06:02.44*** join/#oe sstiller (~sstiller@p200300f07f16cf0127b00e266f96c83e.dip0.t-ipconnect.de)
06:04.37*** join/#oe rob_w (~rob@unaffiliated/rob-w/x-1112029)
06:15.41*** join/#oe ao2 (~ao2@host-87-2-184-225.retail.telecomitalia.it)
06:34.50*** join/#oe davidlt (~davidlt@78-63-27-146.static.zebra.lt)
06:49.46*** join/#oe frsc (~frsc@p50937620.dip0.t-ipconnect.de)
07:29.14*** join/#oe florian_kc (~florian_k@Maemo/community/contributor/florian)
07:32.49*** join/#oe dev1990 (~dev@dynamic-81-168-186-230.ssp.dialog.net.pl)
07:35.07*** join/#oe tnovotny (~tnovotny@176-74-132-138.netdatacomm.cz)
07:46.32*** join/#oe eduardas (~eduardas@85.254.96.13)
07:55.44*** join/#oe leon-anavi (~Leon@78.130.197.211)
07:59.51*** join/#oe j241 (~Adium@20.ip-51-79-160.net)
09:08.25*** join/#oe pespin_ (~Sharwin_F@espeweb.net)
09:34.02*** join/#oe maelcum (~horst@2001:16b8:c137:bf00:d6d8:be10:ae18:9960)
09:38.34*** join/#oe dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
10:25.09*** part/#oe RobertBerger (~rber@2a02:587:3b0d:ecec:6db1:3adf:bfd6:e7ed)
11:16.03*** join/#oe armpit (~armpit@2601:202:4180:a5c0:9d97:e0e:5802:c8f4)
11:19.52*** join/#oe georgem_home (uid210681@gateway/web/irccloud.com/x-tttehenprywtiwee)
11:29.33*** join/#oe Leatherface (~leatherfa@helvetet.eu)
11:39.32*** join/#oe berton (~berton@181.220.78.182)
11:42.57*** join/#oe frsc (~frsc@p50937620.dip0.t-ipconnect.de)
13:16.36*** join/#oe RobertBerger (~rber@2a02:587:3b0d:ecec:e538:96dd:b7c4:ac37)
13:35.30jonmasonAn OpenEmbedded (Virtual) Happy Hour is being held this Wednesday at 2100 UTC (5PM EDT).  Please join us for an enjoyable time discussing the latest things happening in the OpenEmbedded/Yocto Project Community.  https://zoom.us/j/99151508871
13:36.16jonmasonIf you have anything cool to present, please let us know and we'll use it to try and get more people to attend
13:36.21*** join/#oe vmeson (~rmacleod@23-233-84-124.cpe.pppoe.ca)
13:38.46*** join/#oe ericch (~ericch@pool-108-34-251-214.prvdri.fios.verizon.net)
13:48.16*** join/#oe AndersD (~AndersD@h83-209-96-136.cust.a3fiber.se)
13:53.00*** join/#oe sakoman (~steve@rrcs-66-91-142-162.west.biz.rr.com)
14:00.44*** join/#oe maelcum (~horst@2001:16b8:c137:bf00:993:7560:7ac:53dd)
14:00.52armpitjonmason, don't try, do
14:01.07armpityoda
14:01.09jonmason"do or do not, there is no try"
14:02.19armpitthat is formal Yoda, I speak in low land Yoda ; )
14:03.45jonmasonBBC Yoda vs Cockney Yoda
14:43.19*** join/#oe fray (~fray@kernel.crashing.org)
14:44.13frayI've got a shared library that does libfoo.so (symlink to) libfoo.so.1 (symlink to) libfoo.so.1.2, and the soname of libfoo.so.1.2 is libfoo.so.1 -- simple enough.  When it backages libfoo.so.1 and libfoo.so.1.2 end up in the runtime package -- libfoo.so ends up in the -dev package..
14:44.19frayall standard behavior..
14:44.45frayBUT some other program on the system wants to dlopen 'libfoo.so', and so now the user is convinced that they need the 'dev' package which drags in all sorts of other things they don't need..
14:45.25frayso I'm trying ot move libfoo.so to the runtim package, but not destroy the rest of the -dev package.  I THOUGHT there was a way to turn off the movement of the .so symlink to the -dev package, but can't remember how
14:57.27Jin^eLDif there is a standard way of doing this I'd be really interested, when I was facing the same problem I tuned PACKAGES and FILES_${PN} to get the .so into an own separate package which I then installed in the image
14:57.32Jin^eLDnot a clean solution but it worked
14:57.46Jin^eLDso if there is a clean way of dealing with it, that'd be great
14:58.03Jin^eLDthose dlopen users are always a PITA :P
15:03.51kergothfray: one way is to set FILES_SOLIBSDEV = "", then explicitly add them to FILES_${PN}
15:04.05fraykergoth I just found that...
15:04.24kergothi.e. musl sets that, then does FILES_${PN} += "${libdir}/lib*${SOLIBSDEV}"
15:04.28fraylooks like i can manually specify the FILES_SOLIBSDEV myself vs use the builtin wild card.. (if there are multiples) or just clear it
15:04.43frayya, thats what i was thinking of doing.. thanks
15:04.45kergothyep. just the files would end up unpackaged unless you add them back in
15:04.46kergothnp
15:05.09fray(then you have to turn off the sanity check for .so in your runtime packages AFAIK)
15:05.30kergothah, yes, true. INSANE_SKIP_${PN} += "dev-so"
15:05.45kergothi wonder if you can limit that to certain libs instead of allowing any
15:06.32fraylooks like I can just be explicit in the FILES_SOLIBSDEV, but I can't limit something in the dev-so skip
15:18.45*** join/#oe stephano (~stephano@c-73-164-244-205.hsd1.or.comcast.net)
15:21.31*** join/#oe florian_kc (~florian_k@Maemo/community/contributor/florian)
15:40.44kergothyawns
16:33.27*** join/#oe mir100 (~Vladimir@207.237.220.139)
16:54.04khemRP, rburton https://errors.yoctoproject.org/Errors/Details/500987/
16:55.56rburtonnice
16:56.30khemfixing it now
17:00.46armpitmake sure to bill him your hours
17:03.06*** join/#oe florian_kc (~florian_k@Maemo/community/contributor/florian)
17:14.21khemrburton: I thought the issue was install of recipe using cp instead of install -m but seems no
17:15.16*** join/#oe davidlt (~davidlt@78-63-27-146.static.zebra.lt)
17:36.01*** join/#oe khem (~khem@unaffiliated/khem)
17:47.55*** join/#oe rburton (sid1738@gateway/web/irccloud.com/x-aveevfmecxsxysrc)
17:47.57*** join/#oe paulbarker (sid269702@gateway/web/irccloud.com/x-ylyasjhtkdmfkubk)
17:48.02*** join/#oe bradfa (sid297668@gateway/web/irccloud.com/x-ghileefhjspwarpv)
17:49.23*** join/#oe XorA (sid403570@gateway/web/irccloud.com/x-fsfbwikzfdxpwdjt)
17:49.26*** join/#oe jonmason (sid36602@gateway/web/irccloud.com/x-oyoelahfdamoqhyx)
17:50.09*** join/#oe rsalveti (uid117878@gateway/web/irccloud.com/x-xergckyqeuzcnxry)
17:54.05*** join/#oe ribalda (sid306640@gateway/web/irccloud.com/x-lbifzgnsyafdrtue)
17:54.09*** join/#oe madisox (sid453692@gateway/web/irccloud.com/x-vhheniudzhduvupv)
17:54.15*** join/#oe smurray (sid98062@gateway/web/irccloud.com/x-blcmsjrvocaoneav)
17:54.25*** join/#oe Crofton|cloud (sid401373@gateway/web/irccloud.com/x-xegvdwtjhtdjbddh)
17:54.39*** join/#oe dl9pf (sid395223@opensuse/member/dl9pf)
17:54.48*** join/#oe mdp (sid49840@gateway/web/irccloud.com/x-hanwtllsjlwtezie)
17:54.50*** join/#oe ukembedded (sid304355@gateway/web/irccloud.com/x-hymjimdgmszljfsi)
17:54.54*** join/#oe hashcode (sid66404@gateway/web/irccloud.com/x-sqwydeouerknzsan)
17:59.22*** join/#oe darknighte (sid214177@pdpc/supporter/professional/darknighte)
17:59.27*** join/#oe mithro (sid24875@gateway/web/irccloud.com/x-znkmvusgpxzjlfmb)
17:59.38*** join/#oe ullbeking (sid5364@gateway/web/irccloud.com/x-tebupervehbjefqp)
18:00.11*** join/#oe dagmcr (sid323878@gateway/web/irccloud.com/x-gmkdwbvoahfgogyz)
18:05.58*** join/#oe Tartarus (sid72705@gateway/web/irccloud.com/x-klvkleyyhimcyhew)
18:45.44*** join/#oe ao2 (~ao2@host-87-2-184-225.retail.telecomitalia.it)
19:06.54*** join/#oe smurray_ (sid98062@gateway/web/irccloud.com/x-xkctheykeegfidzh)
19:07.12*** join/#oe hashcode_ (sid66404@gateway/web/irccloud.com/x-wvnwmzcvludhfmal)
19:09.50*** join/#oe kiwi_29 (~kiwi_29@c-73-231-211-214.hsd1.ca.comcast.net)
19:10.00kiwi_29Hello, If I have 2 recipes providing same shared library libSHARED.so , how do I make sure only the shared library from one recipe gets installed. Is it possible to do this?
19:13.04*** join/#oe dev1990 (~dev@dynamic-81-168-186-230.ssp.dialog.net.pl)
19:37.45Crofton|cloudThis seem famiilar?
19:37.49Crofton|cloudhttps://www.irccloud.com/pastebin/m22p4fEO/
19:54.32RPkhem: looks like a pseudo bug :(
19:59.18Crofton|cloudgrr rp you made my heart skip a beat there
20:02.02RPCrofton|cloud: haha. I'm clearly talking to khem ;-)
20:02.11Crofton|cloudyeah
20:02.18Crofton|cloudI just read pseudo bug
20:02.59RPmore people should have pseudo bugs, I'd like to share the fun
20:09.06khemCrofton|cloud: it seem you need to pass LDFLAGS to link step perhaps
20:09.54Crofton|cloudyeah, the build system is a train wreck :)
20:12.34Crofton|cloudI bumped the hash that built a few eeks back and this happened :(
21:05.19armpitaren't those bugs not genuine, spurious or shame?
21:54.16*** join/#oe XorA (sid403570@gateway/web/irccloud.com/x-ckfofoodolfohzkg)
21:55.12*** join/#oe bradfa (sid297668@gateway/web/irccloud.com/x-wrbiavgjzduhwcrw)
21:55.52*** join/#oe dagmcr (sid323878@gateway/web/irccloud.com/x-rvvqbnlbmuarueeu)
21:55.59*** join/#oe paulbarker (sid269702@gateway/web/irccloud.com/x-wjwucmqatqgupdjt)
21:56.09*** join/#oe roxell (sid330443@gateway/web/irccloud.com/x-qzbtkzkidankoncw)
21:56.37*** join/#oe rsalveti (uid117878@gateway/web/irccloud.com/x-sebltyjdswisbndh)
21:56.37*** join/#oe rburton (sid1738@gateway/web/irccloud.com/x-vrongyjdskrqobhu)
21:56.43*** join/#oe hashcode (sid66404@gateway/web/irccloud.com/x-flltzbtqqqrwylym)
21:56.52*** join/#oe mithro (sid24875@gateway/web/irccloud.com/x-qiidzbmolnoofsii)
21:57.09*** join/#oe ullbeking (sid5364@gateway/web/irccloud.com/x-uurdaxugthoxygpu)
21:57.46*** join/#oe georgem_home (uid210681@gateway/web/irccloud.com/x-xrrnhrddvjqfbvrp)
22:01.18*** join/#oe smurray (sid98062@gateway/web/irccloud.com/x-psdqagzncatsdwoh)
22:08.55*** join/#oe darknighte (sid214177@pdpc/supporter/professional/darknighte)

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