cmeel 0.57.2__py3-none-any.whl → 0.57.3__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/sdist.py CHANGED
@@ -52,7 +52,10 @@ 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))
55
+ fileobj = None
56
+ if member.type not in [tarfile.LNKTYPE, tarfile.SYMTYPE]:
57
+ fileobj = tr.extractfile(member)
58
+ tw.addfile(member, fileobj)
56
59
  tw.add(str(tmp_pkg), f"{distribution}/PKG-INFO")
57
60
 
58
61
  return distribution
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cmeel
3
- Version: 0.57.2
3
+ Version: 0.57.3
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/
@@ -13,10 +13,10 @@ cmeel/impl.py,sha256=XBVIWmi17a3fcFyYvQA7cS3xeglwjVRQUj25IQOfg0k,6376
13
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=L6rdn4AFR4Ww-6H6zsVH6_slx4voP5O0P7uRn8w0Ds4,1956
16
+ cmeel/sdist.py,sha256=QuAB-7Qp5Lwsvzn0I66t2w2EzV92fumDN74qhAt-Pa8,2099
17
17
  cmeel/utils.py,sha256=1q-iQdhxNXluQoUPME1k34YClFUQ4KSwMcIHpREYHEY,8114
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,,
18
+ cmeel-0.57.3.dist-info/METADATA,sha256=UcLSHsFgU0NQ9MR8LZ9e634uKaY25UrpTcaJ9JqORoc,4692
19
+ cmeel-0.57.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
+ cmeel-0.57.3.dist-info/entry_points.txt,sha256=xtIRc5QUYVGuGehxx2BrMEs3qoQ44cXF7D96_tfpZDM,46
21
+ cmeel-0.57.3.dist-info/licenses/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
22
+ cmeel-0.57.3.dist-info/RECORD,,
File without changes