parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | 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