Skip to content

Commit 1ee81ad

Browse files
committed
adjust to renaming of git-pack to gix-pack
1 parent 134d70d commit 1ee81ad

File tree

94 files changed

+1037
-1037
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+1037
-1037
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
name: crates without feature toggles
168168
- run: set +x; for feature in progress fs-walkdir-parallel parallel io-pipe crc32 zlib zlib-rust-backend fast-sha1 rustsha1 cache-efficiency-debug; do (cd gix-features && cargo build --features $feature --target ${{ matrix.target }}); done
169169
name: features of gix-features
170-
- run: set +x; for name in gix-diff git-pack; do (cd $name && cargo build --features wasm --target ${{ matrix.target }}); done
170+
- run: set +x; for name in gix-diff gix-pack; do (cd $name && cargo build --features wasm --target ${{ matrix.target }}); done
171171
name: crates with 'wasm' feature
172-
- run: cd git-pack && cargo build --all-features --target ${{ matrix.target }}
173-
name: git-pack with all features (including wasm)
172+
- run: cd gix-pack && cargo build --all-features --target ${{ matrix.target }}
173+
name: gix-pack with all features (including wasm)

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ which usually are `Clone` too as they are passed by immutable reference (which i
701701
* **[#287](https://github.com/Byron/gitoxide/issues/287)**
702702
- share and pass cli arguments for pack verification ([`db43e47`](https://github.com/Byron/gitoxide/commit/db43e47fc0a43ef45824ac1c9426c1889bdb13a3))
703703
- Very rough version of repository verification ([`80a4a7a`](https://github.com/Byron/gitoxide/commit/80a4a7add688d16376b9bf2ed7f1c7f655b7c912))
704-
- Adjustments to deal with changes to git-pack/gix-odb ([`fcf8fde`](https://github.com/Byron/gitoxide/commit/fcf8fde7272974a70df808bd7ac03e925b7e39a8))
704+
- Adjustments to deal with changes to gix-pack/gix-odb ([`fcf8fde`](https://github.com/Byron/gitoxide/commit/fcf8fde7272974a70df808bd7ac03e925b7e39a8))
705705
* **[#289](https://github.com/Byron/gitoxide/issues/289)**
706706
- 'pack' with its own sub-commands ([`fb64af4`](https://github.com/Byron/gitoxide/commit/fb64af4d747960bfa40ec23051ecb03ea8ec5d83))
707707
- 'remote' with its own sub-commands ([`8677f7e`](https://github.com/Byron/gitoxide/commit/8677f7edd516ea54ec652a4a59cb220422036b90))

Cargo.lock

+47-47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ document-features = { version = "0.2.0", optional = true }
104104
[profile.dev.package]
105105
gix-object = { opt-level = 3 }
106106
gix-ref = { opt-level = 3 }
107-
#git-pack = { opt-level = 3 }
107+
#gix-pack = { opt-level = 3 }
108108
gix-hash = { opt-level = 3 }
109109
gix-actor = { opt-level = 3 }
110110
gix-config = { opt-level = 3 }
@@ -164,7 +164,7 @@ members = [
164164
"gix-transport",
165165
"gix-credentials",
166166
"gix-protocol",
167-
"git-pack",
167+
"gix-pack",
168168
"gix-odb",
169169
"gix-tempfile",
170170
"gix-lock",
@@ -183,7 +183,7 @@ members = [
183183

184184
"gix-revision/tests",
185185
"gix-diff/tests",
186-
"git-pack/tests",
186+
"gix-pack/tests",
187187
"gix-index/tests",
188188
"gix-ref/tests",
189189
"gix-config/tests",

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ check: ## Build all code in suitable configurations
8282
cd gix-worktree && cargo check --features serde1
8383
cd gix-actor && cargo check --features serde1
8484
cd gix-date && cargo check --features serde1
85-
cd git-pack && cargo check --features serde1 \
85+
cd gix-pack && cargo check --features serde1 \
8686
&& cargo check --features pack-cache-lru-static \
8787
&& cargo check --features pack-cache-lru-dynamic \
8888
&& cargo check --features object-cache-dynamic \
@@ -141,7 +141,7 @@ unit-tests: ## run all unit tests
141141
cd gix-ref/tests && cargo test --all-features
142142
cd gix-odb && cargo test && cargo test --all-features
143143
cd gix-object && cargo test && cargo test --features verbose-object-parsing-errors
144-
cd git-pack/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
144+
cd gix-pack/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
145145
&& cargo test --features "internal-testing-gix-features-parallel"
146146
cd gix-index/tests && cargo test --features internal-testing-to-avoid-being-run-by-cargo-test-all \
147147
&& cargo test --features "internal-testing-gix-features-parallel"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ is usable to some extent.
6363
* [gix-packetline](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-packetline)
6464
* [gix-transport](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-transport)
6565
* [gix-protocol](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-protocol)
66-
* [git-pack](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-pack)
66+
* [gix-pack](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-pack)
6767
* [gix-odb](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-odb)
6868
* [gix-commitgraph](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-commitgraph)
6969
* [gix-diff](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-diff)

SHORTCOMINGS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This file is for tracking features that are less well implemented or less powerf
1111
* This can be fixed by making response parsing.
1212
* Note that this does not affect cloning, which works fine.
1313

14-
### `git-pack`
14+
### `gix-pack`
1515
* **Packfiles use memory maps**
1616
* Even though they are comfortable to use and fast, they squelch IO errors.
1717
* _potential remedy_: We could generalize the Pack to make it possible to work on in-memory buffers directly. That way, one

STABILITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The following schematic helps to visualize what follows.
7676
│ │ │ gix-odb │ │ gix-diff │ │ │ │
7777
│ │ └─────────────┘ └─────────────┘ │ │
7878
│ │ ┌─────────────┐ ┌─────────────┐ │ │ │
79-
│ │ │gix-traverse │ │ git-pack │ │◀ ─ ┼ ─
79+
│ │ │gix-traverse │ │ gix-pack │ │◀ ─ ┼ ─
8080
│ │ └─────────────┘ └─────────────┘ │ │
8181
│ │ ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐ │ │
8282
│ │ …many more… │ │

0 commit comments

Comments
 (0)