bsdci / libioc

A Python library to manage jails with ioc{age,ell}
https://bsd.ci/libioc
Other
38 stars 11 forks source link

allow . in package names #744

Closed gronke closed 4 years ago

gronke commented 4 years ago

fixes #743

Before . (dot) was not allowed in FreeBSD package names maintained by libioc. This changes allow the character to be used as infix of package names.

igalic commented 4 years ago

What's up with these MyPy(?) errors?

./libioc/DevfsRules.py:1:1: T499 Found 2 errors in 1 file (checked 1 source file)
./libioc/Jail.py:1:1: T499 Found 11 errors in 1 file (checked 1 source file)
./libioc/Distribution.py:1:1: T499 Found 3 errors in 1 file (checked 1 source file)
./libioc/Releases.py:1:1: T499 Found 1 error in 1 file (checked 1 source file)
./libioc/Config/Data.py:1:1: T499 Found 1 error in 1 file (checked 1 source file)
./libioc/Config/Jail/BaseConfig.py:1:1: T499 Found 3 errors in 1 file (checked 1 source file)
./libioc/Config/Jail/File/Fstab.py:1:1: T499 Found 10 errors in 1 file (checked 1 source file)
./libioc/Config/Jail/File/Fstab.py:83:6: T484 Signature of "__hash__" incompatible with supertype "dict"
./libioc/Config/Jail/File/Fstab.py:128:6: T484 Signature of "__hash__" incompatible with supertype "dict"
./libioc/Config/Jail/File/Fstab.py:147:6: T484 Signature of "__hash__" incompatible with supertype "dict"
./libioc/Config/Jail/Properties/Defaultrouter.py:1:1: T499 Found 2 errors in 1 file (checked 1 source file)
./libioc/Config/Jail/Properties/Resolver.py:1:1: T499 Found 2 errors in 1 file (checked 1 source file)
./libioc/Config/Jail/Properties/Addresses.py:1:1: T499 Found 1 error in 1 file (checked 1 source file)

i thought this all used to have a slightly more useful output once upon a time…