cmeel 0.57.0__py3-none-any.whl → 0.57.2__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.

Potentially problematic release.


This version of cmeel might be problematic. Click here for more details.

cmeel/metadata.py CHANGED
@@ -34,7 +34,7 @@ def get_license(conf: Dict[str, Any], dist_info: Optional[Path]) -> List[str]:
34
34
  for lic_file in lic_files:
35
35
  metadata.append(f"License-File: {lic_file}")
36
36
  path_src = Path(lic_file)
37
- path_dst = dist_info / "license" / path_src
37
+ path_dst = dist_info / "licenses" / path_src
38
38
  path_dst.parent.mkdir(parents=True, exist_ok=True)
39
39
  with path_src.open("r") as f_src, path_dst.open("w") as f_dst:
40
40
  f_dst.write(f_src.read())
cmeel/sdist.py CHANGED
@@ -52,7 +52,7 @@ def sdist_impl(sdist_directory) -> str:
52
52
  LOG.info("create final archive with previous one + PKG-INFO")
53
53
  with tarfile.open(tmp_tar, "r") as tr, tarfile.open(def_tar, "w:gz") as tw:
54
54
  for member in tr.getmembers():
55
- tw.addfile(member, tr.extractfile(member.name))
55
+ tw.addfile(member, tr.extractfile(member))
56
56
  tw.add(str(tmp_pkg), f"{distribution}/PKG-INFO")
57
57
 
58
58
  return distribution
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cmeel
3
- Version: 0.57.0
3
+ Version: 0.57.2
4
4
  Summary: Create Wheel from CMake projects
5
5
  Project-URL: Changelog, https://github.com/cmake-wheel/cmeel/blob/main/CHANGELOG.md
6
6
  Project-URL: Documentation, https://cmeel.readthedocs.io/
@@ -10,13 +10,13 @@ cmeel/consts.py,sha256=ol8loHUtvIkuINu4Go5ko7Sfkb7Ht9XBjjmPP-Sjcoo,252
10
10
  cmeel/docker.py,sha256=enT7gsB55WKcQ0U6_CwswFgqra2auS5ZRKsglgE3phA,2775
11
11
  cmeel/env.py,sha256=4AymbjlT3iNqYeeI70u3ZQMpiQfYo2vbNoZ4F15QbYQ,1235
12
12
  cmeel/impl.py,sha256=XBVIWmi17a3fcFyYvQA7cS3xeglwjVRQUj25IQOfg0k,6376
13
- cmeel/metadata.py,sha256=DmBkpAHyHG995g3ZxWe21JvdkmJL6_OLN4W3MSaiDzY,8606
13
+ cmeel/metadata.py,sha256=q83DdSzRxpGBxi9GEQ-HfqpiLnNO3zTNBrThPWBdTLI,8607
14
14
  cmeel/release.py,sha256=svN_mQwu9HeKTF3517zNd0XPkbZeNS21aps6NiW-e7A,1357
15
15
  cmeel/run.py,sha256=AaXiEvM7DhI0gbAzjBmBKt7KoHRAD8jrxWRghxXmeec,744
16
- cmeel/sdist.py,sha256=DA5h9IrQfhuoQucYfv73S8jpKNY2ThfIrVSKSvsJ5ec,1961
16
+ cmeel/sdist.py,sha256=L6rdn4AFR4Ww-6H6zsVH6_slx4voP5O0P7uRn8w0Ds4,1956
17
17
  cmeel/utils.py,sha256=1q-iQdhxNXluQoUPME1k34YClFUQ4KSwMcIHpREYHEY,8114
18
- cmeel-0.57.0.dist-info/METADATA,sha256=-f3DX-fMbK6Wi8sjPvRbw3KT9a5wWPvN1N-nLAZFuZ4,4692
19
- cmeel-0.57.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
- cmeel-0.57.0.dist-info/entry_points.txt,sha256=xtIRc5QUYVGuGehxx2BrMEs3qoQ44cXF7D96_tfpZDM,46
21
- cmeel-0.57.0.dist-info/licenses/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
22
- cmeel-0.57.0.dist-info/RECORD,,
18
+ cmeel-0.57.2.dist-info/METADATA,sha256=e7GdUhRBUAuFvG0dQ5T84CNHqZQSqP6GWIzpN9_WzDw,4692
19
+ cmeel-0.57.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
+ cmeel-0.57.2.dist-info/entry_points.txt,sha256=xtIRc5QUYVGuGehxx2BrMEs3qoQ44cXF7D96_tfpZDM,46
21
+ cmeel-0.57.2.dist-info/licenses/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
22
+ cmeel-0.57.2.dist-info/RECORD,,
File without changes