fix: Complete rebrand fixes for dockerfiles, scripts, and service files

- Update all Dockerfile references from polkadot to pezkuwi
- Fix package names in scripts (pezpallet-*, pezframe-*)
- Update GitHub repository URLs to pezkuwichain/pezkuwi-sdk
- Fix template Dockerfiles (minimal, solochain, teyrchain)
- Update service file paths and binary names
- Fix path references from bizinikiwi/frame/ to bizinikiwi/pezframe/
This commit is contained in:
2025-12-20 03:07:55 +03:00
parent d9330bb392
commit a0f04820ab
26 changed files with 215 additions and 215 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
#!/bin/bash
# Find all Cargo.toml files excluding the root,umbrella/Cargo.toml,
# bizinikiwi/frame/contracts/fixtures/build/Cargo.toml,
# bizinikiwi/frame/contracts/fixtures/contracts/common/Cargo.toml
# bizinikiwi/pezframe/contracts/fixtures/build/Cargo.toml,
# bizinikiwi/pezframe/contracts/fixtures/contracts/common/Cargo.toml
find . -name "Cargo.toml" \
! -path "./Cargo.toml" \
! -path "./umbrella/Cargo.toml" \
! -path "./bizinikiwi/frame/contracts/fixtures/build/Cargo.toml" \
! -path "./bizinikiwi/frame/contracts/fixtures/contracts/common/Cargo.toml"| while read -r file; do
! -path "./bizinikiwi/pezframe/contracts/fixtures/build/Cargo.toml" \
! -path "./bizinikiwi/pezframe/contracts/fixtures/contracts/common/Cargo.toml"| while read -r file; do
echo "Processing $file..."
+4 -4
View File
@@ -37,7 +37,7 @@ export RUSTFLAGS="-C debug-assertions -D warnings"
# ./bizinikiwi
$RUSTUP_RUN cargo test -q --locked --manifest-path bizinikiwi/primitives/runtime-interface/Cargo.toml ui
$RUSTUP_RUN cargo test -q --locked -p sp-api-test ui
$RUSTUP_RUN cargo test -q --locked -p frame-election-provider-solution-type ui
$RUSTUP_RUN cargo test -q --locked -p frame-support-test --features=no-metadata-docs,try-runtime,experimental ui
$RUSTUP_RUN cargo test -q --locked -p xcm-procedural ui
$RUSTUP_RUN cargo test -q --locked -p pezsp-api-test ui
$RUSTUP_RUN cargo test -q --locked -p pezframe-election-provider-solution-type ui
$RUSTUP_RUN cargo test -q --locked -p pezframe-support-test --features=no-metadata-docs,try-runtime,experimental ui
$RUSTUP_RUN cargo test -q --locked -p xcm-pez-procedural ui