summaryrefslogtreecommitdiff
path: root/etc/import/include/git2
AgeCommit message (Collapse)Author
2024-09-23Reorder dependencies and remove duplicates in OSSMaksim Denisov
2023-07-21Update libgit2 to 1.7.0Klaus Aehlig
2023-03-30libgit2: Remove fix-fake-repo patchPaul Cristian Sarbu
2023-03-24external: update libgit2 to v1.5.2Paul Cristian Sarbu
This is the last (and recommended) revision of minor v1.5.
2023-02-24libgit2: Update to v1.5.0Paul Cristian Sarbu
Changes to build description: - new USE_SHA256 flag - removed "Generic" option for USE_SHA1 - updated to the new source code structure (split "src/git2" into "src/libgit2" and "src/util")
2023-01-24libgit2: Update to v1.2.0Paul Cristian Sarbu
2022-12-09rules: Drop the ["CC", "header directory"]Oliver Reiche
... in favor of the "tree" built-in rule.
2022-11-23git2: do not enforce configuration transition on depsKlaus Aehlig
In our packaging of git2, do not carry out a configuration transition that is visible to dependencies. While its dependencies, ssl and zlib, accept that TARGET_ARCH is defaulted to ARCH if unset and still return the same result, regardless which export targets are cached, we still should not enforce any configuration transition on dependencies as this has the potential to cause subtle conflicts. The implicit default of TARGET_ARCH to ARCH in zlib and ssl can stay, as those libraries do not depend on any other repositories.
2022-11-21git2: sys/features.h let TARGET_ARCH default to ARCHKlaus Aehlig
2022-10-10libgit2: Use new rule ["CC/auto", "config"]Oliver Reiche
2022-10-07libgit2: Configure entire library in high-level targetOliver Reiche
2022-09-13Externals: Fixes for supporting cross-compilationOliver Reiche
2022-08-04libgit2: Patch race condition with fake repositoriesOliver Reiche
2022-05-02import git2: close header directory as a treeKlaus Aehlig
We assume that the git2 directory in the include-file path is owned by git2 and no other targets put files there. Document this by closing it up as a tree. (As a side effect we pass around fewer identifiers and reported runfiles list get easier to read.) Note that for the tree we can't use the TREE constructor, as, besides the source files, there is also a generated file contained in that directory.