aboutsummaryrefslogtreecommitdiff
path: root/THANKS
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2023-05-24 22:51:40 +0100
committerVinicius Monego <monego@posteo.net>2023-05-25 21:20:05 -0300
commit1761f5335810615c53a02a031cece4e515487ddb (patch)
tree10af125b7ea065af185206fc828ce2cd1d52a871 /THANKS
parentd64c16937f47480aba03aee2ff3df4eff929c6db (diff)
downloadguix-1761f5335810615c53a02a031cece4e515487ddb.tar.gz
guix-1761f5335810615c53a02a031cece4e515487ddb.zip
gnu: python-sgp4: Update to 2.22.
* gnu/packages/astronomy.scm (python-sgp4): Update to 2.22. Signed-off-by: Vinicius Monego <monego@posteo.net>
Diffstat (limited to 'THANKS')
0 files changed, 0 insertions, 0 deletions
artition images are then assembled into a final image using genimage. - ISO9660 images: the ISO root directory is populated within the store. GNU xorriso is then called on that directory, in the exact same way as this is done in (gnu build vm) module. Those mechanisms are built upon the new (gnu image) module. * gnu/image.scm: New file. * gnu/system/image.scm: New file. * gnu/build/image: New file. * gnu/local.mk: Add them. * gnu/system/vm.scm (system-disk-image): Rename to system-disk-image-in-vm. * gnu/ci.scm (qemu-jobs): Adapt to new API. * gnu/tests/install.scm (run-install): Ditto. * guix/scripts/system.scm (system-derivation-for-action): Ditto. Mathieu Othacehe 2020-05-05build: install: Do not set store GID....There's no need to set the store GID as is will be done by the guix-daemon, with the following snippet: if (chown(chrootStoreDir.c_str(), 0, buildUser.getGID()) == -1) throw SysError(format("cannot change ownership of ‘%1%’") % chrootStoreDir); * gnu/build/install.scm (directives): Do not set store GID. Mathieu Othacehe 2020-05-05build: install: Ignore chown exceptions....Changing ownership may require root permissions. As image can now be generated without root permissions (no VM involved), ignore those exceptions. * gnu/build/install.scm (evaluate-populate-directive): Ignore chown exceptions. Mathieu Othacehe 2020-04-11install: 'populate-root-file-system' can be passed extra directives....* gnu/build/install.scm (evaluate-populate-directive): Handle 'file' directives. (populate-root-file-system): Add #:extras parameter and honor it. Ludovic Courtès