#!/usr/bin/env python3 # SPDX-License-Identifier: CC0-1.0 # Copyright (C) 2022 Wojtek Kosior # # Available under the terms of Creative Commons Zero v1.0 Universal. import setuptools from setuptools.command.build_py import build_py class CustomBuildCommand(build_py): ''' The build command but runs babel before build. ''' def run(self, *args, **kwargs): self.run_command('compile_catalog') super().run(*args, **kwargs) setuptools.setup(cmdclass={'build_py': CustomBuildCommand}) index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/pki.scm
mmit/gnu/build/activation.scm?id=4d94cdf69889043dd8d9b1305f5f3946ec0f8ff6'>activation: Firmware activation handles missing support in kernel....
AgeCommit message (Expand)Author
2022-12-12pki: 'public-keys->acl' deduplicates entries....Ludovic Courtès
Marius Bakke
2022-03-01initrd: Use non-hyphenated kernel command-line parameter names....Maxim Cournoyer
2021-07-29services: setuid: More configurable setuid support....Chris Lemmer-Webber