Codebase list bundlewrap / da722f6
Imported Debian patch 3.2.1-1 Jonathan Carter 6 years ago
7 changed file(s) with 25 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 # 3.2.1
1
2 2018-01-08
3
4 * fixed metadata key filter for `bw metadata --blame`
5 * fixed pkg_openbsd reported incorrectly as having having wrong flavor installed
6 * fixed crash when declining actions interactively
7
8
09 # 3.2.0
110
211 2018-01-01
00 # -*- coding: utf-8 -*-
11 from __future__ import unicode_literals
22
3 VERSION = (3, 2, 0)
3 VERSION = (3, 2, 1)
44 VERSION_STRING = ".".join([str(v) for v in VERSION])
4040 else:
4141 node = get_node(repo, args['target'], adhoc_nodes=args['adhoc_nodes'])
4242 if args['blame']:
43 key_paths = [path.strip() for path in " ".join(args['keys']).split(",")]
4344 table = [[bold(_("path")), bold(_("source"))], ROW_SEPARATOR]
4445 for path, blamed in sorted(node.metadata_blame.items()):
45 table.append([" ".join(path), ", ".join(blamed)])
46 joined_path = " ".join(path)
47 for key_path in key_paths:
48 if joined_path.startswith(key_path):
49 table.append([joined_path, ", ".join(blamed)])
50 break
4651 page_lines(render_table(table))
4752 else:
4853 for line in dumps(
125125 ),
126126 )
127127 ):
128 return (self.STATUS_SKIPPED, [_("interactive")])
128 return (self.STATUS_SKIPPED, self.SKIP_REASON_INTERACTIVE)
129129 try:
130130 self.run()
131131 return (self.STATUS_ACTION_SUCCEEDED, None)
9898 version, flavor = pkg_installed(self.node, self.name)
9999 return {
100100 'installed': bool(version),
101 'flavor': flavor if flavor else _("none"),
101 'flavor': flavor if flavor is not None else _("none"),
102102 'version': version if version else _("none"),
103103 }
104104
0 bundlewrap (3.2.1-1) unstable; urgency=medium
1
2 * New upstream release
3
4 -- Jonathan Carter <jcc@debian.org> Tue, 09 Jan 2018 08:17:19 +0200
5
06 bundlewrap (3.2.0-1) unstable; urgency=medium
17
28 * New upstream release
1515
1616 setup(
1717 name="bundlewrap",
18 version="3.2.0",
18 version="3.2.1",
1919 description="Config management with Python",
2020 long_description=(
2121 "By allowing for easy and low-overhead config management, BundleWrap fills the gap between complex deployments using Chef or Puppet and old school system administration over SSH.\n"