Currently, dependency versions are just copied to the spec file BuildRequires verbatim. However, in cases where there are no spaces between the version number and the package name, the spec file will interpret it as one big name rather than a package with a version (so python>=2.6 will look for a package named python>=2.6, rather than a package named python with version >=2.6).
It would be great if py2pack detected this and inserted appropriate spaces.
Currently, dependency versions are just copied to the
spec
fileBuildRequires
verbatim. However, in cases where there are no spaces between the version number and the package name, thespec
file will interpret it as one big name rather than a package with a version (sopython>=2.6
will look for a package namedpython>=2.6
, rather than a package namedpython
with version >=2.6).It would be great if py2pack detected this and inserted appropriate spaces.