python3-openEuler 0.0.7__tar.gz → 0.0.8__tar.gz
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.
Potentially problematic release.
This version of python3-openEuler might be problematic. Click here for more details.
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/PKG-INFO +1 -1
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/openEuler/openEuler.py +6 -2
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/PKG-INFO +1 -1
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/setup.py +1 -1
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/LICENSE +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/README.md +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/openEuler/__init__.py +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/SOURCES.txt +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/dependency_links.txt +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/requires.txt +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/top_level.txt +0 -0
- {python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/setup.cfg +0 -0
|
@@ -209,8 +209,12 @@ class OpenEuler():
|
|
|
209
209
|
branch=f"openEuler-{os_version}"
|
|
210
210
|
rpm_list = []
|
|
211
211
|
with tempfile.TemporaryDirectory() as temp_dir:
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
try:
|
|
213
|
+
git.Repo.clone_from(repo_url, temp_dir, branch=branch, depth=1)
|
|
214
|
+
log.info(f"clone {repo_name} success")
|
|
215
|
+
except Exception as e:
|
|
216
|
+
log.error(f"clone {repo_name} failed, error is {e}")
|
|
217
|
+
return rpm_list
|
|
214
218
|
spec_files = list(Path(temp_dir).rglob("*.spec"))
|
|
215
219
|
|
|
216
220
|
for spec_file in spec_files:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_openeuler-0.0.7 → python3_openeuler-0.0.8}/python3_openEuler.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|