update_eapi.sh - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
update_eapi.sh (113B)
---
1 #!/bin/sh
2
3 find . -type f -name '*.ebuild' | while read ebuild; do
4 sed -e 's/^EAPI=./EAPI=8/' -i "$ebuild"
5 done