| 3 Nov 2025 |
K900 | And presumably it affects more than lix? | 15:34:29 |
raitobezarius | this is the commit https://github.com/curl/curl/commit/7e91f24c73256af59ac9061c41b73a184c4690aa | 15:34:45 |
raitobezarius | well anyone pausing h2 transfers probably | 15:35:18 |
raitobezarius | should I consider that you will take care of it or do you need help on my end? | 15:35:46 |
winston | oh i forgot thats not a thing on darwin, any other way i can look at the intermediate build files | 15:36:02 |
winston | * oh i forgot thats not a thing on darwin, any other way i can look at the intermediate build files? | 15:36:05 |
K900 | I am videogames and have a friend coming over for more videogames later | 15:36:07 |
K900 | So it would be nice if someone submitted a PR for this | 15:36:08 |
raitobezarius | target staging? | 15:37:14 |
Grimmauld (any/all) | i mean its failing, you can probably just do --keep-failed ? | 15:37:44 |
Grimmauld (any/all) | but can you get me a full log maybe? | 15:37:54 |
Grimmauld (any/all) | staging-next | 15:38:21 |
Grimmauld (any/all) | we just merged a coreutils rebuild, we aren't very far... | 15:38:42 |
winston | https://gist.github.com/nekowinston/8773bfb1b09c3ece22a7cc7354ad4e1a | 15:40:53 |
raitobezarius | ack | 15:41:02 |
winston | oh sorry colors in the logs | 15:41:08 |
Grimmauld (any/all) | is okay, its readable enough | 15:41:24 |
winston | seems that its missing things in deps/ maybe? | 15:42:09 |
Grimmauld (any/all) | What happens if you add a dontDisableStatic = true; ? | 15:43:29 |
Grimmauld (any/all) | just a shot in the dark before i start digging | 15:43:58 |
winston | i'll give it a go | 15:45:13 |
winston | also seeing this https://gist.github.com/nekowinston/f2c1ddf22169f021c96b735a166d403c on aarch64-unknown-linux-gnu-rustc-1.91.0 with pkgsCross | 15:46:06 |
winston | nope, same error | 15:51:15 |
Grimmauld (any/all) | right, so rust 1.91 is not there yet? sad | 15:52:45 |
winston | kinda trying to help with it but yea | 15:53:27 |
Grimmauld (any/all) | and this is PAIN... And sadly the issue does look different than https://github.com/doxygen/doxygen/issues/11833, so we can't just pick that fix | 15:53:42 |
raitobezarius | https://github.com/NixOS/nixpkgs/pull/458142 | 15:56:58 |
Grimmauld (any/all) | I am seeing exciting fails in psutils:
psutil> =================================== FAILURES ===================================
psutil> _________________________ TestDiskAPIs.test_disk_usage _________________________
psutil>
psutil> self = <psutil.tests.test_system.TestDiskAPIs testMethod=test_disk_usage>
psutil>
psutil> def test_disk_usage(self):
psutil> usage = psutil.disk_usage(os.getcwd())
psutil> assert usage._fields == ('total', 'used', 'free', 'percent')
psutil> assert usage.total > 0, usage
psutil> assert usage.used > 0, usage
psutil> assert usage.free > 0, usage
psutil> assert usage.total > usage.used, usage
psutil> assert usage.total > usage.free, usage
psutil> assert 0 <= usage.percent <= 100, usage.percent
psutil>
psutil> shutil_usage = shutil.disk_usage(os.getcwd())
psutil> tolerance = 5 * 1024 * 1024 # 5MB
psutil> > assert usage.total == shutil_usage.total
psutil> E assert 221886545920 == 221887070208
psutil> E + where 221886545920 = sdiskusage(total=221886545920, used=2485911552, free=219400634368, percent=1.1).total
psutil> E + and 221887070208 = usage(total=221887070208, used=2485911552, free=219401158656).total
psutil>
psutil> /nix/store/0xagc3jmn7xrc1vismlwwn8rq5ckd8zl-python3.13-psutil-7.1.2/lib/python3.13/site-packages/psutil/tests/test_system.py:624: AssertionError
Turns out the tests fail if your build machine doesn't have a power supply (or you don't give the builder access to the devfs for power supply)
| 16:40:38 |
Grimmauld (any/all) | and other fun stuff | 16:40:49 |
Grimmauld (any/all) | * I am seeing exciting fails in psutils:
psutil> =================================== FAILURES ===================================
psutil> _________________________ TestDiskAPIs.test_disk_usage _________________________
psutil>
psutil> self = <psutil.tests.test_system.TestDiskAPIs testMethod=test_disk_usage>
psutil>
psutil> def test_disk_usage(self):
psutil> usage = psutil.disk_usage(os.getcwd())
psutil> assert usage._fields == ('total', 'used', 'free', 'percent')
psutil> assert usage.total > 0, usage
psutil> assert usage.used > 0, usage
psutil> assert usage.free > 0, usage
psutil> assert usage.total > usage.used, usage
psutil> assert usage.total > usage.free, usage
psutil> assert 0 <= usage.percent <= 100, usage.percent
psutil>
psutil> shutil_usage = shutil.disk_usage(os.getcwd())
psutil> tolerance = 5 * 1024 * 1024 # 5MB
psutil> > assert usage.total == shutil_usage.total
psutil> E assert 221886545920 == 221887070208
psutil> E + where 221886545920 = sdiskusage(total=221886545920, used=2485911552, free=219400634368, percent=1.1).total
psutil> E + and 221887070208 = usage(total=221887070208, used=2485911552, free=219401158656).total
psutil>
psutil> /nix/store/0xagc3jmn7xrc1vismlwwn8rq5ckd8zl-python3.13-psutil-7.1.2/lib/python3.13/site-packages/psutil/tests/test_system.py:624: AssertionError
psutil> Traceback (most recent call last):
psutil> File "/nix/store/0xagc3jmn7xrc1vismlwwn8rq5ckd8zl-python3.13-psutil-7.1.2/lib/python3.13/site-packages/psutil/tests/__init__.py", line 203, in <module>
psutil> HAS_BATTERY = HAS_SENSORS_BATTERY and bool(psutil.sensors_battery())
psutil> ~~~~~~~~~~~~~~~~~~~~~~^^
psutil> File "/nix/store/0xagc3jmn7xrc1vismlwwn8rq5ckd8zl-python3.13-psutil-7.1.2/lib/python3.13/site-packages/psutil/__init__.py", line 2359, in sensors_battery
psutil> return _psplatform.sensors_battery()
psutil> ~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
psutil> File "/nix/store/0xagc3jmn7xrc1vismlwwn8rq5ckd8zl-python3.13-psutil-7.1.2/lib/python3.13/site-packages/psutil/_pslinux.py", line 1464, in sensors_battery
psutil> for x in os.listdir(POWER_SUPPLY_PATH)
psutil> ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
psutil> FileNotFoundError: [Errno 2] No such file or directory: '/sys/class/power_supply'
Turns out the tests fail if your build machine doesn't have a power supply (or you don't give the builder access to the devfs for power supply)
| 16:41:41 |