mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
19 lines
248 B
Awk
19 lines
248 B
Awk
#! /usr/bin/awk -f
|
|
|
|
BEGIN {
|
|
group_number = 0
|
|
printf "GH_TUPLE="
|
|
}
|
|
|
|
{
|
|
account = "cylgom"
|
|
project = $2
|
|
gsub(".*/", "", project)
|
|
hash = $1
|
|
path = $2
|
|
printf " \\\n\t%s:%s:%s:%s/%s", account, project, hash, project, path
|
|
}
|
|
|
|
END {
|
|
printf "\n"
|
|
}
|