git-annex 10.20250520a7__py3-none-manylinux_2_34_x86_64.whl → 10.20250520a9__py3-none-manylinux_2_34_x86_64.whl

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.
git_annex/__init__.py ADDED
@@ -0,0 +1,30 @@
1
+ import os.path as op
2
+ import subprocess
3
+ import sys
4
+
5
+
6
+ def cli():
7
+ exe_dir = op.dirname(__file__)
8
+ exe = op.join(
9
+ exe_dir,
10
+ op.basename(sys.argv[0]),
11
+ )
12
+ args = [exe] + sys.argv[1:]
13
+ try:
14
+ subprocess.run(
15
+ args,
16
+ executable=op.join(exe_dir, 'git-annex'),
17
+ shell=False,
18
+ check=True,
19
+ )
20
+ # try flush here to trigger a BrokenPipeError
21
+ # within the try-except block so we can handle it
22
+ # (happens if the calling process closed stdout
23
+ # already
24
+ sys.stdout.flush()
25
+ except (BrokenPipeError, IOError):
26
+ # setting it to None prevents Python from trying to
27
+ # flush again
28
+ sys.stdout = None
29
+ except subprocess.CalledProcessError as e:
30
+ sys.exit(e.returncode)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-annex
3
- Version: 10.20250520a7
3
+ Version: 10.20250520a9
4
4
  Summary: manage files with git, without checking their contents into git
5
5
  Project-URL: Homepage, https://git-annex.branchable.com/
6
6
  Project-URL: Documentation, https://git-annex.branchable.com/git-annex
@@ -43,3 +43,8 @@ https://pypi.org/project/git-annex/
43
43
 
44
44
  Git-annex is built with libmagic support, and the library, the `file.exe`
45
45
  utility, and its dependencies are included in the wheel.
46
+
47
+ ### Mac
48
+
49
+ Git-annex is built with libmagic support, and requires the library
50
+ to be deployed separately.
@@ -0,0 +1,11 @@
1
+ git_annex/__init__.py,sha256=4NH4bwyHQeFOt8_C_dtoy2WdBDrxMmllYmy_ORVJL8M,808
2
+ git_annex/git-annex,sha256=JR5Mr5DB5kF3qG7X9qxpPrxm_QTk36Tv3qupobcnmJI,76069328
3
+ git_annex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ git_annex.libs/libbz2-5e516f77.so.1.0.4,sha256=LsNRXNmqsPGpH-8aIa2pJr_6ZNhS45vCWvVVNTNyWpc,79072
5
+ git_annex.libs/libgmp-4dc20a90.so.10.4.1,sha256=TfI4CvsH9z1oNO3QmVnOg1aRt_BbSPeyQ6QwffV2lB0,544520
6
+ git_annex.libs/liblzma-493cb401.so.5.2.5,sha256=ZOILvwbGsEeQ4f0Y41z1mwcBSG2LNzB7HqP3OsLTFcQ,175808
7
+ git_annex.libs/libmagic-1a3f509b.so.1.0.0,sha256=-ADVjWAvnkjQypGUSFxGUOO1ISQO-HrsR_AWhnxKqn0,173600
8
+ git_annex-10.20250520a9.dist-info/METADATA,sha256=ov3ATN6n1fDMqJFFZhp5wvsdnldymJ-bEhHPk2138mU,2028
9
+ git_annex-10.20250520a9.dist-info/WHEEL,sha256=14hUm3taAaRrwRexXBehkwXBq0X2pKP3P7MGEgnqjUI,107
10
+ git_annex-10.20250520a9.dist-info/entry_points.txt,sha256=P0D1hzhM9Bd1HEiLtf--Q7ZqiJXIRPWolfBHrePBvyQ,142
11
+ git_annex-10.20250520a9.dist-info/RECORD,,
@@ -2,3 +2,4 @@ Wheel-Version: 1.0
2
2
  Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-manylinux_2_34_x86_64
5
+
@@ -0,0 +1,5 @@
1
+ [gui_scripts]
2
+ git-annex = git_annex:cli
3
+ git-annex-shell = git_annex:cli
4
+ git-remote-annex = git_annex:cli
5
+ git-remote-tor-annex = git_annex:cli
Binary file
Binary file
Binary file
@@ -1,5 +0,0 @@
1
- git-annex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- git_annex-10.20250520a7.data/data/bin/git-annex,sha256=7PTrIzJJbwjzzws6pN-0GVb-mKzrL3EStTBa4vTBYXQ,86315408
3
- git_annex-10.20250520a7.dist-info/METADATA,sha256=_4g1CWVyrjv56ZPBYWJOEKDDZkyuxqUjiBkF1qOIAv0,1924
4
- git_annex-10.20250520a7.dist-info/WHEEL,sha256=JBpKXR5yoxrw2_j3-ADTy2Tm6wiDCGE4gmJrhoM8FOk,106
5
- git_annex-10.20250520a7.dist-info/RECORD,,
File without changes