Below is 3rd party deb package control file. I am not allowed to modify this file.
I have libssl1.1 installed in my VM(debian:buster-slim). when I try to install this 3rd party deb file, I am getting below error
ThirdPartyPackage : Depends: libssl1.0.2 (>= 1.0.2d) but it is not installable
Actually libssl1.1 is greater than 1.0.2d, still its complaining why ? why libssl1.1 is not being checked for this 3rd party deb package installation ?
cat DEBIAN/control
```
Package: ThirdPartyPackage
Version: 3.0.300+1
Architecture: amd64
Maintainer: ThirdPartyPackage@ThirdPartyPackagemail.com
Installed-Size: 845
Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5.2), libssl1.0.2 (>= 1.0.2d)
Section: libs
Priority: extra
Description: Its my lib.
```