Files
gentoo-utils/scripts/atom.py
John Turner 7c404ca8c5 add fuzzer
2025-11-16 20:17:35 +00:00

14 lines
173 B
Python
Executable File

#!/usr/bin/env python3
import sys
import portage.dep as dep
input = sys.stdin.read().strip()
try:
dep.Atom(input)
except Exception as e:
sys.exit(1)
sys.exit(0)