git-annex 10.20250520a10__py3-none-manylinux_2_34_x86_64.whl → 10.20250520b2__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/git-annex CHANGED
Binary file
@@ -0,0 +1,115 @@
1
+ Metadata-Version: 2.4
2
+ Name: git-annex
3
+ Version: 10.20250520b2
4
+ Summary: manage files with git, without checking their contents into git
5
+ Project-URL: Homepage, https://git-annex.branchable.com/
6
+ Project-URL: Documentation, https://git-annex.branchable.com/git-annex
7
+ Project-URL: Issues, https://git-annex.branchable.com/bugs
8
+ Project-URL: Source, http://source.git-annex.branchable.com/?p=source.git
9
+ Project-URL: Changelog, http://source.git-annex.branchable.com/?p=source.git;a=blob;f=CHANGELOG;hb=HEAD
10
+ Author-email: Joey Hess <id@joeyh.name>
11
+ Maintainer-email: Michael Hanke <mih@ngln.eu>
12
+ License-Expression: AGPL-3.0-or-later
13
+ Keywords: data logistics,git,version control
14
+ Classifier: Development Status :: 6 - Mature
15
+ Classifier: Environment :: Console
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Intended Audience :: End Users/Desktop
18
+ Classifier: Intended Audience :: Information Technology
19
+ Classifier: Intended Audience :: Science/Research
20
+ Classifier: License :: DFSG approved
21
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
22
+ Classifier: Natural Language :: English
23
+ Classifier: Operating System :: MacOS
24
+ Classifier: Operating System :: Microsoft :: Windows
25
+ Classifier: Operating System :: POSIX :: Linux
26
+ Classifier: Programming Language :: Haskell
27
+ Classifier: Topic :: Software Development :: Version Control
28
+ Classifier: Topic :: Software Development :: Version Control :: Git
29
+ Classifier: Topic :: System :: Archiving :: Backup
30
+ Classifier: Topic :: System :: Archiving :: Mirroring
31
+ Classifier: Topic :: System :: Archiving :: Packaging
32
+ Classifier: Topic :: Utilities
33
+ Requires-Python: >=3.9
34
+ Description-Content-Type: text/markdown
35
+
36
+ # Python wheel package for git-annex
37
+
38
+ ## Why?
39
+
40
+ [Git-annex](https://git-annex.branchable.com/) is written in Haskell and plenty
41
+ of [installation methods](https://git-annex.branchable.com/install/) are
42
+ available. However, for deploying git-annex as a dependency of a Python
43
+ library/application, like [DataLad](https://datalad.org) or
44
+ [AnnexRemote](https://github.com/Lykos153/AnnexRemote), system packages
45
+ are a lot less flexible than Python's virtual environments, and other methods
46
+ are more complex and fragile.
47
+
48
+ With git-annex being available from PyPi, versioned dependencies and deployment
49
+ in application-specific environments are possible via standard means of Python
50
+ packaging.
51
+
52
+ ## Caveats
53
+
54
+ A standard git-annex deployment is (primarily) a single binary (`git-annex`),
55
+ and a bunch of symlinks that make this one binary fulfilled multiple roles
56
+ (`git-annex-shell`, `git-remote-annex`, etc.). A Python wheel, however, is a
57
+ ZIP file container with no support for symlinks, and also no support for
58
+ "post-install" scripts.
59
+
60
+ In order to square this circle, the git-annex binary is wrapped via regular
61
+ Python entrypoint scripts that handle calling git-annex as necessary. This
62
+ delivers a cross-platform compatible wheel, but at a start-up cost (~30ms vs
63
+ ~11ms on my laptop).
64
+
65
+ ## Installation
66
+
67
+ Get the package from [PyPi](https://pypi.org/project/git-annex/), and install like
68
+ any other package from PyPi.
69
+
70
+ [uv](https://docs.astral.sh/uv/) users can deploy git-annex in a dedicated virtual
71
+ environment via the one-liner:
72
+
73
+ ```
74
+ uv tool install git-annex
75
+ ```
76
+
77
+ ## git-annex build configuration
78
+
79
+ Git-annex is built with libmagic support, but without the git-annex assistant.
80
+ The primary purpose of this package is to provide git-annex (as a dependency),
81
+ installed in a virtual environment. Users of the git-annex assistant application
82
+ likely install git-annex via any of its platform packages.
83
+
84
+ ## Platform notes
85
+
86
+ ### Linux
87
+
88
+ The `manylinux` wheel is self-contained and includes copies of all libraries.
89
+ It only depends on the declared GLIBC versions.
90
+ The `magic.mgc` database is not included, and is assumed to be available on
91
+ the target system. Install it separately, if needed (e.g., `libmagic-mgc`
92
+ package).
93
+
94
+ ### Windows
95
+
96
+ The wheel is self-contained and includes a copy of libmagic and the `magic.mgc` database.
97
+
98
+ ### Mac
99
+
100
+ Git-annex is built with libmagic support, but the library is not included and needs
101
+ to be deployed separately.
102
+
103
+
104
+ ## Developer information
105
+
106
+ ### How to update for a new git-annex release?
107
+
108
+ Advance the submodule `./git-annex` to the new release tag.
109
+
110
+ Now adjust the package version in `pyproject.toml` accordingly. This version
111
+ must follow the [rules for Python
112
+ packages](https://packaging.python.org/en/latest/discussions/versioning/).
113
+
114
+ The included (GitHub) action workflows will build a corresponding wheel
115
+ and upload it to PyPi.
@@ -1,11 +1,11 @@
1
1
  git_annex/__init__.py,sha256=j8qJxYY0WVQQP8IXmkSBZQ2nPswrOrwpzPjBQ4VEfrk,895
2
- git_annex/git-annex,sha256=IUTv5H7sTGm9OzAXbvurwmSQ53frC7y-L2vyY984XQo,76069328
2
+ git_annex/git-annex,sha256=gVDTAn5U5fuGTntHD1H735Pf_C88z9PtEm8FcxNj7wA,76069328
3
3
  git_annex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  git_annex.libs/libbz2-5e516f77.so.1.0.4,sha256=LsNRXNmqsPGpH-8aIa2pJr_6ZNhS45vCWvVVNTNyWpc,79072
5
5
  git_annex.libs/libgmp-4dc20a90.so.10.4.1,sha256=TfI4CvsH9z1oNO3QmVnOg1aRt_BbSPeyQ6QwffV2lB0,544520
6
6
  git_annex.libs/liblzma-493cb401.so.5.2.5,sha256=ZOILvwbGsEeQ4f0Y41z1mwcBSG2LNzB7HqP3OsLTFcQ,175808
7
7
  git_annex.libs/libmagic-1a3f509b.so.1.0.0,sha256=-ADVjWAvnkjQypGUSFxGUOO1ISQO-HrsR_AWhnxKqn0,173600
8
- git_annex-10.20250520a10.dist-info/METADATA,sha256=jkgfShSNhC56vPVES0HFJCwgNQ4bfpigu1eyi-qmAd0,2029
9
- git_annex-10.20250520a10.dist-info/WHEEL,sha256=14hUm3taAaRrwRexXBehkwXBq0X2pKP3P7MGEgnqjUI,107
10
- git_annex-10.20250520a10.dist-info/entry_points.txt,sha256=BI1LqRvI7ETq6hOuPgaT9O9cmmHJwYS3SthvRoNS43s,146
11
- git_annex-10.20250520a10.dist-info/RECORD,,
8
+ git_annex-10.20250520b2.dist-info/METADATA,sha256=5zF9nF8WvaYQQc5AtHly37eCcUHH_76Fe0XDtkL8dsY,4533
9
+ git_annex-10.20250520b2.dist-info/WHEEL,sha256=14hUm3taAaRrwRexXBehkwXBq0X2pKP3P7MGEgnqjUI,107
10
+ git_annex-10.20250520b2.dist-info/entry_points.txt,sha256=BI1LqRvI7ETq6hOuPgaT9O9cmmHJwYS3SthvRoNS43s,146
11
+ git_annex-10.20250520b2.dist-info/RECORD,,
@@ -1,50 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: git-annex
3
- Version: 10.20250520a10
4
- Summary: manage files with git, without checking their contents into git
5
- Project-URL: Homepage, https://git-annex.branchable.com/
6
- Project-URL: Documentation, https://git-annex.branchable.com/git-annex
7
- Project-URL: Issues, https://git-annex.branchable.com/bugs
8
- Project-URL: Source, http://source.git-annex.branchable.com/?p=source.git
9
- Project-URL: Changelog, http://source.git-annex.branchable.com/?p=source.git;a=blob;f=CHANGELOG;hb=HEAD
10
- Author-email: Joey Hess <id@joeyh.name>
11
- Maintainer-email: Michael Hanke <mih@ngln.eu>
12
- License-Expression: AGPL-3.0-or-later
13
- Keywords: data logistics,git,version control
14
- Classifier: Development Status :: 6 - Mature
15
- Classifier: Environment :: Console
16
- Classifier: Intended Audience :: Developers
17
- Classifier: Intended Audience :: End Users/Desktop
18
- Classifier: Intended Audience :: Information Technology
19
- Classifier: Intended Audience :: Science/Research
20
- Classifier: License :: DFSG approved
21
- Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
22
- Classifier: Natural Language :: English
23
- Classifier: Operating System :: MacOS
24
- Classifier: Operating System :: Microsoft :: Windows
25
- Classifier: Operating System :: POSIX :: Linux
26
- Classifier: Programming Language :: Haskell
27
- Classifier: Topic :: Software Development :: Version Control
28
- Classifier: Topic :: Software Development :: Version Control :: Git
29
- Classifier: Topic :: System :: Archiving :: Backup
30
- Classifier: Topic :: System :: Archiving :: Mirroring
31
- Classifier: Topic :: System :: Archiving :: Packaging
32
- Classifier: Topic :: Utilities
33
- Requires-Python: >=3.9
34
- Description-Content-Type: text/markdown
35
-
36
- # Python wheel package for git-annex
37
-
38
- https://pypi.org/project/git-annex/
39
-
40
- ## Platform notes
41
-
42
- ### Windows
43
-
44
- Git-annex is built with libmagic support, and the library, the `file.exe`
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.