NikGapps 3.11__py3-none-any.whl → 3.13__py3-none-any.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.
- NikGapps/build/Build.py +3 -2
- NikGapps/cache.py +2 -2
- {NikGapps-3.11.dist-info → NikGapps-3.13.dist-info}/METADATA +1 -1
- {NikGapps-3.11.dist-info → NikGapps-3.13.dist-info}/RECORD +8 -8
- {NikGapps-3.11.dist-info → NikGapps-3.13.dist-info}/LICENSE +0 -0
- {NikGapps-3.11.dist-info → NikGapps-3.13.dist-info}/WHEEL +0 -0
- {NikGapps-3.11.dist-info → NikGapps-3.13.dist-info}/entry_points.txt +0 -0
- {NikGapps-3.11.dist-info → NikGapps-3.13.dist-info}/top_level.txt +0 -0
NikGapps/build/Build.py
CHANGED
|
@@ -38,7 +38,7 @@ class Build:
|
|
|
38
38
|
primary_app_location = None
|
|
39
39
|
delete_files_list = []
|
|
40
40
|
delete_overlay_list = []
|
|
41
|
-
if android_version >= 12.1:
|
|
41
|
+
if float(android_version) >= 12.1:
|
|
42
42
|
overlay_directory = Config.OVERLAY_SOURCE
|
|
43
43
|
overlay_dir = overlay_directory + Statics.dir_sep + f"{package_title}Overlay"
|
|
44
44
|
if FileOp.dir_exists(overlay_dir):
|
|
@@ -47,7 +47,8 @@ class Build:
|
|
|
47
47
|
install_list.append(pkg_files_path.replace("___", "/"))
|
|
48
48
|
file_dict_value = str(pkg_files_path.replace("___", "/")).replace("\\", "/")
|
|
49
49
|
value = str(file_dict_value).split("/")
|
|
50
|
-
file_dict[str(file)] = "___" + "___".join(value[:len(value) - 1]) + "/" + value[
|
|
50
|
+
file_dict[str(file)] = "___" + "___".join(value[:len(value) - 1]) + "/" + value[
|
|
51
|
+
len(value) - 1]
|
|
51
52
|
for pkg_files in Path(pkg_path).rglob("*"):
|
|
52
53
|
if Path(pkg_files).is_dir() or str(pkg_files).__contains__(".git") \
|
|
53
54
|
or str(pkg_files).endswith(".gitattributes") or str(pkg_files).endswith("README.md"):
|
NikGapps/cache.py
CHANGED
|
@@ -42,13 +42,13 @@ def cache():
|
|
|
42
42
|
if project:
|
|
43
43
|
gitlab_manager.reset_repository(cached_url, sleep_for=10, gitattributes=gitattributes)
|
|
44
44
|
else:
|
|
45
|
-
gitlab_manager.create_repository(cached_url, provide_owner_access=True)
|
|
45
|
+
project = gitlab_manager.create_repository(cached_url, provide_owner_access=True)
|
|
46
46
|
gitlab_manager.create_and_commit_file(project_id=project.id, file_path=".gitattributes",
|
|
47
47
|
content=gitattributes)
|
|
48
48
|
repo_cached = GitOperations.clone_apk_url(url=cached_url, use_ssh_clone=True)
|
|
49
49
|
apk_repo = GitOperations.clone_apk_url(url=url)
|
|
50
50
|
Config.APK_SOURCE = apk_repo.working_tree_dir
|
|
51
|
-
if android_version >= 12.1:
|
|
51
|
+
if float(android_version) >= 12.1:
|
|
52
52
|
overlay_repo = GitOperations.clone_overlay_repo(android_version=str(android_version), fresh_clone=True)
|
|
53
53
|
Config.OVERLAY_SOURCE = overlay_repo.working_tree_dir
|
|
54
54
|
config_obj = NikGappsConfig(android_version)
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
NikGapps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
NikGapps/build_config.py,sha256=rPJqsSuzHZfZXTYfIoIyJ62kIlao5ytyJQQqAIVwNgQ,3103
|
|
3
|
-
NikGapps/cache.py,sha256=
|
|
3
|
+
NikGapps/cache.py,sha256=VBp5T4_DKGxdBtWrLfaBVXFTi4LeI24L-31CszLhVYs,4124
|
|
4
4
|
NikGapps/config_upload.py,sha256=0HE7txm73XXxat_cR0JDXWtQUmg1IYK_SktwJS6N34s,652
|
|
5
5
|
NikGapps/copy_repos.py,sha256=5YygTyuFW-DRnLPLGVcndQO6JqBW4JsN7O6cVWDQ4pE,1379
|
|
6
6
|
NikGapps/main.py,sha256=bUatevHVBbu88VtJUFCiMhEQ1bLC4xQuKPdU7e5OC3w,2684
|
|
7
7
|
NikGapps/overlay_control.py,sha256=57m6DvzOczttXyfo8QAFeXGZo1TynB4w6Gjf1i0scfY,2873
|
|
8
8
|
NikGapps/test.py,sha256=eXEeyM5xOpSKyUjb7OTP8BL37bqTE0eTKwnD1zT33rY,687
|
|
9
|
-
NikGapps/build/Build.py,sha256=
|
|
9
|
+
NikGapps/build/Build.py,sha256=XBMAVce8VzsmVwLxo7fj8y8yBrpdVT-FFuaZ9LBWtxY,7917
|
|
10
10
|
NikGapps/build/NikGappsManager.py,sha256=U9eCJj8Gzj9wvondtaKyz77AiK0mkSzpKAjOZY50HhA,18643
|
|
11
11
|
NikGapps/build/NikGappsOverlays.py,sha256=ApyO2bnPpsG80uEvuB_XoeVn7TRDGCCWtl5myJcVrFI,526
|
|
12
12
|
NikGapps/build/NikGappsPackages.py,sha256=samBrWZxNWVi5U28vgvfRNENLSdbK37oYo1oe2EI-HA,56928
|
|
@@ -99,9 +99,9 @@ NikGapps/helper/upload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
99
99
|
NikGapps/helper/web/Requests.py,sha256=HaZUHe_xi_7LjPLOYBUwK3uwOYOcVaW2E1zazjw2wow,5502
|
|
100
100
|
NikGapps/helper/web/TelegramApi.py,sha256=XREdngh0vPvPMUOJsCJ3wSqXMFqS8q3qJUhmFMY6SH8,4743
|
|
101
101
|
NikGapps/helper/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
-
NikGapps-3.
|
|
103
|
-
NikGapps-3.
|
|
104
|
-
NikGapps-3.
|
|
105
|
-
NikGapps-3.
|
|
106
|
-
NikGapps-3.
|
|
107
|
-
NikGapps-3.
|
|
102
|
+
NikGapps-3.13.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
103
|
+
NikGapps-3.13.dist-info/METADATA,sha256=_8mo_Kjnu2ZFdkG51Guu8vDllH3aFH0b479PcnIAwdw,4070
|
|
104
|
+
NikGapps-3.13.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
|
105
|
+
NikGapps-3.13.dist-info/entry_points.txt,sha256=iKbeOiuELwTDu5kmQHrU9XBVASWRR6_TuRIRva2UnAY,286
|
|
106
|
+
NikGapps-3.13.dist-info/top_level.txt,sha256=CD7RpCb7bzjyvpQLt8hh2gU6X1wj3Z0NIErVkg-nJI4,9
|
|
107
|
+
NikGapps-3.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|