Alexandr Zarubkin
Alexandr Zarubkin
Okay, this is because numpy's setup.py checks for the commands passed to it and doesn't recognize get_metadata and fails. This could be overridden by adding --force argument to that call...
What were the commands to build .debs and what errors did you get? Please be more specific.
I tried another command: ``` fpm --verbose -s virtualenv -t deb -n evolve_connmon -v 1.0.0 --virtualenv-setup-install --python-bin /usr/bin/python3 requirements.txt ``` But it failed with the following output: ``` Setting workdir...
After applying PR #1476 locally, I can now build the deb package with: `fpm --verbose --virtualenv-python /usr/bin/python3 --virtualenv-setup-install -s virtualenv -t deb -n evolve_connmon -v 1.0.0 requirements.txt`. Now I need...
Would be nice to support it for deb packages as well. For now I use `after-upgrade` and `after-install` scripts to set file/dir permissions.
Here's my build log: `sudo ./setup_sdcard.sh --img-1gb my_image --dtb beaglebone --spl ../../../u-boot/MLO --bootloader ../../../u-boot/u-boot-dtb.img --rootfs_label rootfs --hostname beaglebone --enable-cape-universal --enable-uboot-pru-rproc-419ti` [build.log](https://github.com/RobertCNelson/omap-image-builder/files/9010914/build.log) As you can see, it searches for `./u-boot/bb-u-boot-am335x-evm/MLO` even...
``` azarubkin@ubuntu-2004-vm:~/beaglebone/image-builder$ git branch -v * master 74c3f405 add EW 2022 demo for BeagleBone AI-64 ``` Based on the lines 1512-1513 of setup_sdcard.sh in my initial message, it looks like...
Firefox works for me and my project. Probably one of the extensions interferes since the problem doesn't exist in private mode?.. 🤔 I start the app using Debug in PyCharm...
This pull request causes part_data_end and body_end not emitted for a small text file containing just "This is a test." line.
Currently I came up with the following code: ``` ace_time::acetime_t secondsSinceMidnight(const ace_time::ZonedDateTime& zdt) { auto midnight = zdt; midnight.hour(0); midnight.minute(0); midnight.second(0); midnight.normalize(); return zdt.toEpochSeconds() - midnight.toEpochSeconds(); } ```