From 7807e10325f6411148b9b85c8a6fb57961e8cd32 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 6 Oct 2023 15:57:25 +0200 Subject: [PATCH] Rename files containing toolchain to `tc_*` --- kiwixbuild/dependencies/__init__.py | 10 +++++----- .../dependencies/{android_ndk.py => tc_android_ndk.py} | 0 .../dependencies/{arm_musl.py => tc_arm_musl.py} | 0 kiwixbuild/dependencies/{armhf.py => tc_armhf.py} | 0 kiwixbuild/dependencies/{emsdk.py => tc_emsdk.py} | 0 kiwixbuild/dependencies/{flatpak.py => tc_flatpak.py} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename kiwixbuild/dependencies/{android_ndk.py => tc_android_ndk.py} (100%) rename kiwixbuild/dependencies/{arm_musl.py => tc_arm_musl.py} (100%) rename kiwixbuild/dependencies/{armhf.py => tc_armhf.py} (100%) rename kiwixbuild/dependencies/{emsdk.py => tc_emsdk.py} (100%) rename kiwixbuild/dependencies/{flatpak.py => tc_flatpak.py} (100%) diff --git a/kiwixbuild/dependencies/__init__.py b/kiwixbuild/dependencies/__init__.py index 24f68c9..783f5b0 100644 --- a/kiwixbuild/dependencies/__init__.py +++ b/kiwixbuild/dependencies/__init__.py @@ -2,13 +2,13 @@ from .base import * from . import ( all_dependencies, - android_ndk, + tc_android_ndk, aria2, - armhf, - arm_musl, + tc_armhf, + tc_arm_musl, docoptcpp, - emsdk, - flatpak, + tc_emsdk, + tc_flatpak, gumbo, icu4c, ios_fat_lib, diff --git a/kiwixbuild/dependencies/android_ndk.py b/kiwixbuild/dependencies/tc_android_ndk.py similarity index 100% rename from kiwixbuild/dependencies/android_ndk.py rename to kiwixbuild/dependencies/tc_android_ndk.py diff --git a/kiwixbuild/dependencies/arm_musl.py b/kiwixbuild/dependencies/tc_arm_musl.py similarity index 100% rename from kiwixbuild/dependencies/arm_musl.py rename to kiwixbuild/dependencies/tc_arm_musl.py diff --git a/kiwixbuild/dependencies/armhf.py b/kiwixbuild/dependencies/tc_armhf.py similarity index 100% rename from kiwixbuild/dependencies/armhf.py rename to kiwixbuild/dependencies/tc_armhf.py diff --git a/kiwixbuild/dependencies/emsdk.py b/kiwixbuild/dependencies/tc_emsdk.py similarity index 100% rename from kiwixbuild/dependencies/emsdk.py rename to kiwixbuild/dependencies/tc_emsdk.py diff --git a/kiwixbuild/dependencies/flatpak.py b/kiwixbuild/dependencies/tc_flatpak.py similarity index 100% rename from kiwixbuild/dependencies/flatpak.py rename to kiwixbuild/dependencies/tc_flatpak.py