diff --git a/devel/py-crosshair-tool/files/patch-setup.py b/devel/py-crosshair-tool/files/patch-setup.py index c532fa81ce9c..1003c2ca59be 100644 --- a/devel/py-crosshair-tool/files/patch-setup.py +++ b/devel/py-crosshair-tool/files/patch-setup.py @@ -1,17 +1,14 @@ ---- setup.py.orig 2026-07-07 08:23:29 UTC +--- setup.py.orig 2026-07-11 02:11:30 UTC +++ setup.py -@@ -0,0 +1,14 @@ +@@ -0,0 +1,11 @@ +from setuptools import Extension, find_packages, setup + +setup( + name="crosshair-tool", -+ version="0.0.105", # Update this in crosshair/__init__.py too -+ author="Phillip Schanely", -+ author_email="pschanely+vE7F@gmail.com", + ext_modules=[ + Extension( + "_crosshair_tracers", + sources=["crosshair/_tracers.c"], + ), + ], +)