blob: 368b6b47aa663751f913f050611245b5b3c69ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
##################################################################################################
# cd PATH/tde-packaging-gentoo
# Documentation/scripts/create_list_keywords.sh 9999 >/etc/portage/package.accept_keywords/trinity
##################################################################################################
VERS=$1
create_list() {
local FILE STR ARRAY
while read file
do
FILE=${file//.\//}
STR=${FILE%.ebuild}
ARRAY=(${STR//\// })
echo "~${ARRAY[0]}/${ARRAY[2]} **"
done < <(find -type f -name "*-${VERS}.ebuild")
}
create_list | sort
|