borg-space 2.4__tar.gz → 2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {borg_space-2.4 → borg_space-2.5}/PKG-INFO +6 -5
- {borg_space-2.4 → borg_space-2.5}/README.rst +5 -4
- {borg_space-2.4 → borg_space-2.5}/borg_space/config.py +1 -1
- {borg_space-2.4 → borg_space-2.5}/borg_space/main.py +2 -2
- {borg_space-2.4 → borg_space-2.5}/pyproject.toml +2 -2
- {borg_space-2.4 → borg_space-2.5}/LICENSE +0 -0
- {borg_space-2.4 → borg_space-2.5}/borg_space/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: borg_space
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5
|
|
4
4
|
Summary: Accessory for Emborg used to report and track the size of your Borg repositories
|
|
5
5
|
Keywords: emborg,borg,backups
|
|
6
6
|
Author-email: Ken Kundert <borg-space@nurdletech.com>
|
|
@@ -39,11 +39,12 @@ Borg-Space — Report and track the size of your Emborg repositories
|
|
|
39
39
|
:target: https://pypi.python.org/pypi/borg-space/
|
|
40
40
|
|
|
41
41
|
:Author: Ken Kundert
|
|
42
|
-
:Version: 2.
|
|
43
|
-
:Released: 2026-
|
|
42
|
+
:Version: 2.5
|
|
43
|
+
:Released: 2026-06-28
|
|
44
44
|
|
|
45
|
-
*Borg-Space* is an accessory for Emborg_. It reports on the
|
|
46
|
-
your *BorgBackup* repositories. You can get this information
|
|
45
|
+
*Borg-Space* is an accessory for Emborg_ and Assimilate_. It reports on the
|
|
46
|
+
space consumed by your *BorgBackup* repositories. You can get this information
|
|
47
|
+
using the
|
|
47
48
|
``emborg info`` command, but there are several reasons to prefer *Borg-Space*.
|
|
48
49
|
|
|
49
50
|
#. *Borg-Space* is capable of reporting on many repositories at once.
|
|
@@ -11,11 +11,12 @@ Borg-Space — Report and track the size of your Emborg repositories
|
|
|
11
11
|
:target: https://pypi.python.org/pypi/borg-space/
|
|
12
12
|
|
|
13
13
|
:Author: Ken Kundert
|
|
14
|
-
:Version: 2.
|
|
15
|
-
:Released: 2026-
|
|
14
|
+
:Version: 2.5
|
|
15
|
+
:Released: 2026-06-28
|
|
16
16
|
|
|
17
|
-
*Borg-Space* is an accessory for Emborg_. It reports on the
|
|
18
|
-
your *BorgBackup* repositories. You can get this information
|
|
17
|
+
*Borg-Space* is an accessory for Emborg_ and Assimilate_. It reports on the
|
|
18
|
+
space consumed by your *BorgBackup* repositories. You can get this information
|
|
19
|
+
using the
|
|
19
20
|
``emborg info`` command, but there are several reasons to prefer *Borg-Space*.
|
|
20
21
|
|
|
21
22
|
#. *Borg-Space* is capable of reporting on many repositories at once.
|
|
@@ -322,7 +322,7 @@ except MultipleInvalid as e: # report schema violations
|
|
|
322
322
|
flag = 'key'
|
|
323
323
|
loc = keymap.get(tuple(err.path))
|
|
324
324
|
codicil = loc.as_line(flag) if loc else None
|
|
325
|
-
keys = nt.
|
|
325
|
+
keys = nt.get_keys(err.path, keymap=keymap, sep=', ')
|
|
326
326
|
error(
|
|
327
327
|
full_stop(msg),
|
|
328
328
|
culprit = (settings_file, keys),
|
|
@@ -55,8 +55,8 @@ else:
|
|
|
55
55
|
data_dir = Path(user_data_dir(program_name))
|
|
56
56
|
now = str(arrow.now())
|
|
57
57
|
Quantity.set_prefs(prec='full')
|
|
58
|
-
__version__ = "2.
|
|
59
|
-
__released__ = "2026-
|
|
58
|
+
__version__ = "2.5"
|
|
59
|
+
__released__ = "2026-06-28"
|
|
60
60
|
date_format = settings.get('date_format', 'D MMMM YYYY')
|
|
61
61
|
size_format = settings.get('size_format', '.2b')
|
|
62
62
|
nestedtext_size_format = settings.get('nestedtext_size_format', size_format)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "borg_space"
|
|
3
3
|
dist-name = "borg-space"
|
|
4
|
-
version = "2.
|
|
4
|
+
version = "2.5"
|
|
5
5
|
description = "Accessory for Emborg used to report and track the size of your Borg repositories"
|
|
6
6
|
readme = "README.rst"
|
|
7
7
|
requires-python = ">=3.6"
|
|
@@ -38,7 +38,7 @@ changelog = "https://github.com/KenKundert/ntlog/blob/master/CHANGELOG.rst"
|
|
|
38
38
|
borg-space = "borg_space.main:main"
|
|
39
39
|
|
|
40
40
|
[build-system]
|
|
41
|
-
requires = ["flit_core >=2
|
|
41
|
+
requires = ["flit_core >=2"]
|
|
42
42
|
build-backend = "flit_core.buildapi"
|
|
43
43
|
|
|
44
44
|
[tool.pytest.ini_options]
|
|
File without changes
|
|
File without changes
|