parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | README

commit 8234ed47af29ecd31152cd21d51f8caca260fbf8
parent 07634694228c974c04e540df9f82150d644b0412
Author: parazyd <parazyd@dyne.org>
Date:   Tue,  5 Jan 2021 16:57:38 +0100

Add more maintenance scripts.

Diffstat:
DMakefile | 12------------
Ascripts/repoman_check.sh | 3+++
Ascripts/update_eapi.sh | 5+++++
3 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,12 +0,0 @@ -all: - @echo Available targets: - @echo make check - @echo make update-copyright - -check: - repoman -d full - -update-copyright: - ./scripts/update_copyright.sh - -.PHONY: all check update-copyright diff --git a/scripts/repoman_check.sh b/scripts/repoman_check.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +repoman -d full diff --git a/scripts/update_eapi.sh b/scripts/update_eapi.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +find . -type f -name '*.ebuild' | while read ebuild; do + sed -e 's/^EAPI=./EAPI=7/' -i "$ebuild" +done