X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/4fdb3625fc47889c73bb4af21da1a67dcb185a65..9d7844bb9474c2431f268061dffed0c5c49ddc7d:/pinch.py diff --git a/pinch.py b/pinch.py index 6bd7dd3..46e5af3 100644 --- a/pinch.py +++ b/pinch.py @@ -7,8 +7,10 @@ import hashlib import operator import os import os.path +import shlex import shutil import subprocess +import sys import tempfile import types import urllib.parse @@ -57,7 +59,7 @@ class Verification: self.line_length = 0 def status(self, s: str) -> None: - print(s, end=' ', flush=True) + print(s, end=' ', file=sys.stderr, flush=True) self.line_length += 1 + len(s) # Unicode?? @staticmethod @@ -69,7 +71,7 @@ class Verification: length = len(message) cols = shutil.get_terminal_size().columns pad = (cols - (self.line_length + length)) % cols - print(' ' * pad + self._color(message, color)) + print(' ' * pad + self._color(message, color), file=sys.stderr) self.line_length = 0 if not r: raise VerificationError() @@ -458,6 +460,8 @@ def pin(args: argparse.Namespace) -> None: config = configparser.ConfigParser() config.read_file(open(args.channels_file), args.channels_file) for section in config.sections(): + if args.channels and section not in args.channels: + continue channel = Channel(**dict(config[section].items())) if hasattr(channel, 'git_revision'): @@ -495,20 +499,22 @@ def update(args: argparse.Namespace) -> None: exprs.append( 'f: f { name = "%s"; channelName = "%s"; src = builtins.storePath "%s"; }' % (config[section]['release_name'], section, tarball)) - v.status('Installing channels with nix-env') - process = subprocess.run( - [ - 'nix-env', - '--profile', - '/nix/var/nix/profiles/per-user/%s/channels' % - getpass.getuser(), - '--show-trace', - '--file', - '', - '--install', - '--from-expression'] + - exprs) - v.result(process.returncode == 0) + command = [ + 'nix-env', + '--profile', + '/nix/var/nix/profiles/per-user/%s/channels' % + getpass.getuser(), + '--show-trace', + '--file', + '', + '--install', + '--from-expression'] + exprs + if args.dry_run: + print(' '.join(map(shlex.quote, command))) + else: + v.status('Installing channels with nix-env') + process = subprocess.run(command) + v.result(process.returncode == 0) def main() -> None: @@ -516,8 +522,10 @@ def main() -> None: subparsers = parser.add_subparsers(dest='mode', required=True) parser_pin = subparsers.add_parser('pin') parser_pin.add_argument('channels_file', type=str) + parser_pin.add_argument('channels', type=str, nargs='*') parser_pin.set_defaults(func=pin) parser_update = subparsers.add_parser('update') + parser_update.add_argument('--dry-run', action='store_true') parser_update.add_argument('channels_file', type=str) parser_update.set_defaults(func=update) args = parser.parse_args()